php 使用imagick库把PDF转成PNG格式的解决办法
内容摘要
这篇文章主要为大家详细介绍了php 使用imagick库把PDF转成PNG格式的简单示例,具有一定的参考价值,可以用来参考一下。
对php通过imagick库把PDF转成PNG格式对此感兴趣的朋友,
对php通过imagick库把PDF转成PNG格式对此感兴趣的朋友,
文章正文
这篇文章主要为大家详细介绍了php 使用imagick库把PDF转成PNG格式的简单示例,具有一定的参考价值,可以用来参考一下。
对php通过imagick库把PDF转成PNG格式对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* 通过imagick库把PDF转成PNG格式
*
* @param
* @arrange 五一二笔记网: www.idcnote.com
**/
function pdf2png($PDF,$Path){
if(!extension_loaded('imagick')){
return false;
}
if(!file_exists($PDF)){
return false;
}
$IM = new imagick();
$IM->setResolution(120,120);
$IM->setCompressionQuality(100);
$IM->readImage($PDF);
foreach ($IM as $Key => $Var){
$Var->setImageFormat('png');
$Filename = $Path.'/'.md5($Key.time()).'.png';
if($Var->writeImage($Filename) == true){
$Return[] = $Filename;
}
}
return $Return;
}
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 使用imagick库把PDF转成PNG格式的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释