Magnifier

  • Thread starter Thread starter Anand Ganesh
  • Start date Start date
A

Anand Ganesh

Hi All,

I planning to write a Magnifier Application in Visual C#.NET. So when I move
the window on some Image it should work as a lens like magnifying it.

Any suggestions on what should I use. Do I have to use a picturebox control
or is there any other control which will do this task for me?

Thanks for your time.

Regards
Anand
 
Hi,
Hi All,

I planning to write a Magnifier Application in Visual C#.NET. So when I move
the window on some Image it should work as a lens like magnifying it.

Any suggestions on what should I use. Do I have to use a picturebox control
or is there any other control which will do this task for me?

Thanks for your time.

Regards
Anand

I can recommend You to use:

Bitmap Bitmap.Clone(Rectangle rect, PixelFormat pixelFormat)

or

void Image.DrawImage(...)

Regards

Marcin
 
Back
Top