PdfDocument.OpenImage Method (String)

Opens the image and constructs a collection of its frames (pages).

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public PdfImageFrames OpenImage(
	string fileName
)
VB
Public Function OpenImage ( 
	fileName As String
) As PdfImageFrames

Parameters

fileName
Type: System.String
Name of the image file.

Return Value

Type: PdfImageFrames
The collection of image frames (pages) or null if image format is unsupported.

Remarks

This method does not load image data and does not add images to the collection of document images.

This method is useful if you want to add only some of the image frames (pages) to document or if you want to recompress image frames before adding them to document.

Please use one of the AddImage() methods to add a frame from collection of frames to the collection of document images.

See Also