yjy_barcode_image 2.0.2 copy "yjy_barcode_image: ^2.0.2" to clipboard
yjy_barcode_image: ^2.0.2 copied to clipboard

Barcode generation library for Dart that can generate barcodes using the image library.

barcode_image #

Barcode generation library for Dart that can generate barcodes using the pub:image library.

Live example with Flutter Web: https://davbfr.github.io/dart_barcode/


Buy Me A Coffee

Dart usage #

// Create an image
final image = Image(300, 120);

// Fill it with a solid color (white)
fill(image, getColor(255, 255, 255));

// Draw the barcode
drawBarcode(image, Barcode.code128(), 'Test', font: arial_24);

// Save the image
File('test.png').writeAsBytesSync(encodePng(image));
Barcode

Command line usage #

Install the barcode command

pub global activate barcode_image

run it

barcode

or

pub run barcode_image:barcode
0
likes
150
points
13
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Barcode generation library for Dart that can generate barcodes using the image library.

License

Apache-2.0 (license)

Dependencies

args, barcode, meta, yjy_image_3_3_0

More

Packages that depend on yjy_barcode_image