public unsafe System.Drawing.Bitmap GetBitmap() { fixed(byte *img = &this.imageData) return(EBDT.GetBitAlignedImage(this.bigMetrics.width, this.bigMetrics.height, img)); }
public unsafe System.Drawing.Bitmap GetBitmap(int width, int height) { fixed(byte *img = &this.imageData) return(EBDT.GetBitAlignedImage(width, height, img)); }