添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
完美的鸵鸟  ·  once-init - npm·  2 月前    · 
谦和的移动电源  ·  PrivacyIDEA on Debian ...·  4 月前    · 
善良的麦片  ·  辽宁日报·  6 月前    · 

通过 mpdf 制作物流面单,电子标签。
mpdf地址: https://github.com/mpdf/mpdf
http://mpdf.github.io/installation-setup/installation-v7-x.html

require_once(DOCUROOT."/include/mpdf/vendor/autoload.php");//mpdf库
require_once(DOCUROOT."/include/phpqrcode/phpqrcode.php");//二维码生成库
//创建mpdf对象,设置参数

    $mpdf = new \Mpdf\Mpdf([
        'mode' => 'utf-8',
        'format' => [60,100],
        'allow_html_optional_endtags' => true,
        'orientation' => 'L',
        'margin_left' => 0,
        'margin_right' => 0,
        'margin_top' => 0,
        'margin_bottom' => 0,
        'margin_header' => 0,
        'margin_footer' => 0
    $mpdf->SetDisplayMode('fullpage');
    $mpdf->autoLangToFont = true;
    $mpdf->autoScriptToLang = true;
    if($type==1){
        $file = '/images/common/calca_title.png';
    } else {
        $file = '/images/common/all_bg.png';
   //$productinfo 是产品信息数组,循环生成多个产品标签
    foreach($productinfo as $k=>$v){
        $name = $v['product_name'];//产品名
        $namenumber = strlen($name);
        if($namenumber>120){
            $name = substr($name,0,105).'...';
        $serial_number = $v['serial_number'];//条码
        $product_number = $v['product_number'];//编码
        $unit = $v['product_unit'];//单位
        $price = number_format(round($v['product_price_rmb']/$usd_exc,2), 2);//美金价格
        $priceexp = explode('.',$price);
        $pricebefore = $priceexp[0];//小数点前
        $priceafter = $priceexp[1];//小数点后
        $url=$domain.$v['url'];
        $path = DOCUROOT.'/data/qrcode/'.$v['id'].'-qrcode.png';
        //echo $url;die;
        QRcode::png($url,$path,QR_ECLEVEL_L,10,1,false);//二维码生成方法;
        $code = $path;
        if($type==1){
            $mpdf->Image($file, 40, 40);
            if($namenumber<40){
               //设置排版布局通过WriteHTML方法
                $mpdf->WriteHTML('<h1 style="font-family:montserrat;margin: 0; padding: 0; font-size: 14px; line-height: 18px; font-weight: 200;padding: 25px 25px 10px 25px;">'.$name.'</h1>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 5px 25px;"><strong>'.$product_number.'</strong></h2>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 20px 25px;"><strong>'.$serial_number.'</strong></h2>');
            } else {
                $mpdf->WriteHTML('<h1 style="font-family:montserrat;margin: 0; padding: 0; font-size: 14px; line-height: 18px; font-weight: 200;padding: 10px 25px 5px 25px;">'.$name.'</h1>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 2px 25px;"><strong>'.$product_number.'</strong></h2>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 5px 25px;"><strong>'.$serial_number.'</strong></h2>');
            $mpdf->WriteHTML('<p style="font-family:montserrat;position: absolute; left:25px; bottom: 10px; font-size: 22px; font-weight: 400;">$<b style="font-size: 30px; font-weight: 800;">'.$pricebefore.'</b>.'.$priceafter.'<span style="font-size:20px;">/'.$unit.'</span></p>');
            //$mpdf->WriteHTML('<img src="code.png" style="position: absolute; top:0;right: 30px; bottom:0px; width: 60px; height: 60px;">');
            $mpdf->Image($code, 70, 33.5,22,22,'png','',true,false);
            $mpdf->WriteHTML('<div style="position: absolute; left:0; bottom:0;width:100%; height:10px; background:#000;"></div>');
        } else {
            /*$mpdf->SetDefaultBodyCSS('background', "url($file)");
            $mpdf->SetDefaultBodyCSS('background-image-resize', 6);*/
            if($namenumber<40){
                $mpdf->WriteHTML('<h1 style="font-family:montserrat;margin: 0; padding: 0; font-size: 14px; line-height: 18px; font-weight: 200;padding: 40px 25px 8px 25px;">'.$name.'</h1>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 5px 25px;"><strong>'.$product_number.'</strong></h2>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 20px 25px;"><strong>'.$serial_number.'</strong></h2>');
            } else {
                $mpdf->WriteHTML('<h1 style="font-family:montserrat;margin: 0; padding: 0; font-size: 14px; line-height: 18px; font-weight: 200;padding: 25px 25px 8px 25px;">'.$name.'</h1>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 5px 25px;"><strong>'.$product_number.'</strong></h2>');
                $mpdf->WriteHTML('<h2 style="font-family:montserrat;margin: 0; padding: 0; font-size: 12px; line-height: 14px; padding: 0px 25px 20px 25px;"><strong>'.$serial_number.'</strong></h2>');
            $mpdf->WriteHTML('<p style="font-family:montserrat;position: absolute; left:25px; bottom: 30px; font-size: 22px; font-weight: 400;">$<b style="font-size: 30px; font-weight: 800;">'.$pricebefore.'</b>.'.$priceafter.'<span style="font-size:20px;">/'.$unit.'</span></p>');
            $mpdf->Image($code, 67, 27,25,25,'png','',true,false);
    $mpdf->Output('productlable.pdf','I');
标签: PHP , mpdf

非特殊说明,文章均为原创。

栏目分类

  • 自媒体 15
  • Zblog 2
  • 网赚 2
  • 搬砖 39
  • Python 4
  • 头条 2
  • 套路 1
  • 知识产权 1
  • 学习 8
  • 短视频 0
  • 抖音运营 2
  • 快手运营 1
  • 淘宝运营 2
  • 小程序 1
  • 动态 ~

  • 1984年生的高以翔,年仅35岁,又帅又高,11月27日凌晨,在宁波录制节目《追我吧》,不幸去世!娱乐圈为何如此拼命! 2019年11月29日 11:03:43

  • 2019年9月10日,马云将不再担任集团董事局主席,由现任集团CEO张勇接任。 2019年09月11日 08:45:20

  • 阿里巴巴20亿美金收购网易考拉 以后考拉的东西假货的概率会上升吗? 2019年08月16日 10:11:20

  • 支付宝调整花呗还款日 2019年07月30日 21:43:30

  • 标签云

    Python mysql Apache Linux centos7 uniapp 微信小程序 Zblog Zblog插件 iptables

    友情链接

    宁采陈博客 C4D模型网 冯阳光seo win10系统 福州seo