Question : How to resize the attached image (.jpg file)

How to resize the attached image (.jpg file).
I want to resize (make small) and attach it to my button. How to achive this in VB.NET? Please help me.
Attachments:
 
This a jpg file to attach on one of my button.
This a jpg file to attach on one of my button.
 

Answer : How to resize the attached image (.jpg file)

I think he might want a thumbnail view .. 16x16, 24x24, 32x32 and adjusted within the button to left, middle, right alignments.. Seems to work fine but maybe there is a better way.
1:
2:
3:
Button1.Text = "Back"
Button1.ImageAlign = ContentAlignment.MiddleLeft
Button1.Image = Button1.Image.GetThumbnailImage(24, 24, Nothing, Nothing)
Random Solutions  
 
programming4us programming4us