📜  microsoft forms 创建位图 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:47.999000             🧑  作者: Mango

代码示例1
//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");