IIXC_Image::Load Method

From PDF XChange PDF SDK
Revision as of 03:50, 21 May 2015 by Dsbot (Talk | contribs) (Automatic page editing by robot)

Jump to: navigation, search

This method loads an image from the selected file.

Syntax

HRESULT Load([in]                   LPWSTR  pImagePath,
             [in, defaultvalue(0)]  ULONG   nFlags);

Parameters

pImagePath
[in] Value of LPWSTR is the null-terminated file name string.
nFlags
[in, defaultvalue(0)] The following flag can be used to specify how the image will be loaded.

Return Value

Returns S_OK if the operation was successful, and will return an error code if it fails.

Remarks

By default Load opens the image file, acquires information about all pages, decodes all of them, and closes the file. This is a good approach for single page files, but when dealing with large multi-paged files, this may cause unnecessary memory usage and performance degradation. To avoid this situation, Load should be called with the ImageLoad_Deferred flag. In this case, the image file will be analyzed, information about its pages will be acquired, but actual page data will not be decoded immediately.

See Also

IIXC_Image
IXC_ImageLoadFlags
IIXC_Inst::CreateEmptyImage
IIXC_Image::LoadFromIStream
IIXC_Image::LoadFromMemory
IIXC_Image::Save