Jump to content

Tbarcode < Fresh - 2024 >

uses tbarcode, tbarcode1D; procedure GenerateBarcode(Canvas: TCanvas; const Text: string; X, Y: Integer); var BC: TBarCode1D; begin BC := TBarCode1D.Create(nil); try BC.Typ := bcCode128; // Set barcode type BC.Code := Text; // Input data BC.Angle := 0; // Rotation (0, 90, 180, 270) BC.Ratio := 2.0; // Wide/Narrow bar ratio BC.Height := 50; // Bar height in pixels BC.Modul := 2; // Module width (pixels per narrow bar) BC.Checksum := True; // Enable/disable checksum

You can use this on a forum (Lazarus/Delphi), GitHub, or a blog. TBarcode – Efficient Barcode Generation Component tbarcode

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.