Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(originalImage, newWidth, newHeight);
bmp.Save("file path");
System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(Image, imgWidth, imgHeight)
bmp.Save("1Images/Small/6.jpg")
Yes it will - you will have to declare your "bmp" object as you would normally declare an object in VB.I am writing this in VB not C would that make a difference?
bmp.Save("1Images/Small/6.jpg")
Dim bmp as System.Drawing.Image
bmp = new System.Drawing.Bitmap(Image, imgWidth, imgHeight)