Enum PdfDrawFormat
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
Specifies the image format to use while saving an image of a PdfPage.
public enum PdfDrawFormat
Fields
Jpeg = 1
The Joint Photographic Experts Group (JPEG) image format.
Png = 0
The Portable Network Graphics (PNG) image format.
Tiff = 2
The Tagged Image File Format (TIFF) image format.
Uncompressed = 3
Raw raster bytes without any header or compression.
Remarks
The image format is a part of the options specified by an object of the PdfDrawOptions type.
The Convert PDF to image in C# and VB.NET article shows how to save PDF pages as PNG, JPG, or TIFF images.
Check out the other articles and code samples on the PDF to image page.