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

    Property Value

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

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

    
    ''' <summary>
    ''' Subsets fonts in PDF document.
    ''' </summary>
    ''' <param name="inPdfFilename">The input PDF filename.</param>
    ''' <param name="outPdfFilename">The output PDF filename.</param>
    Public Shared Sub SubsetFonts(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 subset fonts in PDF document
        compressor.SubsetFonts = True
    
        ' compress PDF document
        compressor.Compress(inPdfFilename, outPdfFilename)
    End Sub
    
    
    
    /// <summary>
    /// Subsets fonts in PDF document.
    /// </summary>
    /// <param name="inPdfFilename">The input PDF filename.</param>
    /// <param name="outPdfFilename">The output PDF filename.</param>
    public static void SubsetFonts(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 subset fonts in PDF document
        compressor.SubsetFonts = 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

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