开发者

c# type Bitmap is have in the system or we can create any kind of type

开发者 https://www.devze.com 2023-03-10 16:20 出处:网络
Bitmap In the code below we can create it or it is one type on c# system already // Create a temporary bitmap...

Bitmap In the code below we can create it or it is one type on c# system already

// Create a temporary bitmap...

Bitmap tmpBitmap = new Bitmap(1,1,PixelFormat.Format32bppArgb);
objGraphics = Graphics.FromImage(tmpBitmap);开发者_如何学编程
// measure the barcode size...

SizeF barCodeSize=objGraphics.MeasureString(barCodeString,c39Font);


Bitmap is System Type...which you can find in System.Drawing namespace...


http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.aspx

Please use google and msdn. Or try to search in object browser under View menu of Visual studio

0

精彩评论

暂无评论...
验证码 换一张
取 消