I'm trying to re-size my sprites to make them the proper size so they get drawn correctly, but I cant seem to find why I'm getting an unhandled ArgumentExepction when I'm making the new Bitmap object.
public static Image prepareImage(Image original, Size size)
{
Bitmap newImage = new Bitmap(original, size);
return (Image)newImage;
}