SkillAgentSearch skills...

FMXBarcode

Generates a barcode image as svg-path (TPath.Data)

Install / Use

/learn @ivanovsergeyminsk/FMXBarcode
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

FMXBarcode

Generates a barcode image as svg-path (TPath.Data)

| Barcode type | Barcode | Supported | | --------------- | ----------- | ------------------ | | Linear | EAN-8 | :white_check_mark: | | | EAN-13 | :white_check_mark: | | | UPC-A | :white_check_mark: | | | UPC-E | :white_check_mark: | | | ITF-14 | :white_check_mark: | | | Code-128 | :white_check_mark: |
| | GS-128 | :white_check_mark: | | | Databar | :x: (future) | | Two dimensioanl | DataMatrix | :x: (future) | | | QR Code | :x: (future) | | | DotCode | :x: (future) | | Composite | | :x: (future) |

EAN8 EAN8

Using

Add the module:

uses
 Common.Barcode;

Get svg-path:

var
  SVGString: string;
begin
  SVGString := TBarcode.SVG(TBarcodeType.EAN8, '1234567');
end;

You can display the barcode through the TPath component:

var
 DisplayBarcode: TPath;
begin
//...
  DisplayBarcode.Data.Data := TBarcode.SVG(TBarcodeType.Code128, 'User:1234567');
//...
end;

Related Skills

View on GitHub
GitHub Stars12
CategoryDevelopment
Updated8mo ago
Forks5

Languages

Pascal

Security Score

87/100

Audited on Jul 15, 2025

No findings