Bitmap image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)),

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/26 11:29:26
Bitmap image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)),

Bitmap image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)),
Bitmap image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)),

Bitmap image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)),
不知道是否C#代码,若是:
1、Bitmap image ====> Bitmap* image.
2、Bitmap* image = new Bitmap((int)Math.Ceiling((c(checkCode.Length * 9.5)),22); 意思是
声明一个Bitmap对象的指针image,并且利用 Bitmap的构造函数 Bimap(int,int)初始化.两个int型参数大概分别表示位图的宽、高.
宽由 checkCode对象的Length的9.5倍确定;高22.
(int)Math.Ceiling((c(checkCode.Length * 9.5))是把 Math.Ceiling函数的double型返回值强制转换为int型.