Plej bona libera Strikokodentrepreno
Generi komercan aŭ aktivan strikodon - Code 128, EAN, UPC, ISBN - kiel pura PNG. Senpage, sen aliĝo.
Kiel ĝi funkcias
- Enigu datumojn. Type the number or text to encode in the barcode.
- Elekti tipon. Elektu la simbologion — Kodo 128, EAN-13, UPC-A, Kodo 39 aŭ ISBN.
- Elŝuti PNG. La strikodo aperas tuj - elŝutu ĝin kiel PNG por presi aŭ meti.
Pri tiu ilo
Barcode Generator creates a standard- compliant barcode from your data and gives you a clean PNG to print or place. Choose the symbology to match where it will be scanned - Code 128 for general use, EAN- 13 or UPC- A for retail products, Code 39 for asset tags, ISBN for books. The tool validates your input against each type' s rules, so you find out before printing if an EAN needs more digits. No watermark, no subscription, generated on the fly and never stored.
Kion homoj uzas ĝin por
- Krei UPC aŭ EAN strikodon por produkto
- Presi etikedojn Code 128 por inventaro aŭ aktivaĵoj
- Generi ISBN- strikodon por libro
- Krei etikedon Code 39 por interna spurado
Programisto API
Aŭtomate funkciigu tiun ilon per via propra kodo. Sendu POST-peton al la malsupra fino kaj ricevu la saman rezulton kiel la reta ilo. Ĝi estas limigita laŭ IP kaj ne bezonas aliĝon - API-ŝlosiloj por pli altaj limoj venas.
https://best.free/api/tools/barcode-generator/
| Parametroj | Ekzemplo | Necesa | Notoj |
|---|---|---|---|
text |
0123456789012 |
Jes | Data to encode. |
symbology |
code128 |
Ne | code128 / code39 / ean13 / ean8 / upca / isbn13. |
curl -X POST https://best.free/api/tools/barcode-generator/ \
-H 'Content-Type: application/json' \
-d '{"text": "0123456789012", "symbology": "code128"}'
import requests
r = requests.post(
"https://best.free/api/tools/barcode-generator/",
json={"text": "0123456789012", "symbology": "code128"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/barcode-generator/", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ text: "0123456789012", symbology: "code128" }),
});
const data = await r.json();
console.log(data);
Respondo: JSON with a base64 PNG data URI in "image".
{"ok": true, "image": "data:image/png;base64,iVBORw0KG..."}