biz-Streamマニュアル XMLページレイアウトタグ リファレンス 第11章 バーコード 11.10 UPC-A/E<barcode-upc-ae>

11.10 UPC-A/E<barcode-upc-ae>


11.10.1機能説明

UPCは、アメリカ、カナダで使用されている統一商品コードです。ヨーロッパのEANや日本のJANは、このUPCをもとに作られています。
UPCには、主にUPC-AとUPC-Eのふたつが利用されており、UPC-Aは12桁、UPC-Eは8桁で構成されています。

値の桁数により自動的にUPC-AとUPC-Eを切り替えます。
8桁以下:UPC-E のルールに従います。
9桁以上:UPC-A のルールに従います。
11桁以上:UPC-E に変換可能な場合、UPC-E、その他の場合、UPC-Aとします。



11.10.2属性説明

属性名指定説明指定内容初期値
name任意名前CDATA
x任意X座標CDATA0
y任意Y座標CDATA0
scale任意バーコードの比率CDATA0.8~2.01.0
height任意バーコードの高さCDATA数値指定22.85mm
addon任意アドオンシンボルCDATA
human-code任意ヒューマンコードの表示(Choice)true / falsetrue
left-zone任意左クワイエットゾーンの幅CDATA9
right-zone任意右クワイエットゾーンの幅CDATA9
orientation任意回転角度CDATA
  • (注)初期値:出荷時のXML デフォルト情報(default_values.properties)値を表します。ユーザにより値の変更が行われた場合は内容が異なります。


11.10.3記述例

barcode-upc-aeサンプル1

barcode-upc-aeサンプル1(『<biz-Stream_home>/sample/xml/barcode-UPC/barcodeUPC-AESample1.xml』)

<?xml version="1.0" encoding="UTF-8"?>
<!-- XML file created by biz-Stream Designer -->
<!-- biz-Stream Copyright BrainSellers.com Corp. -->
<Layout Name="barcodeUPC-AESample3" Width="160" Height="125" X="10" Y="10" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:bs="http://www.brainsellers.com/schema" xmlns:svg="http://www.brainsellers.com/schema" xmlns:form="http://www.brainsellers.com/schema" xmlns:pdf="http://www.brainsellers.com/schema" version="5.0.0">
    <!-- 枠線(青線) -->

    <GroupAlignment Horizon="left" Vertical="bottom" Vector="vertical" LineSpace="5px" LineColor="14,0,176" FillColor="204,204,204" Margin="start:5mm;end:5mm;top:5mm;bottom:5mm" Narrow="size">

        <!-- (1)12桁 チェックデジットあり -->
        <barcode-upc-ae name="barcode1" height="22.85mm" human-code="true" left-zone="9" right-zone="9">012345000058</barcode-upc-ae>

        <!-- (2)スケールを1.5倍 -->
        <barcode-upc-ae name="barcode2" scale="1.5" height="22.85mm" human-code="true" left-zone="9" right-zone="9">012345000058</barcode-upc-ae>

        <!-- (3)アドオンシンボルの指定 2桁又は5桁で指定 -->
        <barcode-upc-ae name="barcode3" height="22.85mm" human-code="true" left-zone="9" right-zone="9" addon="12">012345000058</barcode-upc-ae>

        <!-- (4)ヒューマンコードを非表示 -->
        <barcode-upc-ae name="barcode4" height="22.85mm" human-code="false" left-zone="9" right-zone="9">012345000058</barcode-upc-ae>

    </GroupAlignment>
    <GroupAlignment X="60" Horizon="left" Vertical="bottom" Vector="vertical" LineSpace="5px" LineColor="14,0,176" FillColor="204,204,204" Margin="start:5mm;end:5mm;top:5mm;bottom:5mm" Narrow="size">

        <!-- (5)8桁 チェックデジットあり -->
        <barcode-upc-ae name="barcode5" height="22.85mm" human-code="true" left-zone="9" right-zone="9">01234558</barcode-upc-ae>

        <!-- (6)スケールを1.5倍 -->
        <barcode-upc-ae name="barcode6" scale="1.5" height="22.85mm" human-code="true" left-zone="9" right-zone="9">01234558</barcode-upc-ae>

        <!-- (7)アドオンシンボルの指定 2桁又は5桁で指定 -->
        <barcode-upc-ae name="barcode7" height="22.85mm" human-code="true" left-zone="9" right-zone="9" addon="12">01234558</barcode-upc-ae>

        <!-- (8)ヒューマンコードを非表示 -->
        <barcode-upc-ae name="barcode8" height="22.85mm" human-code="false" left-zone="9" right-zone="9">01234558</barcode-upc-ae>

    </GroupAlignment>
</Layout>

生成されるPDF(『<biz-Stream_home>/sample/xml/barcode-UPC/barcodeUPC-AESample1.pdf』)


barcode-upc-aeサンプル1