当前位置: 首页>>代码示例>>PHP>>正文


PHP Cpdf::addImagePng方法代码示例

本文整理汇总了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;
 }
开发者ID:rifaiaja,项目名称:orpsystem,代码行数:64,代码来源:cpdf_adapter.cls.php


注:本文中的Cpdf::addImagePng方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。