Thanks for Downloading Dynamic Web TWAIN 30-Day Trial!
Your download will start shortly. If your download does not begin, click here to retry.
Error Troubleshooting
Only 24-bit true color bmp and 8-bit gray-scaled images are supported for JPEG compression
Symptom
When you save or upload an image as a JPEG file, you may receive the error.
Cause
You are saving a black and white image as a JPEG file but JPEG standard only allows the compression of grayscale and RGB images.
Resolution
Make sure the pixel type of the image in the buffer is Gray or RGB. If it is not, you can either save it in another format or convert the image to grayscale using the method ConvertToGrayScale().
if ( /*If save in JPEG*/ ) {
//Check whether the current image is B&W
//1 is B&W, 8 is Gray, 24 is RGB
if (DWTObject.GetImageBitDepth(DWTObject.CurrentImageIndexInBuffer) == 1)
//If so, convert the image to Gray
DWTObject.ConvertToGrayScale(DWTObject.CurrentImageIndexInBuffer);
//Save image in JPEG
DWTObject.SaveAsJPEG("DynamicWebTWAIN.jpg", DWTObject.CurrentImageIndexInBuffer);
}