What API or component could I use to read images (e.g. scanned copies) using C# and .Net?
A:
System.Drawing.Image.FromFile is the easy way to get started.
It can read BMP, GIF, JPEG, PNG, TIFF
ScottS
2010-09-21 04:43:23
+1
A:
use openCV. you can find it here
you can use this library perfectly with c++. if you need to use it in C# use this wrapper
you can also use ImageMagick
HPT
2010-09-21 04:56:24
A:
It very much depends on the technology you want to use; in the case of WPF you'd use built-in classes in System.Windows.Media.Imaging, which handle the most common formats natively (bmp, jpeg, png, gif, tiff, wmp).
Alex Paven
2010-09-21 19:47:48