IIndexBitmapConverterInternal

public interface IIndexBitmapConverterInternal

该接口声明用于自定义量化算法。用户可以实现自己的算法实现(例如基于非托管代码的算法)。

方法

方法描述
get1BppImageInternal(System.Drawing.Bitmap src)仅内部返回 1Bpp 位图表示
get4BppImageInternal(System.Drawing.Bitmap src)仅内部返回 4Bpp 位图表示
get8BppImageInternal(System.Drawing.Bitmap src)仅内部返回 8Bpp 位图表示

get1BppImageInternal(System.Drawing.Bitmap src)

public abstract System.Drawing.Bitmap get1BppImageInternal(System.Drawing.Bitmap src)

仅内部返回 1Bpp 位图表示

参数:

范围类型描述
srccom.aspose.ms.System.Drawing.Bitmap源位图。

退货: com.aspose.ms.System.Drawing.Bitmap - 1 bpp 图像格式的位图。

get4BppImageInternal(System.Drawing.Bitmap src)

public abstract System.Drawing.Bitmap get4BppImageInternal(System.Drawing.Bitmap src)

仅内部返回 4Bpp 位图表示

参数:

范围类型描述
srccom.aspose.ms.System.Drawing.Bitmap源位图。

退货: com.aspose.ms.System.Drawing.Bitmap - 4 bpp 图像格式的位图。

get8BppImageInternal(System.Drawing.Bitmap src)

public abstract System.Drawing.Bitmap get8BppImageInternal(System.Drawing.Bitmap src)

仅内部返回 8Bpp 位图表示

参数:

范围类型描述
srccom.aspose.ms.System.Drawing.Bitmap源位图。

退货: com.aspose.ms.System.Drawing.Bitmap - 8 bpp 图像格式的位图。