ImageCreate Method (SDFDoc, FilterReader, Int32, Int32, Int32, ColorSpace, ImageInputFilter) |
Embed the raw image data taking into account specified compression hints.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static Image Create(
SDFDoc doc,
FilterReader image_data,
int width,
int height,
int bpc,
ColorSpace color_space,
ImageInputFilter input_format
)
Public Shared Function Create (
doc As SDFDoc,
image_data As FilterReader,
width As Integer,
height As Integer,
bpc As Integer,
color_space As ColorSpace,
input_format As ImageInputFilter
) As Image
public:
static Image^ Create(
[InAttribute] SDFDoc^ doc,
[InAttribute] FilterReader^ image_data,
[InAttribute] int width,
[InAttribute] int height,
[InAttribute] int bpc,
[InAttribute] ColorSpace^ color_space,
[InAttribute] ImageInputFilter input_format
)
pdftron.PDF.Image.Create = function(doc, image_data, width, height, bpc, color_space, input_format);
Parameters
- doc
- Type: pdftron.SDFSDFDoc
the doc
- image_data
- Type: pdftron.FiltersFilterReader
the image_data
- width
- Type: SystemInt32
the width
- height
- Type: SystemInt32
the height
- bpc
- Type: SystemInt32
the bpc
- color_space
- Type: pdftron.PDFColorSpace
the color_space
- input_format
- Type: pdftron.PDFImageInputFilter
the input_format
Return Value
Type:
Image the image
Remarks see the above method for details.
See Also