Resize image

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • David

    Resize image

    Hello.
    How can I resize image in Bitmap object?


  • Shiva

    #2
    Re: Resize image

    This is one way:

    Bitmap newBmp = new Bitmap (new-size-x, new-size-y);
    Graphics g = Graphics.FromIm age (newBmp);
    g.DrawImage (<original bmp>, 0, 0);


    "David" <david_dvali@ho tmail.com> wrote in message
    news:uOU$R914EH A.2016@TK2MSFTN GP15.phx.gbl...
    Hello.
    How can I resize image in Bitmap object?



    Comment

    Working...