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.Drawingnamespace…