IIXC_Inst::CreateEmptyImage Method

From PDF XChange PDF SDK
Jump to: navigation, search
m (Automatic page editing by robot)
m (Automatic page editing by robot)
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
[[Category:Editor]]
 
[[Category:Editor]]
 
{{#customTitle:IIXC_Inst::CreateEmptyImage Method}}
 
{{#customTitle:IIXC_Inst::CreateEmptyImage Method}}
{{#parentPage:PXV:IIXC_Inst#Methods|CreateEmptyImage Method|method}}
+
{{#parentPage:PXV:IIXC_Inst#Methods|CreateEmptyImage|method}}
  
 
The method creates an empty image with no pages.
 
The method creates an empty image with no pages.
  
 
== Syntax ==
 
== Syntax ==
<pre class="brush:cpp;gutter:false">HRESULT CreateEmptyImage([out, retval]  IIXC_Image**  ppImage);</pre>
+
<pre class="brush:cpp;gutter:false">HRESULT CreateEmptyImage([out, retval]  IIXC_Image**  pImage);</pre>
  
 
== Parameters ==
 
== Parameters ==
;ppImage
+
;pImage
 
:[out, retval]  Image specifies a pointer to the variable which receives the [[PXV:IIXC_Image|IIXC_Image]] of the created image.
 
:[out, retval]  Image specifies a pointer to the variable which receives the [[PXV:IIXC_Image|IIXC_Image]] of the created image.
  
Line 20: Line 20:
  
 
== See Also ==
 
== See Also ==
:[[PXV:IIXC_Inst|IIXC_Inst]]
+
[[PXV:IIXC_Inst|IIXC_Inst]]
:[[PXV:IIXC_Image|IIXC_Image]]
+
:[[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]]
+

Latest revision as of 03:15, 15 June 2015

The method creates an empty image with no pages.

Syntax

HRESULT CreateEmptyImage([out, retval]  IIXC_Image**  pImage);

Parameters

pImage
[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.

See Also

IIXC_Inst