VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.Pdf.Processing Namespace / PdfDocumentCompressorCommand Class / FlattenAnnotations Property
Синтаксис Example Требования Смотрите также
В этом разделе
    FlattenAnnotations Свойство (PdfDocumentCompressorCommand)
    В этом разделе
    Возвращает или задает значение, указывающее, должна ли команда сглаживать (прожигать) аннотации.
    Синтаксис
    'Declaration
    
    <CategoryAttribute("Discard")>
    <DescriptionAttribute("A value indicating whether the command must flatten annotations.")>
    <DefaultValueAttribute(False)>
    Public Property FlattenAnnotations As Boolean
    
    
    [Category("Discard")]
    [Description("A value indicating whether the command must flatten annotations.")]
    [DefaultValue(False)]
    public bool FlattenAnnotations { get; set; }
    
    
    [Category("Discard")]
    [Description("A value indicating whether the command must flatten annotations.")]
    [DefaultValue(False)]
    public: __property bool get_FlattenAnnotations();
    public: __property void set_FlattenAnnotations(
    bool value
    );
    [Category("Discard")]
    [Description("A value indicating whether the command must flatten annotations.")]
    [DefaultValue(False)]
    public:
    property bool FlattenAnnotations { bool get(); void set(bool value); }

    Property Value

    True - команда должна сглаживать аннотации; false - команда НЕ должна сглаживать аннотации.
    Значение по умолчанию: false.
    Пример

    Вот пример, показывающий, как сгладить аннотации и удалить интерактивную форму PDF документа:

    
    ''' <summary>
    ''' Flatten an annotations and remove intractive form of the PDF document.
    ''' </summary>
    ''' <param name="inPdfFilename">The input PDF filename.</param>
    ''' <param name="outPdfFilename">The output PDF filename.</param>
    Public Shared Sub FlattenAnnotations(inPdfFilename As String, outPdfFilename As String)
        ' create compressor with empty compression settings
        Dim compressor As Vintasoft.Imaging.Pdf.Processing.PdfDocumentCompressorCommand = Vintasoft.Imaging.Pdf.Processing.PdfDocumentCompressorCommand.CreateEmptyCompressor()
    
        ' specify that compressor must remove interactive form from PDF document
        compressor.RemoveInteractiveForm = True
        ' specify that compressor must flatten annotations in PDF document
        compressor.FlattenAnnotations = True
    
        ' compress PDF document
        compressor.Compress(inPdfFilename, outPdfFilename)
    End Sub
    
    
    
    /// <summary>
    /// Flatten an annotations and remove intractive form of the PDF document.
    /// </summary>
    /// <param name="inPdfFilename">The input PDF filename.</param>
    /// <param name="outPdfFilename">The output PDF filename.</param>
    public static void FlattenAnnotations(string inPdfFilename, string outPdfFilename)
    {
        // create compressor with empty compression settings
        Vintasoft.Imaging.Pdf.Processing.PdfDocumentCompressorCommand compressor =
           Vintasoft.Imaging.Pdf.Processing.PdfDocumentCompressorCommand.CreateEmptyCompressor();
    
        // specify that compressor must remove interactive form from PDF document
        compressor.RemoveInteractiveForm = true;
        // specify that compressor must flatten annotations in PDF document
        compressor.FlattenAnnotations = true;
    
        // compress PDF document
        compressor.Compress(inPdfFilename, outPdfFilename);
    }
    
    

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также