AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Thema durchsuchen
Ansicht
Themen-Optionen

Problem mit Zint Barcode-Generator

Ein Thema von Oliver Voß · begonnen am 23. Aug 2010 · letzter Beitrag vom 13. Apr 2011
 
Benutzerbild von chaosben
chaosben

Registriert seit: 27. Apr 2005
Ort: Görlitz
1.358 Beiträge
 
Delphi XE2 Professional
 
#2

AW: Problem mit Zint Barcode-Generator

  Alt 24. Aug 2010, 06:38
Naja ... ich gebe zu, das ist wenig tricky, aber vom Entwickler so geplant.
Zitat von http://www.zint.org.uk/zintSite/Manual.aspx?page=11:
An extra feature is available for Data Matrix symbols which allows Zint to automatically resize the symbol as required but also prevents Zint from using rectangular symbols. To set this mode at the command line use the option --square and when using the API set the value option_3 = DM_SQUARE
Lange Rede kurzer Sinn:
Delphi-Quellcode:
var myBmp :TBitMap;
    ZintBarcode1 :TZintBarcode;
begin
  ZintBarcode1 := TZintBarcode.Create;
  myBmp :=TBitmap.Create;

  ZintBarcode1.BarcodeType := tBARCODE_DATAMATRIX;
  ZintBarcode1.Option3 := 100;
  ZintBarcode1.Data := '123456789012345';
  ZintBarcode1.GetBarcode(myBmp);
  Image1.Picture.Bitmap := myBmp;

  ZintBarcode1.Free;
  myBmp.Free;
end;
Benjamin Schwarze
If I have seen further it is by standing on the shoulders of Giants. (Isaac Newton)
  Mit Zitat antworten Zitat
 


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 01:15 Uhr.
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz