主要通过Image实现
Image是抽象类,Bitmap从Image派生
可以处理BMP,JPEG,GIF,PNG等格式
构建
Bitmap bt1 = new Bitmap("D:\\1.bmp");
Bitmap bt2 = new Bitmap(bt1,200,300);
Bitmap bt3;
Bt3.FromFile("name of the file");
本文共 242 字,大约阅读时间需要 1 分钟。
主要通过Image实现
Image是抽象类,Bitmap从Image派生
可以处理BMP,JPEG,GIF,PNG等格式
构建
Bitmap bt1 = new Bitmap("D:\\1.bmp");
Bitmap bt2 = new Bitmap(bt1,200,300);
Bitmap bt3;
Bt3.FromFile("name of the file");
转载于:https://www.cnblogs.com/pugongying123/p/8327529.html