LEADTOOLS PDF (Leadtools.Pdf assembly)

Linearize Method

Show in webframe
Example 





Name of the destination PDF file to be created. If the value of this parameter is null (Nothing in Visual Basic) then the file name set in FileName will be updated.
Convert the file associated with this PDFFile object to a linearized version (optimized for Web viewing)
Syntax
public void Linearize( 
   string destinationFileName
)
'Declaration
 
Public Sub Linearize( _
   ByVal destinationFileName As String _
) 
'Usage
 
Dim instance As PDFFile
Dim destinationFileName As String
 
instance.Linearize(destinationFileName)

            

            
public:
void Linearize( 
   String^ destinationFileName
) 

Parameters

destinationFileName
Name of the destination PDF file to be created. If the value of this parameter is null (Nothing in Visual Basic) then the file name set in FileName will be updated.
Remarks

A Linearized PDF file is a file that has been organized in a special way to enable efficient incremental access in a network environment, this allows the first page of the PDF file to be displayed in a user Web browser before the entire file is downloaded from the Web server.

To use this method, associate this PDFFile object with a valid PDF file and optional password. You can achieve this by either using the PDFFile(string fileName) or PDFFile(string fileName, string password) constructurs or set the file name and optional password directly into the FileName and Password properties. You do not need to call Load before using this method.

This method will use the following properties of this PDFFile object:

The following properties are not used by this method:

Note: Currently, generating linearized PDF files with PDF/A compatibility level may result in a PDF file that is not compatible with Adobe Preflight.

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.Pdf
Imports Leadtools.WinForms

Public Sub PDFFileLinearizeExample()
   Dim sourceFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD.pdf")
   Dim destinationFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "LEAD_linearized.pdf")

   Dim pdfFileObj As New PDFFile(sourceFileName)
   pdfFileObj.Linearize(destinationFileName)

   ' Open the destination file in Adobe Acrobat and go to
   ' File/Properties. You should see the "Fast Web View" option as "Yes";
End Sub

Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Pdf;
using Leadtools.WinForms;

public void PDFFileLinearizeExample()
{
   string sourceFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD.pdf");
   string destinationFileName = Path.Combine(LEAD_VARS.ImagesDir, @"LEAD_linearized.pdf");

   PDFFile pdfFile = new PDFFile(sourceFileName);
   pdfFile.Linearize(destinationFileName);

   // Open the destination file in Adobe Acrobat and go to
   // File/Properties. You should see the "Fast Web View" option as "Yes";
}

static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
Requirements

Target Platforms

See Also

Reference

PDFFile Class
PDFFile Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.