API Reference
BarcodeEasy
One-line barcode helpers with sane defaults.
Inheritance
- Object
- BarcodeEasy
Examples
using CodeGlyphX;
var png = BarcodeEasy.RenderPng(BarcodeType.Code128, "PRODUCT-12345");
var svg = BarcodeEasy.RenderSvg(BarcodeType.Code128, "PRODUCT-12345");
Methods
public static Barcode1D Encode(BarcodeType type, String content) #Barcode1DEncodes a barcode value using the specified BarcodeType.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
public static String RenderAscii(BarcodeType type, String content, BarcodeAsciiRenderOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as ASCII text.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.Rendering.Ascii.BarcodeAsciiRenderOptions = null
public static String RenderAsciiToFile(BarcodeType type, String content, String path, BarcodeAsciiRenderOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as ASCII text to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.Rendering.Ascii.BarcodeAsciiRenderOptions = null
public static Byte[] RenderBmp(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as BMP.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderBmpToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as BMP to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderBmpToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as BMP to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static String RenderEps(BarcodeType type, String content, BarcodeOptions options = null, RenderMode mode = Vector) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as EPS.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
- mode CodeGlyphX.Rendering.RenderMode = Vector
public static String RenderEpsToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, RenderMode mode = Vector) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as EPS to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
- mode CodeGlyphX.Rendering.RenderMode = Vector
public static Void RenderEpsToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null, RenderMode mode = Vector) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as EPS to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
- mode CodeGlyphX.Rendering.RenderMode = Vector
public static String RenderHtml(BarcodeType type, String content, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as HTML.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderHtmlToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, String title = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as HTML to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
- title System.String = null
public static Void RenderHtmlToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null, String title = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as HTML to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
- title System.String = null
public static Byte[] RenderIco(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as ICO.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderIcoToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as ICO to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderIcoToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as ICO to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderJpeg(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as JPEG.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderJpegToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as JPEG to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderJpegToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as JPEG to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderPam(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PAM.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderPamToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PAM to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderPamToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PAM to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderPbm(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PBM.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderPbmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PBM to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderPbmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PBM to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderPdf(BarcodeType type, String content, BarcodeOptions options = null, RenderMode mode = Vector) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PDF.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
- mode CodeGlyphX.Rendering.RenderMode = Vector
public static String RenderPdfToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, RenderMode mode = Vector) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PDF to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
- mode CodeGlyphX.Rendering.RenderMode = Vector
public static Void RenderPdfToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null, RenderMode mode = Vector) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PDF to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
- mode CodeGlyphX.Rendering.RenderMode = Vector
public static Byte[] RenderPgm(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PGM.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderPgmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PGM to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderPgmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PGM to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderPng(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PNG.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderPngToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PNG to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderPngToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PNG to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderPpm(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PPM.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderPpmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PPM to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderPpmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as PPM to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static String RenderSvg(BarcodeType type, String content, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as SVG.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderSvgToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as SVG to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderSvgToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as SVG to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderSvgz(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as SVGZ.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderSvgzToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as SVGZ to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderSvgzToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as SVGZ to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static Byte[] RenderTga(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as TGA.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderTgaToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as TGA to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderTgaToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as TGA to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static String RenderToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, String title = null) #StringSaves a barcode to a file based on the output extension.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
- title System.String = null
public static Byte[] RenderWebp(BarcodeType type, String content, BarcodeOptions options = null) #Byte[]Obsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as WebP.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderWebpToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as WebP to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderWebpToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as WebP to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static String RenderXbm(BarcodeType type, String content, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as XBM.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderXbmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as XBM to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderXbmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as XBM to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null
public static String RenderXpm(BarcodeType type, String content, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as XPM.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- options CodeGlyphX.BarcodeOptions = null
public static String RenderXpmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #StringObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as XPM to a file.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- path System.String
- options CodeGlyphX.BarcodeOptions = null
public static Void RenderXpmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #VoidObsolete("Use Render(..., OutputFormat) with RenderedOutput/OutputWriter (and RenderExtras for HTML/PDF/EPS). Legacy per-format helpers will be removed in a future release.")Renders a barcode as XPM to a stream.
Parameters
- type CodeGlyphX.BarcodeType
- content System.String
- stream System.IO.Stream
- options CodeGlyphX.BarcodeOptions = null