SyntaxFix
Write A Post
Hire A Developer
Questions
In addition, you can simply convert byte array to Bitmap.
byte array
Bitmap
var bmp = new Bitmap(new MemoryStream(imgByte));
You can also get Bitmap from file Path directly.
Bitmap bmp = new Bitmap(Image.FromFile(filePath));