drawing on a bitmap code example
Example: microsoft forms create bitmap
//Create a Bitmap with resolution of 100,100
Bitmap bmp = new Bitmap(100,100);
//Create a Bitmap from an image
Bitmap bmp = new Bitmap("Image File Path");
//Create a Bitmap with resolution of 100,100
Bitmap bmp = new Bitmap(100,100);
//Create a Bitmap from an image
Bitmap bmp = new Bitmap("Image File Path");