IIXC_Inst::CreateEmptyImage Method
From Tracker Software PDF SDK
m (Automatic page editing by robot) |
|||
Line 5: | Line 5: | ||
{{ToReview}} | {{ToReview}} | ||
− | The method | + | The method creates an empty image with no pages. |
== Syntax == | == Syntax == | ||
Line 12: | Line 12: | ||
== Parameters == | == Parameters == | ||
;ppImage | ;ppImage | ||
− | :[out, retval] | + | :[out, retval] Image specifies a pointer to the variable which receives the [[PXV:IIXC_Image|IIXC_Image]] of the created image. |
== Return Value == | == Return Value == | ||
Returns S_OK if operation was successful or error code in other cases. | Returns S_OK if operation was successful or error code in other cases. | ||
+ | |||
+ | == Remarks == | ||
+ | Typically this function is used when loading or storing images to create temporary images which are then used to hold sets of selected image pages. | ||
== See Also == | == See Also == | ||
− | + | :[[PXV:IIXC_Inst|IIXC_Inst]] | |
+ | :[[PXV:IIXC_Image_Load|IIXC_Image::Load]] | ||
+ | :[[PXV:IIXC_Image_LoadFromIStream|IIXC_Image::LoadFromIStream]] | ||
+ | :[[PXV:IIXC_Image_LoadFromMemory|IIXC_Image::LoadFromMemory]] | ||
+ | :[[PXV:IIXC_Image_Save|IIXC_Image:Save]] |
Revision as of 08:03, 29 April 2015
The method creates an empty image with no pages.
Syntax
HRESULT CreateEmptyImage([out, retval] IIXC_Image** ppImage);
Parameters
- ppImage
- [out, retval] Image specifies a pointer to the variable which receives the IIXC_Image of the created image.
Return Value
Returns S_OK if operation was successful or error code in other cases.
Remarks
Typically this function is used when loading or storing images to create temporary images which are then used to hold sets of selected image pages.