[SerializableAttribute()]
public enum PDFFileType
public enum PDFFileType
[SerializableAttribute()]
public enum class PDFFileType
class PDFFileType(Enum):
Unknown = 0
PDF10 = 1
PDF11 = 2
PDF12 = 3
PDF13 = 4
PDF14 = 5
PDF15 = 6
PDF16 = 7
PDF17 = 8
Postscript = 9
EncapsulatedPostscript = 10
Value | Member | Description |
---|---|---|
0 | Unknown | Not a valid PDF or PS (Postscript) file |
1 | PDF10 | PDF Version 1.0 |
2 | PDF11 | PDF Version 1.1 |
3 | PDF12 | PDF Version 1.2 |
4 | PDF13 | PDF Version 1.3 |
5 | PDF14 | PDF Version 1.4 |
6 | PDF15 | PDF Version 1.5 |
7 | PDF16 | PDF Version 1.6 |
8 | PDF17 | PDF Version 1.7 |
9 | Postscript | Postscript file (PS) |
10 | EncapsulatedPostscript | Encapsulated Postscript file (EPS) |
The PDFFileType enumeration is used as the return value from PDFFile.GetPDFFileType method and as the type of the PDFDocument.FileType property. It determines the type and version of the PDF or PS file.
Note: The PDFDocument class can be associate with a PDF only and does not support Postscript files. As a result, the value of PDFDocument.FileType will only be one of the PDF version values.
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 PDFCompatibilityLevelExample()
{
string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf");
string destFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_14.pdf");
// Check the version of the source file
PDFFileType fileType = PDFFile.GetPDFFileType(sourceFileName, true);
if (fileType == PDFFileType.Unknown)
{
Console.WriteLine("Not a valid PDF file");
return;
}
if (fileType == PDFFileType.PDF14)
{
Console.WriteLine("Is PDF 1.4 already");
return;
}
// Not PDF 1.4, convert
Console.WriteLine("Converting to PDF 1.4");
PDFFile file = new PDFFile(sourceFileName);
file.CompatibilityLevel = PDFCompatibilityLevel.PDF14;
file.Convert(1, -1, destFileName);
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document