Click or drag to resize

BarcodeWriterRender Method

Examples
 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));
Overload List
  NameDescription
Public methodRender(String, IBarGraphics, Rectangle)
Renders the barcode in the supplied layout rectangle.
Public methodCode exampleRender(String, Graphics, Rectangle)
Renders the bar code in the supplied layout rectangle.
Top
Examples
 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));
See Also