我正在尝试使用pngquant压缩算法来压缩PNG图像在飞行使用WAMP。它们提供了一个(我认为)应该使用command line binary for Windows的PHP example,我已经将它放在system32文件夹中,我可以从命令行的任何地方访问它。
我采用了他们的例子,并将问题追溯到$compressed_png_content = shell_exec("pngquant --quality=$min_quality-$max_quality - < ".escapeshellarg( $path_to_png_file));行。我将其简化为var_dump(shell_exec('pngquant - < test.png'));,但它只输出前5个字符,尽管passthru('pngquant - < test.png');似乎将正确的输出作为字符串发送给用户。exec('pngquant - < test.png',$output); var_dump($output);似乎也捕获了正确的输出,但以数组的形式,我真的不知道如何将其转换回图像文件。我希望在一个变量中捕获输出,这样我就可以使用进一步的压缩算法和操作,并将其作为可下载文件发送给用户。
我已经在diferences between system() vs exec() vs shell_exec() vs passthru() vs proc_open() vs popen()上读过了。Shell_exec()似乎是正确的选择,但是它在php.net上说shell_exec()'s输出一个字符串。这会是一个问题吗?如何正确地将pngquant - < test.png命令输出捕获到变量?
发布于 2017-06-01 02:28:59
使用PNGQuant的PHP (php-pngquant)代替,我遇到了同样的问题,这个非官方的包装器最终拯救了我。
function compress_image($source_path, $destination_path, $quality){
$instance = new PNGQuant();
// Change the path to the binary of pngquant, for example in windows would be (with an example path):
$instance->setBinaryPath("E:\\wamp64\\www\\testing\\pngquant\\pngquant.exe")
// Other options of PNGQuant here
->execute();
// Set the path to the image to compress
$result = $instance->setImage($source_path)
// Overwrite output file if exists, otherwise pngquant will generate output ...
->overwriteExistingFile()
// As the quality in pngquant isn't fixed (it uses a range)
// set the minimum quality to 60
->setQuality(60, $quality)
// Retrieve RAW data from pngquant
->getRawOutput();
$exit_code = $result["statusCode"];
// if exit code is equal to 0 then everything went right !
if($exit_code == 0){
$rawImage = imagecreatefromstring($result["imageData"]);
// Example Save the PNG Image from the raw data into a file or do whatever you want.
imagepng($rawImage , $destination_path);
echo "Image succesfully compressed, do something with the raw Data";
}else{
echo "Something went wrong (status code $exit_code) with description: ". $instance->getErrorTable()[(string) $exit_code];
}
} 发布于 2016-06-16 23:32:05
右文本:"pngquant --force --ext .png --quality=$min_quality-$max_quality ".escapeshellarg( $path_to_png_file)
https://stackoverflow.com/questions/36579368
复制相似问题