ImageGear .NET v24.14 - Updated
SaveCompressed(String) Method
Example 




ImageGear24.Formats.Pdf Assembly > ImageGear.Formats.PDF Namespace > ImGearPDFDocument Class > SaveCompressed Method : SaveCompressed(String) Method
File name of file to be saved.
Save highly-compressed PDF document to a file on disk.
Syntax
'Declaration
 
Public Overloads Sub SaveCompressed( _
   ByVal fileName As String _
) 
'Usage
 
Dim instance As ImGearPDFDocument
Dim fileName As String
 
instance.SaveCompressed(fileName)
public void SaveCompressed( 
   string fileName
)
public: void SaveCompressed( 
   string* fileName
) 
public:
void SaveCompressed( 
   String^ fileName
) 

Parameters

fileName
File name of file to be saved.
Remarks

ImageGear .NET improves the overall size of saved PDF documents by reducing or removing data structures in the PDF document, specifically:

WARNING: Re-compressing Images with JBIG2 will invalidate PDF/X compliant documents.

WARNING: Removing embedded Standard Type 1 Fonts will invalidate PDF/X compliant documents.

WARNING: Removing embedded Standard Type 1 Fonts will invalidate PDF/A compliant documents when visible text is affected.

File size improvements will vary with each PDF file. In some cases, file size reduction is dramatic. Re-saving an optimized PDF file is not expected to further reduce its size. Less frequently, PDF file size may increase due to metadata that is always written when PDF documents are saved. Unmodified PDF files that cannot be further reduced are returned unaltered.

Example
using System;
using System.IO;
using System.Text;

using ImageGear.Core;
using ImageGear.Formats;
using ImageGear.Windows.Forms;
using ImageGear.Formats.PDF;

public String SaveCompressedPDFtoStream(String inputFileName, String outputFileName)
{
    // Load PDF document.
    ImGearPDFDocument pdfDocument = null;
    using (Stream fileStream = new FileStream(inputFileName, FileMode.Open,
       FileAccess.Read, FileShare.Read))
    {
        pdfDocument = (ImGearPDFDocument)ImGearFileFormats.LoadDocument(fileStream);
    }
 
    // Save compressed PDF document to stream.
    pdfDocument.SaveCompressed(outputFileName);
}
Imports System
Imports System.IO
Imports System.Text

Imports ImageGear.Core
Imports ImageGear.Formats
Imports ImageGear.Formats.PDF

Public Sub SaveCompressedPDFtoStream(inputFileName As String, outputFileName as String)
 
    ' Load PDF document.
    Dim pdfDocument As ImGearPDFDocument
    Using fileStream As New FileStream(inputFileName, FileMode.Open, FileAccess.Read,
            FileShare.Read)
        pdfDocument = DirectCast(ImGearFileFormats.LoadDocument(fileStream),
                ImGearPDFDocument)
    End Using

    ' Save compressed PDF document to stream.
    pdfDocument.SaveCompressed(outputFileName)

End Function
See Also

Reference

ImGearPDFDocument Class
ImGearPDFDocument Members
Overload List