It is only possible to instruct the scanner driver to acquire with a given DPI, with: ImageEnView.IO.TwainParams.XResolution := DPI; ImageEnView.IO.TwainParams.YResolution := DPI;
You can also set the DPI informative tag, after scanning, with:
ImageEnView.IO.Params.DPI := DPI;
Of course, the above code doesn't change the actual image resolution, but only the informative DPI tag. |