←Select platform

EmbedAllFonts Property

Summary
Enables or disables font embedding in the output PDF file.
Syntax
C#
C++/CLI
Java
Python
public bool EmbedAllFonts { get; set; } 
public boolean getEmbedAllFonts(); 
public void setEmbedAllFonts( 
   boolean booleanValue 
); 
public: 
property bool EmbedAllFonts { 
   bool get(); 
   void set (    bool ); 
} 
EmbedAllFonts # get and set (PDFOptimizerOptions) 

Property Value

If true, specifies that all fonts are to be embedded in the PDF file, default false.

Remarks

Embedding the fonts in the output file results in a larger PDF file.

Example
C#
using Leadtools.WinForms; 
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.Controls; 
using Leadtools.Drawing; 
using Leadtools.ImageProcessing; 
using Leadtools.Pdf; 
using Leadtools.Svg; 
 
 
public void PDFFileOptimizerOptionsExample() 
{ 
   string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf"); 
   string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_OptimizerOptions.pdf"); 
 
   PDFFile pdfFile = new PDFFile(sourceFileName); 
 
   PDFOptimizerOptions myOptimizerOptions = new PDFOptimizerOptions(); 
   myOptimizerOptions.AutoOptimizerMode = PDFAutoOptimizerMode.Customized; 
 
   myOptimizerOptions.ColorImageDownsamplingMode = PDFDownsamplingMode.Average; 
   myOptimizerOptions.GrayImageDownsamplingMode = PDFDownsamplingMode.Bicubic; 
   myOptimizerOptions.MonoImageDownsamplingMode = PDFDownsamplingMode.Bicubic; 
 
   myOptimizerOptions.ColorImageDownsampleFactor = 2.0; 
   myOptimizerOptions.GrayImageDownsampleFactor = 2.0; 
   myOptimizerOptions.MonoImageDownsampleFactor = 2.0; 
 
   myOptimizerOptions.ColorImageDPI = 150; 
   myOptimizerOptions.GrayImageDPI = 150; 
   myOptimizerOptions.MonoImageDPI = 150; 
 
   // To determine the accepted compression value for ColorImageCompression, GrayImageCompression and MonoImageCompression 
   // uncomment the necessary code below: 
   // 
   // ColorImageCompression 
   // RasterImageFormat[] grayImageFormatAcceptedCompression = PDFOptimizerOptions.SupportedGrayImageFormats; 
   // 
   // GrayImageCompression 
   // RasterImageFormat[] colorImageFormatAcceptedCompression = PDFOptimizerOptions.SupportedColorImageFormats; 
   // 
   // MonoImageCompression 
   // RasterImageFormat[] monoImageFormatAcceptedCompression = PDFOptimizerOptions.SupportedMonoImageFormats; 
 
   myOptimizerOptions.ColorImageCompression = RasterImageFormat.Jpeg; 
   myOptimizerOptions.GrayImageCompression = RasterImageFormat.Jpeg; 
   myOptimizerOptions.MonoImageCompression = RasterImageFormat.Jbig2; 
 
   myOptimizerOptions.EmbedAllFonts = false; 
   myOptimizerOptions.SubsetFonts = true; 
 
   pdfFile.OptimizerOptions = myOptimizerOptions; 
 
   pdfFile.Optimize(destinationFileName); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.7.10
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Pdf Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.