将PHP shell_exec输出到变量

时间:2017-01-09 19:20:49

标签: php pngquant

我正在尝试使用以下代码(source)在PHP中使用pngquant:

<?php 


function compress_png($path_to_png_file, $max_quality = 90)
{
    if (!file_exists($path_to_png_file)) {
        throw new Exception("File does not exist: $path_to_png_file");
    }

    // guarantee that quality won't be worse than that.
    $min_quality = 60;

    // '-' makes it use stdout, required to save to $compressed_png_content variable
    // '<' makes it read from the given file path
    // escapeshellarg() makes this safe to use with any path

    // maybe with more memory ?
    ini_set("memory_limit", "128M");

    // The command should look like: pngquant --quality=60-90 - < "image-original.png"
    $comm = "pngquant --quality=$min_quality-$max_quality - < ".escapeshellarg(    $path_to_png_file);

    $compressed_png_content = shell_exec($comm);

    var_dump($compressed_png_content);

    if (!$compressed_png_content) {
        throw new Exception("Conversion to compressed PNG failed. Is pngquant 1.8+ installed on the server?");
    }

    return $compressed_png_content;
}

echo compress_png("image-original.png");

该函数应该检索shell_exec函数的输出。使用输出我应该能够创建一个新的png文件,但是浏览器中shell_exec的输出已损坏:�PNG

注意:在没有PHP的控制台中成功执行命令(pngquant --quality=60-90 - < "image-original.png"

如果我从控制台执行php代码,我会收到以下消息:

  

错误:将图像写入stdout(16)

失败

我在没有任何解决方案的情况下到处搜索,有人可以帮助我或者知道可能导致问题的原因吗?

1 个答案:

答案 0 :(得分:0)

The php-pngquant wrapper allow您要将PNGQuant生成的图片中的内容直接检索到变量using the getRawOutput method

<?php 

use ourcodeworld\PNGQuant\PNGQuant;

$instance = new PNGQuant();

$result = $instance
    ->setImage("/image/to-compress.png")
    ->setQuality(50,80)
    ->getRawOutput();

// Result is an array with the following structure
// $result = array(
//    'statusCode' => 0,
//    'tempFile' => "/tmp/example-temporal.png",
//    'imageData' => [String] (use the imagecreatefromstring function to get the binary data)
//)

// Get the binary data of the image
$imageData = imagecreatefromstring($result["imageData"]);

// Save the PNG Image from the raw data into a file or do whatever you want.
imagepng($imageData , '/result_image.png');

在引擎盖下,包装器在PNGQuant中提供一个临时文件作为输出参数,然后pngquant将压缩的图像写入该文件,并将在结果数组中检索其内容。您仍然可以使用结果数组的statusCode索引验证PNGQuant的退出代码。