Table of Contents

Interface IBarcodeWriter

Namespace
ZXing
Assembly
zxing.dll

Interface for a smart class to encode some content into a barcode

public interface IBarcodeWriter

Properties

Encoder

Gets or sets the writer which encodes the content to a BitMatrix. If no value is set the MultiFormatWriter is used.

Writer Encoder { get; set; }

Property Value

Writer

Format

Get or sets the barcode format which should be generated (only suitable if MultiFormatWriter is used for property Encoder which is the default)

BarcodeFormat Format { get; set; }

Property Value

BarcodeFormat

Options

Gets or sets the options container for the encoding and renderer process.

EncodingOptions Options { get; set; }

Property Value

EncodingOptions

Methods

Encode(string)

Encodes the specified contents.

BitMatrix Encode(string contents)

Parameters

contents string

The contents.

Returns

BitMatrix