If you just want to resize it, then you can do so with the
DrawImage method of any Graphics class.
Create a new Bitmap class of the new size you want. Then
create a Graphics class that is set by using Graphics.FromImage,
passing the new Bitmap as a parameter to FromImage. Then
use the DrawImage metho of the Graphics object to draw the
original Bitmap onto the new one one, with a Rectangle of the
size of the new image. The DrawImage method automatically
resizes the image.