How can I open an image file as bitmap scaled down?
For example in java I can do this:
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 2;
Bitmap myBitmap = BitmapFactory.decodeFile(fname, options);
(this will load the image file as bitmap but scaled down by 2, means it loads only half of the image file's pixels)
How do I do the same thing in c#?