DPI and BitDepth Settings in SDK #522
BeckoningEagle
started this conversation in
Development
Replies: 1 comment
-
The scanner or WIA driver might not support 200dpi (see GetCaps). Grayscale JPEGs aren't generally supported in PDFs so they'll be encoded as 24 bit. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using the following settings:
var options = new ScanOptions
{
AutoDeskew = true,
BitDepth = bitDepth,
Device = device,
Dpi = 200,
Driver = Driver.Wia,
PageSize = PGSize,
PaperSource = PPSource
};
Where bitDepth = BitDepth.Greyscale
PGSize = PageSize.Letter
and
PPSource = PaperSource.Feeder
When I scan it, the file created are 100dpi and 24bit depth. The image is Greyscale, but the actual bitDepth is 24 instead of 8. Am I doing something particularly wrong?
This is the actual scan part:
Beta Was this translation helpful? Give feedback.
All reactions