本文整理汇总了PHP中Cpdf::addImagePng方法的典型用法代码示例。如果您正苦于以下问题:PHP Cpdf::addImagePng方法的具体用法?PHP Cpdf::addImagePng怎么用?PHP Cpdf::addImagePng使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cpdf
的用法示例。
在下文中一共展示了Cpdf::addImagePng方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: image
function image($img_url, $img_type, $x, $y, $w, $h)
{
//debugpng
if (DEBUGPNG) {
print '[image:' . $img_url . '|' . $img_type . ']';
}
$img_type = mb_strtolower($img_type);
switch ($img_type) {
case "jpeg":
case "jpg":
//debugpng
if (DEBUGPNG) {
print '!!!jpg!!!';
}
$this->_pdf->addJpegFromFile($img_url, $x, $this->y($y) - $h, $w, $h);
break;
case "png":
//debugpng
if (DEBUGPNG) {
print '!!!png!!!';
}
$this->_pdf->addPngFromFile($img_url, $x, $this->y($y) - $h, $w, $h);
break;
case "gif":
// Convert gifs to pngs
//DEBUG_IMG_TEMP
//if (0) {
if (method_exists($this->_pdf, "addImagePng")) {
//debugpng
if (DEBUGPNG) {
print '!!!gif addImagePng!!!';
}
//If optimization to direct png creation from gd object is available,
//don't create temp file, but place gd object directly into the pdf
if (method_exists($this->_pdf, "image_iscached") && $this->_pdf->image_iscached($img_url)) {
//If same image has occured already before, no need to load because
//duplicate will anyway be eliminated.
$img = null;
} else {
$img = @imagecreatefromgif($img_url);
if (!$img) {
return;
}
imageinterlace($img, 0);
}
$this->_pdf->addImagePng($img_url, $x, $this->y($y) - $h, $w, $h, $img);
} else {
//debugpng
if (DEBUGPNG) {
print '!!!gif addPngFromFile!!!';
}
$img_url = $this->_convert_gif_to_png($img_url);
$this->_pdf->addPngFromFile($img_url, $x, $this->y($y) - $h, $w, $h);
}
break;
default:
//debugpng
if (DEBUGPNG) {
print '!!!unknown!!!';
}
break;
}
return;
}