本文整理汇总了PHP中TCPDF2DBarcode::getBarcodePNGData方法的典型用法代码示例。如果您正苦于以下问题:PHP TCPDF2DBarcode::getBarcodePNGData方法的具体用法?PHP TCPDF2DBarcode::getBarcodePNGData怎么用?PHP TCPDF2DBarcode::getBarcodePNGData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TCPDF2DBarcode
的用法示例。
在下文中一共展示了TCPDF2DBarcode::getBarcodePNGData方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAsPng
protected function getAsPng($code, $type)
{
$barcode = new \TCPDF2DBarcode($code, $type);
return $barcode->getBarcodePNGData(6, 6, array(0, 0, 0));
}
示例2: max
$h = 2/5 * $w;
$barcodeObj = new TCPDF2DBarcode($payload, $requested_code_type);
$barcodeObj->getBarcodePNG($w, $h, [$red, $green, $blue]);
break;
case 'QR':
/** Handle raw-looking QR **/
break;
case 'FANCYQR':
/** @TODO handle fancy QR code creation * */
$imagePadding=12; // @IMPORTANT - make an even number
$std_wh = max([$w, $h]);
$w = $size; $h = $size;
$barcodeObj = new TCPDF2DBarcode($payload, 'QRCODE,H');
$imgData = $barcodeObj->getBarcodePNGData($w, $h, [$red, $green, $blue]);
$imgSize = getimagesizefromstring($imgData);
// get png-8 image
$img = imagecreatetruecolor($imgSize[0]+$imagePadding,$imgSize[1]+$imagePadding);
imagefill($img, 0, 0, imagecolorallocate($img,255,255,255));
// write temp file
$temp_filename = TMP_DIR . date('YmdHis') . '__TEMP.PNG';
file_put_contents($temp_filename, $imgData);
$imgsrc = imagecreatefrompng($temp_filename);
// convert to png-24
$margin = -1 * ($imagePadding/2);
imagecopy($img,$imgsrc,0,0,$margin,$margin,$imgSize[0]+$imagePadding,$imgSize[1]+$imagePadding);
// config
$matrixPointSize = min(max((int)$size, 1), 50);
// blur factor
$i = 50;