使用php imagick库创建QR码图像

时间:2011-12-29 15:18:19

标签: php qr-code imagick

enter image description here

您好,

我们正在使用imagick进行不同的图像处理,并要求添加 QR水印到底。

现在我只能找到使用GD2库的PHP QR Code library

  

纯粹在PHP中实现,除GD2外没有外部依赖

是否有使用想象力创建 QR码的php代码段或

2 个答案:

答案 0 :(得分:8)

查看PHP QR代码库,只有一个文件(我认为)可以访问GD库: qrimage.php 。因此,通过imagick将该文件更改为输出并使用PHP QR Code的其余部分。

下面是我写的替换 qrimage.php 的可能的想象输出文件。但是,我无法测试此代码,因为我在Windows上,无法安装imagick。

有人可以调试一下,并修改此帖子并进行任何更正吗?

<?php
/*
 * PHP QR Code encoder
 *
 * Image output of code using GD2
 *
 * PHP QR Code is distributed under LGPL 3
 * Copyright (C) 2010 Dominik Dzienia <deltalab at poczta dot fm>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */

    define('QR_IMAGE', true);

    class QRimage {

        //----------------------------------------------------------------------
        public static function png($frame, $filename = false, $pixelPerPoint = 4, $outerFrame = 4,$saveandprint=FALSE) 
        {
            $image = self::image($frame, $pixelPerPoint, $outerFrame, "png", 85, $filename, $saveandprint);
        }

        //----------------------------------------------------------------------
        public static function jpg($frame, $filename = false, $pixelPerPoint = 8, $outerFrame = 4, $q = 85) 
        {
            $image = self::image($frame, $pixelPerPoint, $outerFrame, "jpeg", $q, $filename, $saveandprint);
        }

        //----------------------------------------------------------------------
        private static function image($frame, $pixelPerPoint = 4, $outerFrame = 4, 
            $format = "png", $quality = 85, $filename = FALSE, $saveandprint = FALSE) 
        {
            $imgH = count($frame);
            $imgW = strlen($frame[0]);

            $col[0] = new ImagickPixel("white");
            $col[1] = new ImagickPixel("black");

            $image = new Imagick();
            $image->newImage($imgW, $imgH, $col[0]);

            $image->setCompressionQuality($quality);
            $image->setImageFormat($format); 

            $draw = new ImagickDraw();
            $draw->setFillColor($col[1]);

            for($y=0; $y<$imgH; $y++) {
                for($x=0; $x<$imgW; $x++) {
                    if ($frame[$y][$x] == '1') {
                        $draw->point($x,$y); 
                    }
                }
            }

            $image->drawImage($draw);
            $image->borderImage($col[0],$outerFrame,$outerFrame);
            $image->scaleImage( $imgW * $pixelPerPoint, 0 );

            if ($filename === FALSE) {
                Header("Content-type: image/jpeg");
                echo $image;
            } else {
                if($saveandprint===TRUE){
                    $image->writeImages($filename, true);        
                    Header("Content-type: image/" . $format);
                    echo $image;
                } else {
                    echo $image;
                }
            }
        }    
    }

有一个名为 phpqrcode.php 的合并文件,其中包含整个 qrimage.php ,因此您要么必须重新合并该文件,要么替换相关部分。

如果您对上述代码使用不同的文件名,则必须更改文件 qrlib.php merge.php 中的引用。

答案 1 :(得分:0)

我测试了上面的实现并且它有效。 有一个错误:您错过了在最终图像大小中添加外框。

$image->scaleImage( ($imgW + 2*$outerFrame) * $pixelPerPoint, 0 );

此外,在这种情况下,似乎GD库比ImageMagick快得多。

我使用GD和想象创建相同的50个随机qr代码。 我隔离的部分是QR码生成的,所以实际上使用了QRimage :: png。

我只测试了一代人。 这些是我的结果:

GD:

  • 最短时间:0,0148401260 s
  • 最长时间:0,0211210251 s
  • 平均值:0,0167747593 s

ImageMagick:

  • min time:0,0799968243 s
  • 最长时间:0,1147611141 s
  • 平均值:0,0918840790 s

在最终的代码中,这有点不同。代码的另一部分需要运行0.15s才能运行,并且在大量代码上它会产生影响(我将QRcode :: png改为:每个qrcode ith GD为0.17s,每个代码为0.24s with imagemagick)