Lines Matching refs:barcodeData

187 …$barcodeData = '<div style="font-size:0;position:relative;width:'.($bcd['maxw'] * $w).'px;height:'…
196 …$barcodeData .= '<div style="background-color:'.$color.';width:'.$bw.'px;height:'.$bh.'px;position…
200 $barcodeData .= '</div>'."\n";
205 …$barcodeData = '<div style="font-size:0;position:relative;width:'.($w).'px;height:'.($bcd['maxw'] …
214 …$barcodeData .= '<div style="background-color:'.$color.';width:'.$bw.'px;height:'.$bh.'px;position…
218 $barcodeData .= '</div>'."\n";
221 return $barcodeData;
286 $barcodeData = ob_get_clean();
302 $barcodeData = file_get_contents($savePath);
307 return $barcodeData;
321 $barcodeData = '<'.'?'.'xml version="1.0" standalone="no"'.'?'.'>'."\n";
322 …$barcodeData .= '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.…
323 …$barcodeData .= '<svg width="'.round(($bcd['maxw'] * $w), 3).'" height="'.$h.'" version="1.1" xmln…
324 $barcodeData .= "\t".'<desc>'.strtr($bcd['code'], $repstr).'</desc>'."\n";
325 $barcodeData .= "\t".'<g id="bars" fill="'.$color.'" stroke="none">'."\n";
334 $barcodeData .= "\t\t".'<rect x="'.$x.'" y="'.$y.'" width="'.$bw.'" height="'.$bh.'" />'."\n";
338 $barcodeData .= "\t".'</g>'."\n";
339 $barcodeData .= '</svg>'."\n";
345 $barcodeData = '<'.'?'.'xml version="1.0" standalone="no"'.'?'.'>'."\n";
346 …$barcodeData .= '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.…
347 …$barcodeData .= '<svg width="'.$w.'" height="'.round(($bcd['maxw'] * $h), 3).'" version="1.1" xmln…
348 $barcodeData .= "\t".'<desc>'.strtr($bcd['code'], $repstr).'</desc>'."\n";
349 $barcodeData .= "\t".'<g id="bars" fill="'.$color.'" stroke="none">'."\n";
358 $barcodeData .= "\t\t".'<rect x="'.$x.'" y="'.$y.'" width="'.$bw.'" height="'.$bh.'" />'."\n";
362 $barcodeData .= "\t".'</g>'."\n";
363 $barcodeData .= '</svg>'."\n";
378 if (!@file_put_contents($savePath, $barcodeData))
382 return $barcodeData;
387 $barcodeData = $this->getBarcodeHtmlData();
390 header('Content-Length: '.strlen($barcodeData));
394 echo $barcodeData;
399 $barcodeData = $this->getBarcodePngData();
402 header('Content-Length: '.strlen($barcodeData));
406 echo $barcodeData;
411 $barcodeData = $this->getBarcodeSvgData();
414 header('Content-Length: '.strlen($barcodeData));
418 echo $barcodeData;