barcodelib icon indicating copy to clipboard operation
barcodelib copied to clipboard

C# Barcode Image Generation Library

Results 42 barcodelib issues
Sort by recently updated
recently updated
newest added

This Nuget package has a dependency on `System.Drawing.Common`. The `System.Drawing.Common` Nuget used to be supported via libgdiplus however, as of .NET 6, Microsoft made the decision to make a breaking...

Some breaking changes: - `barcode.EncodedImage` becomes `barcode.Encode()`. - `barcode.GetImageData` uses standard enum. - `barcode.SaveImage` becomes `using var image = barcode.Encode(); image.Save` - `barcode.GetSizeOfImage` becomes `using var image = barcode.Encode(); image.GetSizeOfImage`...

Also calling Encode multiple times does not dispose previously generated image. I think the `_Encoded_Image` field should be removed from the `Barcode` class. Methods like `GetSizeOfImage` and `SaveImage` are just...

Hello, Unhandelled exception while trying to generate barcode(39) for input that contains underscore(_). Any workaround for this issue? ![image](https://user-images.githubusercontent.com/3823688/145968371-a6ee89e2-0974-4584-ac70-be3c3e7e5888.png) Thanks

Hello, Any plans on supporting QR Code? (https://en.wikipedia.org/wiki/QR_code)

Could it support GS1 128 / EAN128?

We have been using `NetBarcode` until now, and are currently looking into switching to their project. We have noticed a difference in the output. For the topmost Code 39 barcode,...

Hi, i am work on a Zebra Zpl Viewer in the `zpl` language it is possible to set the `Wide bar to narrow bar width`. I search a configuration for...

Originally added in PR #20 Seems to have been removed in version 2.0.0. Original issue #19

enhancement

**Barcodelib:** 2.40 **Platform:** net5.0-windows When I try to create the instance of Barcode class before I run wInforms application then it draws a huge font on main form. Here is...