GetImage

GetImage(float, float)

返回带有自定义缩放的图像对象。

public IImage GetImage(float scaleX, float scaleY)
参数类型描述
scaleXSingle用于在 x 轴方向缩放缩略图的值。
scaleYSingle用于在 y 轴方向缩放缩略图的值。

返回值

图像对象 Bitmap

另请参见


GetImage()

返回缩略图图像对象(实际大小的 20%)。

public IImage GetImage()

返回值

图像对象 Bitmap

另请参见


GetImage(Size)

返回带有指定大小的图像对象。

public IImage GetImage(Size imageSize)
参数类型描述
imageSizeSize要创建的图像的大小。

返回值

Bitmap 对象。

另请参见


GetImage(ITiffOptions)

返回带有指定参数的缩略图 tiff 位图对象。

public IImage GetImage(ITiffOptions options)
参数类型描述
optionsITiffOptionsTiff 选项。

返回值

图像对象。

另请参见


GetImage(IRenderingOptions)

返回缩略图 Bitmap 对象。

public IImage GetImage(IRenderingOptions options)
参数类型描述
optionsIRenderingOptions渲染选项。

返回值

Bitmap 对象。

另请参见


GetImage(IRenderingOptions, float, float)

返回带有自定义缩放的缩略图 Bitmap 对象。

public IImage GetImage(IRenderingOptions options, float scaleX, float scaleY)
参数类型描述
optionsIRenderingOptions渲染选项。
scaleXSingle用于在 x 轴方向缩放缩略图的值。
scaleYSingle用于在 y 轴方向缩放缩略图的值。

返回值

Bitmap 对象。

另请参见


GetImage(IRenderingOptions, Size)

返回带有指定大小的缩略图 Bitmap 对象。

public IImage GetImage(IRenderingOptions options, Size imageSize)
参数类型描述
optionsIRenderingOptions渲染选项。
imageSizeSize要创建的图像的大小。

返回值

Bitmap 对象。

另请参见