views:

1730

answers:

1

Hi!

How I can zoom in a bitmap on Compact Framework? I read this article and http://geeks.netindonesia.net/blogs/clawford/archive/2008/04/20/resizing-bitmap-tutorial-in-net-cf.aspx and it's only to make the bitmap smaller.

Thank you!

+1  A: 

The Imaging APIs can be used for resizing. Typically they are used for getting a thumbnail (making the image smaller) but there's nothing that says it has to. It simply provides a "CreateBitmapFromImage" method, so you can always make the image larger.

For a reasonable managed wrapper of the APIs, see the Smart Device Framework.

ctacke