ConvertToImages

ConvertToImages(string, string)

Convert the input file pages to images.

public static void ConvertToImages(string inputFile, string outputFile)
ParameterTypeDescription
inputFileStringThe input file name.
outputFileStringThe output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”

See Also


ConvertToImages(string, string, SaveFormat)

Convert the input file pages to images.

public static void ConvertToImages(string inputFile, string outputFile, SaveFormat saveFormat)
ParameterTypeDescription
inputFileStringThe input file name.
outputFileStringThe output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”
saveFormatSaveFormatSave format. Only image save formats are allowed.

See Also


ConvertToImages(string, string, ImageSaveOptions)

Convert the input file pages to images.

public static void ConvertToImages(string inputFile, string outputFile, 
    ImageSaveOptions saveOptions)
ParameterTypeDescription
inputFileStringThe input file name.
outputFileStringThe output file name used to generate file name for page images using rule “outputFile_pageIndex.extension”
saveOptionsImageSaveOptionsImage save options.

See Also


ConvertToImages(string, SaveFormat)

Convert the input file pages to images.

public static Stream[] ConvertToImages(string inputFile, SaveFormat saveFormat)
ParameterTypeDescription
inputFileStringThe input file name.
saveFormatSaveFormatSave format. Only image save formats are allowed.

Return Value

Returns array of image streams. The streams should be disposed by the enduser.

See Also


ConvertToImages(string, ImageSaveOptions)

Convert the input file pages to images.

public static Stream[] ConvertToImages(string inputFile, ImageSaveOptions saveOptions)
ParameterTypeDescription
inputFileStringThe input file name.
saveOptionsImageSaveOptionsImage save options.

Return Value

Returns array of image streams. The streams should be disposed by the enduser.

See Also


ConvertToImages(Stream, SaveFormat)

Convert the input stream pages to images.

public static Stream[] ConvertToImages(Stream inputStream, SaveFormat saveFormat)
ParameterTypeDescription
inputStreamStreamThe input stream.
saveFormatSaveFormatSave format. Only image save formats are allowed.

Return Value

Returns array of image streams. The streams should be disposed by the enduser.

See Also


ConvertToImages(Stream, ImageSaveOptions)

Convert the input stream pages to images.

public static Stream[] ConvertToImages(Stream inputStream, ImageSaveOptions saveOptions)
ParameterTypeDescription
inputStreamStreamThe input stream.
saveOptionsImageSaveOptionsImage save options.

Return Value

Returns array of image streams. The streams should be disposed by the enduser.

See Also


ConvertToImages(DocumentSaveFormat)

Convert the document pages to images.

public static Stream[] ConvertToImages(Document doc, SaveFormat saveFormat)
ParameterTypeDescription
docDocumentThe input document.
saveFormatSaveFormatSave format. Only image save formats are allowed.

Return Value

Returns array of image streams. The streams should be disposed by the enduser.

See Also


ConvertToImages(DocumentImageSaveOptions)

Convert the document pages to images.

public static Stream[] ConvertToImages(Document doc, ImageSaveOptions saveOptions)
ParameterTypeDescription
docDocumentThe input document.
saveOptionsImageSaveOptionsImage save options.

Return Value

Returns array of image streams. The streams should be disposed by the enduser.

See Also