php实现生成code128条形码的方法详解

2025-05-29 0 16

本文实例讲述了php实现生成code128条形码的方法。分享给大家供大家参考,具体如下:

效果图:

php实现生成code128条形码的方法详解

?

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
<?php

class BarCode128 {

const STARTA = 103;

const STARTB = 104;

const STARTC = 105;

const STOP = 106;

private $unit_width = 1; //单位宽度 缺省1个象素

private $is_set_height = false;

private $width = -1;

private $heith = 35;

private $quiet_zone = 6;

private $font_height = 15;

private $font_type = 4;

private $color =0x000000;

private $bgcolor =0xFFFFFF;

private $image = null;

private $codes = array("212222","222122","222221","121223","121322","131222","122213","122312","132212","221213","221312","231212","112232","122132","122231","113222","123122","123221","223211","221132","221231","213212","223112","312131","311222","321122","321221","312212","322112","322211","212123","212321","232121","111323","131123","131321","112313","132113","132311","211313","231113","231311","112133","112331","132131","113123","113321","133121","313121","211331","231131","213113","213311","213131","311123","311321","331121","312113","312311","332111","314111","221411","431111","111224","111422","121124","121421","141122","141221","112214","112412","122114","122411","142112","142211","241211","221114","413111","241112","134111","111242","121142","121241","114212","124112","124211","411212","421112","421211","212141","214121","412121","111143","111341","131141","114113","114311","411113","411311","113141","114131","311141","411131","211412","211214","211412","2331112");

private $valid_code = -1;

private $type ='B';

private $start_codes =array('A'=>self::STARTA,'B'=>self::STARTB,'C'=>self::STARTC);

private $code ='';

private $bin_code ='';

private $text ='';

public function __construct($code='',$text='',$type='B')

{

if (in_array($type,array('A','B','C')))

$this->setType($type);

else

$this->setType('B');

if ($code !=='')

$this->setCode($code);

if ($text !=='')

$this->setText($text);

}

public function setUnitWidth($unit_width)

{

$this->unit_width = $unit_width;

$this->quiet_zone = $this->unit_width*6;

$this->font_height = $this->unit_width*15;

if (!$this->is_set_height)

{

$this->heith = $this->unit_width*35;

}

}

public function setFontType($font_type)

{

$this->font_type = $font_type;

}

public function setBgcolor($bgcoloe)

{

$this->bgcolor = $bgcoloe;

}

public function setColor($color)

{

$this->color = $color;

}

public function setCode($code)

{

if ($code !='')

{

$this->code= $code;

if ($this->text ==='')

$this->text = $code;

}

}

public function setText($text)

{

$this->text = $text;

}

public function setType($type)

{

$this->type = $type;

}

public function setHeight($height)

{

$this->height = $height;

$this->is_set_height = true;

}

private function getValueFromChar($ch)

{

$val = ord($ch);

try

{

if ($this->type =='A')

{

if ($val > 95)

throw new Exception(' illegal barcode character '.$ch.' for code128A in '.__FILE__.' on line '.__LINE__);

if ($val < 32)

$val += 64;

else

$val -=32;

}

elseif ($this->type =='B')

{

if ($val < 32 || $val > 127)

throw new Exception(' illegal barcode character '.$ch.' for code128B in '.__FILE__.' on line '.__LINE__);

else

$val -=32;

}

else

{

if (!is_numeric($ch) || (int)$ch < 0 || (int)($ch) > 99)

throw new Exception(' illegal barcode character '.$ch.' for code128C in '.__FILE__.' on line '.__LINE__);

else

{

if (strlen($ch) ==1)

$ch .='0';

$val = (int)($ch);

}

}

}

catch(Exception $ex)

{

errorlog('die',$ex->getMessage());

}

return $val;

}

private function parseCode()

{

$this->type=='C'?$step=2:$step=1;

$val_sum = $this->start_codes[$this->type];

$this->width = 35;

$this->bin_code = $this->codes[$val_sum];

for($i =0;$i<strlen($this->code);$i+=$step)

{

$this->width +=11;

$ch = substr($this->code,$i,$step);

$val = $this->getValueFromChar($ch);

$val_sum += $val;

$this->bin_code .= $this->codes[$val];

}

$this->width *=$this->unit_width;

$val_sum = $val_sum%103;

$this->valid_code = $val_sum;

$this->bin_code .= $this->codes[$this->valid_code];

$this->bin_code .= $this->codes[self::STOP];

}

public function getValidCode()

{

if ($this->valid_code == -1)

$this->parseCode();

return $this->valid_code;

}

public function getWidth()

{

if ($this->width ==-1)

$this->parseCode();

return $this->width;

}

public function getHeight()

{

if ($this->width ==-1)

$this->parseCode();

return $this->height;

}

public function createBarCode($image_type ='png',$file_name=null)

{

$this->parseCode();

$this->image = ImageCreate($this->width+2*$this->quiet_zone,$this->heith + $this->font_height);

$this->bgcolor = imagecolorallocate($this->image,$this->bgcolor >> 16,($this->bgcolor >> 8)&0x00FF,$this->bgcolor & 0xFF);

$this->color = imagecolorallocate($this->image,$this->color >> 16,($this->color >> 8)&0x00FF,$this->color & 0xFF);

ImageFilledRectangle($this->image, 0, 0, $this->width + 2*$this->quiet_zone,$this->heith + $this->font_height, $this->bgcolor);

$sx = $this->quiet_zone;

$sy = $this->font_height -1;

$fw = 10; //編號為2或3的字體的寬度為10,為4或5的字體寬度為11

if ($this->font_type >3)

{

$sy++;

$fw=11;

}

$ex = 0;

$ey = $this->heith + $this->font_height - 2;

for($i=0;$i<strlen($this->bin_code);$i++)

{

$ex = $sx + $this->unit_width*(int) $this->bin_code{$i} -1;

if ($i%2==0)

ImageFilledRectangle($this->image, $sx, $sy, $ex,$ey, $this->color);

$sx =$ex + 1;

}

$t_num = strlen($this->text);

$t_x = $this->width/$t_num;

$t_sx = ($t_x -$fw)/2; //目的为了使文字居中平均分布

for($i=0;$i<$t_num;$i++)

{

imagechar($this->image,$this->font_type,6*$this->unit_width +$t_sx +$i*$t_x,0,$this->text{$i},$this->color);

}

if (!$file_name)

{

header("Content-Type: image/".$image_type);

}

switch ($image_type)

{

case 'jpg':

case 'jpeg':

Imagejpeg($this->image,$file_name);

break;

case 'png':

Imagepng($this->image,$file_name);

break;

case 'gif':

break;

Imagegif($this->image,$file_name);

default:

Imagepng($this->image,$file_name);

break;

}

}

}

$barcode = new BarCode128('88888888');

$barcode->createBarCode();

?>

附加一个强大的条码生成扩展包:
http://www.barcodebakery.com/

php实现生成code128条形码的方法详解

PS:这里再为大家推荐一款相似的条形码生成工具供大家参考使用:

在线条形码(一维码)生成/实时预览工具:https://tool.zzvips.com/t/barcode/

希望本文所述对大家PHP程序设计有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 php实现生成code128条形码的方法详解 https://www.kuaiidc.com/94093.html

相关文章

发表评论
暂无评论