BarcodeWriterRender Method |
AtalaImage image = new AtalaImage(200, 50, PixelFormat.Pixel24bppBgr, Color.White); BarcodeWriter bc = new BarcodeWriter(BarcodeStyle.Codabar); Graphics g = image.GetGraphics(); bc.Render("0123456789", g, new Rectangle(0, 0, image.Width, image.Height));
Name | Description | |
---|---|---|
Render(String, IBarGraphics, Rectangle) |
Renders the barcode in the supplied layout rectangle.
| |
Render(String, Graphics, Rectangle) |
Renders the bar code in the supplied layout rectangle.
|
AtalaImage image = new AtalaImage(200, 50, PixelFormat.Pixel24bppBgr, Color.White); BarcodeWriter bc = new BarcodeWriter(BarcodeStyle.Codabar); Graphics g = image.GetGraphics(); bc.Render("0123456789", g, new Rectangle(0, 0, image.Width, image.Height));