1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
#============================================================+
# File name : c39object.rb
# Begin : 2002-07-31
# Last Update : 2004-12-29
# Author : Karim Mribti [barcode@mribti.com]
# : Nicola Asuni [info@tecnick.com]
# Version : 0.0.8a 2001-04-01 (original code)
# License : GNU LGPL (Lesser General Public License) 2.1
# http://www.gnu.org/copyleft/lesser.txt
# Source Code : http://www.mribti.com/barcode/
#
# Description : Code 39 Barcode Render Class for PHP using
# the GD graphics library.
# Code 39 is an alphanumeric bar code that can
# encode decimal number, case alphabet and some
# special symbols.
#
# NOTE:
# This version contains changes by Nicola Asuni:
# - porting to Ruby
# - code style and formatting
# - automatic php documentation in PhpDocumentor Style
# (www.phpdoc.org)
# - minor bug fixing
#============================================================+
#
# Code 39 Barcode Render Class.<br>
# Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.
# @author Karim Mribti, Nicola Asuni
# @name BarcodeObject
# @package com.tecnick.tcpdf
# @@version 0.0.8a 2001-04-01 (original code)
# @since 2001-03-25
# @license http://www.gnu.org/copyleft/lesser.html LGPL
#
#
# Code 39 Barcode Render Class.<br>
# Code 39 is an alphanumeric bar code that can encode decimal number, case alphabet and some special symbols.
# @author Karim Mribti, Nicola Asuni
# @name BarcodeObject
# @package com.tecnick.tcpdf
# @@version 0.0.8a 2001-04-01 (original code)
# @since 2001-03-25
# @license http://www.gnu.org/copyleft/lesser.html LGPL
#
class C39Object extends BarcodeObject {
#
# Class Constructor.
# @param int $Width Image width in pixels.
# @param int $Height Image height in pixels.
# @param int $Style Barcode style.
# @param int $Value value to print on barcode.
#
def __construct($Width, $Height, $Style, $Value)
parent::__construct($Width, $Height, $Style);
@mValue = $Value;
@mChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-.#$/+%";
@mCharSet = array (
# 0 # "000110100",
# 1 # "100100001",
# 2 # "001100001",
# 3 # "101100000",
# 4 # "000110001",
# 5 # "100110000",
# 6 # "001110000",
# 7 # "000100101",
# 8 # "100100100",
# 9 # "001100100",
# A # "100001001",
# B # "001001001",
# C # "101001000",
# D # "000011001",
# E # "100011000",
# F # "001011000",
# G # "000001101",
# H # "100001100",
# I # "001001100",
# J # "000011100",
# K # "100000011",
# L # "001000011",
# M # "101000010",
# N # "000010011",
# O # "100010010",
# P # "001010010",
# Q # "000000111",
# R # "100000110",
# S # "001000110",
# T # "000010110",
# U # "110000001",
# V # "011000001",
# W # "111000000",
# X # "010010001",
# Y # "110010000",
# Z # "011010000",
# - # "010000101",
# . # "110000100",
# SP# "011000100",
/*# # "010010100",
# $ # "010101000",
# / # "010100010",
# + # "010001010",
# % # "000101010"
);
end
#
# Returns the character index.
# @param char $char character.
# @return int character index or -1 in case of error.
# @access private
#
def GetCharIndex($char)
for ($i=0;$i<44;$i++)
if (@mChars[$i] == $char)
return $i;
end
end
return -1;
end
#
# Returns barcode size.
# @param int $xres Horizontal resolution.
# @return barcode size.
# @access private
#
def GetSize($xres)
$len = @mValue.length;
if ($len == 0) {
@mError = "Null value";
return false;
end
for ($i=0;$i<$len;$i++)
if (GetCharIndex(@mValue[$i]) == -1 || @mValue[$i] == '*')
# The asterisk is only used as a start and stop code#
@mError = "C39 not include the char '".@mValue[$i]."'";
return false;
end
end
# Start, Stop is 010010100 == '*' #
$StartSize = BCD_C39_NARROW_BAR# $xres# 6 + BCD_C39_WIDE_BAR# $xres# 3;
$StopSize = BCD_C39_NARROW_BAR# $xres# 6 + BCD_C39_WIDE_BAR# $xres# 3;
$CharSize = BCD_C39_NARROW_BAR# $xres# 6 + BCD_C39_WIDE_BAR# $xres# 3; # Same for all chars#
return $CharSize# $len + $StartSize + $StopSize + # Space between chars# BCD_C39_NARROW_BAR# $xres# ($len-1);
end
#
# Draws the start code.
# @param int $DrawPos Drawing position.
# @param int $yPos Vertical position.
# @param int $ySize Vertical size.
# @param int $xres Horizontal resolution.
# @return int drawing position.
# @access private
#
def DrawStart($DrawPos, $yPos, $ySize, $xres)
# Start code is '*'#
$narrow = BCD_C39_NARROW_BAR# $xres;
$wide = BCD_C39_WIDE_BAR# $xres;
@DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $wide;
@DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $narrow;
@DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
@DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
@DrawSingleBar($DrawPos, $yPos, $narrow, $ySize);
$DrawPos += $narrow;
$DrawPos += $narrow; # Space between chars#
return $DrawPos;
end
#
# Draws the stop code.
# @param int $DrawPos Drawing position.
# @param int $yPos Vertical position.
# @param int $ySize Vertical size.
# @param int $xres Horizontal resolution.
# @return int drawing position.
# @access private
#
def DrawStop($DrawPos, $yPos, $ySize, $xres)
# Stop code is '*'#
$narrow = BCD_C39_NARROW_BAR# $xres;
$wide = BCD_C39_WIDE_BAR# $xres;
@DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $wide;
@DrawSingleBar($DrawPos, $yPos, $narrow , $ySize);
$DrawPos += $narrow;
$DrawPos += $narrow;
@DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
@DrawSingleBar($DrawPos, $yPos, $wide , $ySize);
$DrawPos += $wide;
$DrawPos += $narrow;
@DrawSingleBar($DrawPos, $yPos, $narrow, $ySize);
$DrawPos += $narrow;
return $DrawPos;
end
#
# Draws the barcode object.
# @param int $xres Horizontal resolution.
# @return bool true in case of success.
#
def DrawObject($xres)
$len = @mValue.length;
$narrow = BCD_C39_NARROW_BAR# $xres;
$wide = BCD_C39_WIDE_BAR# $xres;
if (($size = GetSize($xres))==0)
return false;
end
$cPos = 0;
if (@mStyle & BCS_ALIGN_CENTER) $sPos = (integer)((@mWidth - $size ) / 2);
elsif (@mStyle & BCS_ALIGN_RIGHT) $sPos = @mWidth - $size;
else $sPos = 0;
# Total height of bar code -Bars only-#
if (@mStyle & BCS_DRAW_TEXT) $ysize = @mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2 - GetFontHeight(@mFont);
else $ysize = @mHeight - BCD_DEFAULT_MAR_Y1 - BCD_DEFAULT_MAR_Y2;
# Draw text#
if (@mStyle & BCS_DRAW_TEXT)
if (@mStyle & BCS_STRETCH_TEXT)
for ($i=0;$i<$len;$i++)
@DrawChar(@mFont, $sPos+($narrow*6+$wide*3)+($size/$len)*$i,
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, @mValue[$i]);
else# Center#
$text_width = GetFontWidth(@mFont)# @mValue.length;
@DrawText(@mFont, $sPos+(($size-$text_width)/2)+($narrow*6+$wide*3),
$ysize + BCD_DEFAULT_MAR_Y1 + BCD_DEFAULT_TEXT_OFFSET, @mValue);
end
end
$DrawPos = @DrawStart($sPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
do {
$c = GetCharIndex(@mValue[$cPos]);
$cset = @mCharSet[$c];
@DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[0] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[0] == '0') ? $narrow : $wide;
$DrawPos += ($cset[1] == '0') ? $narrow : $wide;
@DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[2] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[2] == '0') ? $narrow : $wide;
$DrawPos += ($cset[3] == '0') ? $narrow : $wide;
@DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[4] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[4] == '0') ? $narrow : $wide;
$DrawPos += ($cset[5] == '0') ? $narrow : $wide;
@DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[6] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[6] == '0') ? $narrow : $wide;
$DrawPos += ($cset[7] == '0') ? $narrow : $wide;
@DrawSingleBar($DrawPos, BCD_DEFAULT_MAR_Y1, ($cset[8] == '0') ? $narrow : $wide , $ysize);
$DrawPos += ($cset[8] == '0') ? $narrow : $wide;
$DrawPos += $narrow; # Space between chars#
$cPos += 1;
end while ($cPos<$len);
$DrawPos = @DrawStop($DrawPos, BCD_DEFAULT_MAR_Y1 , $ysize, $xres);
return true;
end
}
#============================================================+
# END OF FILE
#============================================================+
|