PHPめも

PHPで1次元のバーコードを生成します。

使用するツールは PHP Barcode Generator です。

PEARでは Image_Barcode2 があります。

<?php

require_once 'vendor/autoload.php';

$generator = new Picqer\Barcode\BarcodeGeneratorHTML();

/**
 * @param string $code code to print
 * @param string $type type of barcode
 * @param int $widthFactor Width of a single bar element in pixels.
 * @param int $totalHeight Height of a single bar element in pixels.
 * @param int|string $color Foreground color for bar elements (background is transparent).
 */
echo $generator->getBarcode('081231723897', $generator::TYPE_EAN_13, 2, 30, 'black');

バーコードの種類を調べる

バーコードの実物はあるけど使用されている種類がわからないという場合は以下のアプリで判別できました。
バーコードスキャナのプロ


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2021-09-19 (日) 19:09:35