CodeGlyphX logo
CodeGlyphX

API Reference

Class

BarcodeEasy

Namespace CodeGlyphX
Assembly CodeGlyphX
Modifiers static

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) #
Returns: Barcode1D

Encodes a barcode value using the specified BarcodeType.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
public static String RenderAscii(BarcodeType type, String content, BarcodeAsciiRenderOptions options = null) #
Returns: String
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 ASCII text.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.Rendering.Ascii.BarcodeAsciiRenderOptions = null optionalposition: 2
public static String RenderAsciiToFile(BarcodeType type, String content, String path, BarcodeAsciiRenderOptions options = null) #
Returns: String
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 ASCII text to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.Rendering.Ascii.BarcodeAsciiRenderOptions = null optionalposition: 3
public static Byte[] RenderBmp(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderBmpToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderBmpToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static String RenderEps(BarcodeType type, String content, BarcodeOptions options = null, RenderMode mode = Vector) #
Returns: String
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 EPS.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
mode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 3
public static String RenderEpsToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, RenderMode mode = Vector) #
Returns: String
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 EPS to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
mode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
public static Void RenderEpsToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null, RenderMode mode = Vector) #
Returns: Void
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 EPS to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
mode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
public static String RenderHtml(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: String
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 HTML.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderHtmlToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, String title = null) #
Returns: String
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 HTML to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
title System.String = null optionalposition: 4
public static Void RenderHtmlToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null, String title = null) #
Returns: Void
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 HTML to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
title System.String = null optionalposition: 4
public static Byte[] RenderIco(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderIcoToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderIcoToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderJpeg(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderJpegToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderJpegToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderPam(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderPamToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderPamToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderPbm(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderPbmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderPbmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderPdf(BarcodeType type, String content, BarcodeOptions options = null, RenderMode mode = Vector) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
mode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 3
public static String RenderPdfToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, RenderMode mode = Vector) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
mode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
public static Void RenderPdfToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null, RenderMode mode = Vector) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
mode CodeGlyphX.Rendering.RenderMode = Vector optionalposition: 4
public static Byte[] RenderPgm(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderPgmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderPgmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderPng(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderPngToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderPngToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderPpm(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderPpmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderPpmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static String RenderSvg(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: String
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 SVG.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderSvgToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 SVG to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderSvgToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 SVG to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderSvgz(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderSvgzToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderSvgzToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Byte[] RenderTga(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderTgaToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderTgaToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static String RenderToFile(BarcodeType type, String content, String path, BarcodeOptions options = null, String title = null) #
Returns: String

Saves a barcode to a file based on the output extension.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
title System.String = null optionalposition: 4
public static Byte[] RenderWebp(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: 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 requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderWebpToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderWebpToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static String RenderXbm(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: String
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 XBM.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderXbmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 XBM to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderXbmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 XBM to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static String RenderXpm(BarcodeType type, String content, BarcodeOptions options = null) #
Returns: String
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 XPM.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
options CodeGlyphX.BarcodeOptions = null optionalposition: 2
public static String RenderXpmToFile(BarcodeType type, String content, String path, BarcodeOptions options = null) #
Returns: String
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 XPM to a file.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
path System.String requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3
public static Void RenderXpmToStream(BarcodeType type, String content, Stream stream, BarcodeOptions options = null) #
Returns: Void
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 XPM to a stream.

Parameters

type CodeGlyphX.BarcodeType requiredposition: 0
content System.String requiredposition: 1
stream System.IO.Stream requiredposition: 2
options CodeGlyphX.BarcodeOptions = null optionalposition: 3