@schie/fluent-zpl - v0.10.0
    Preparing search index...

    Interface GS1_128Opts

    Options for GS1-128 barcode fields (convenience method for GS1 barcodes).

    This interface defines the configuration options for adding GS1-128 barcodes to a label:

    • at: Specifies the x and y coordinates for the barcode position.
    • ai: Application Identifier data as key-value pairs.
    • height: Optional height of the barcode.
    • rotate: Optional orientation of the barcode.
    interface GS1_128Opts {
        ai: Record<string, string | number>;
        at: Position;
        height?: number;
        rotate?: Orientation;
    }
    Index

    Properties

    Properties

    ai: Record<string, string | number>
    height?: number
    rotate?: Orientation