Démonstration - Aztec
Capable de contenir un grand nombre de données dans une variété de caractères.
Peut être utilisé soit en version Compact ou Full.
Support l'utilisation d'Extended Channel Interpretation (ECI).
import { BakeryColor, BakeryFont } from '@barcode-bakery/barcode-react';
import { BakeryAztec } from '@barcode-bakery/barcode-react/aztec';
export default function Home() {
const colorBlack = new BakeryColor(0, 0, 0);
const colorWhite = new BakeryColor(255, 255, 255);
return <BakeryAztec
scale={2}
foregroundColor={colorBlack}
backgroundColor={colorWhite}
text='Aztec'
>;
}