Demonstration - PDF417

Capable of containing large amounts of data in a variety of characters.
Used mainly for identification cards, inventory, and transport.
Dimensions of this barcode can be set; also contains a truncated version.
* 30 character limit for this demo.
import { BakeryColor, BakeryFont } from '@barcode-bakery/barcode-react';
import { BakeryPdf417 } from '@barcode-bakery/barcode-react/pdf417';

export default function Home() {
  const colorBlack = new BakeryColor(0, 0, 0);
  const colorWhite = new BakeryColor(255, 255, 255);

  return <BakeryPdf417
    scale={2}
    foregroundColor={colorBlack}
    backgroundColor={colorWhite}
    text='PDF417'
  >;
}