當前位置: 首頁>>代碼示例>>PHP>>正文


PHP imagick::setSize方法代碼示例

本文整理匯總了PHP中imagick::setSize方法的典型用法代碼示例。如果您正苦於以下問題:PHP imagick::setSize方法的具體用法?PHP imagick::setSize怎麽用?PHP imagick::setSize使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在imagick的用法示例。


在下文中一共展示了imagick::setSize方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: showThumb

 /**
  * Displays the thumbnail on the STDOUT
  *
  * @param bool $pdfLogo
  * @param bool $showPreview
  * @return bool
  */
 public function showThumb($pdfLogo = false, $showPreview = true)
 {
     if ($this->thumbSize[0] < 64) {
         $showPreview = false;
     }
     if ($showPreview) {
         $divba = 3;
         if ($this->thumbSize[0] >= 64) {
             $pdfLogo = true;
         }
         if ($this->thumbSize[0] >= 200) {
             $divba = 4;
         }
         $this->showImg($this->thumbSize[0], $pdfLogo, round($this->thumbSize[0] / $divba));
     } else {
         $cachename = $this->fullpath . $this->thumbSize[0] . $this->thumbSize[1] . $this->pageid . ".png";
         $cacheimg = $this->cachepath . '/' . $this->_nameFilter($cachename);
         if ($this->thumbSize[0] == 128 && class_exists('Imagick')) {
             try {
                 if (!($im = $this->_dataCacher($cachename))) {
                     $this->_logToFile('File not in cache');
                     $im = new imagick($this->fullpath . '[' . $this->pageid . ']');
                     $im->setSize(128, 128);
                     $im->setImageFormat("png");
                     $im->adaptiveResizeImage($this->thumbSize[0], $this->thumbSize[1]);
                     // add a border to the image
                     $color = new ImagickPixel();
                     $color->setColor("rgb(200,200,200)");
                     $im->borderImage($color, 1, 1);
                     // draw the PDF icon on top of the PDF preview
                     if ($pdfLogo) {
                         $pdflogo = new Imagick($this->assetsPath . $this->deficon);
                         //$pdflogo->setSize(10,10);
                         $pdflogo->adaptiveResizeImage(60, 60);
                         $im->compositeImage($pdflogo, Imagick::COMPOSITE_DEFAULT, 1, 1);
                     }
                     $this->_dataCacher($cachename, $im, true);
                     $im->writeImage($cacheimg);
                 } else {
                     $this->_logToFile('File IS cached');
                 }
                 header("Content-Type: image/png");
                 header("Content-Disposition: attachment; filename=\"" . $cachename . ".png\";");
                 $this->getRawFile($cacheimg, false, 'PNG', true);
             } catch (Exception $e) {
                 return parent::showThumb();
             }
         } else {
             return parent::showThumb();
         }
     }
 }
開發者ID:Cryde,項目名稱:sydney-core,代碼行數:59,代碼來源:Pdf.php


注:本文中的imagick::setSize方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。