ImageGearJava Project > com.accusoft.imagegear.processing Package > ImGearRasterProcessing Class > convertColorSpace Method : convertColorSpace(ImGearRasterPage,ImGearColorSpace) Method |
Note: Conversion to Grayscale colorspace takes into account the human eye's sensitivity to different parts of the light spectrum. ImageGear uses the following formula when converting from RGB to Grayscale: Gray = Red * 77 / 255 + Green * 151 / 255 + Blue * 28 / 255. If you need to convert an image to Grayscale using equal weights for Red, Green and Blue, or any other weights, use convertColorSpace(ImGearRasterPage,ImGearColorSpace,double[,])
com.accusoft.imagegear.core.ImGearRasterPagecom.accusoft.imagegear.core.ImGearColorSpace
public static void convertColorSpace( ImGearRasterPage page, ImGearColorSpace newColorSpace ) |