Code93Writer class
This object renders a CODE93 code as a BitMatrix
- Inheritance
-
- Object
- OneDimensionalCodeWriter
- Code93Writer
Constructors
Properties
- defaultMargin → int
-
no setterinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
supportedWriteFormats
→ List<
BarcodeFormat> -
no setteroverride
Methods
-
encode(
String contents, BarcodeFormat format, int width, int height, [EncodeHint? hints]) → BitMatrix -
Encode the contents following specified format.
width
andheight
are required size. This method may return bigger sizeBitMatrix
when specified size is too small. The user can set bothwidth
andheight
to zero to get minimum size barcode. If negative value is set towidth
orheight
,IllegalArgumentException
is thrown.inherited -
encodeContent(
String contents, [EncodeHint? hints]) → List< bool> -
@param contents barcode contents to encode. It should not be encoded for extended characters.
@return a {@code List
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
appendPatternDpr(
List< bool> target, int pos, List<int> pattern, bool startColor) → int - @param target output to append to @param pos start position @param pattern pattern to append @param startColor unused @return 9 @deprecated without replacement; intended as an internal-only method
-
convertToExtended(
String contents) → String