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


PHP Image_Canvas::save方法代碼示例

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


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

示例1: save

 /**
  * Output the result of the canvas
  *
  * @param array $param Parameter array
  * @abstract
  */
 function save($param = false)
 {
     parent::save($param);
     pdf_end_page($this->_pdf);
     pdf_close($this->_pdf);
     $buf = pdf_get_buffer($this->_pdf);
     $len = strlen($buf);
     $fp = @fopen($param['filename'], 'wb');
     if ($fp) {
         fwrite($fp, $buf, strlen($buf));
         fclose($fp);
     }
     pdf_delete($this->_pdf);
 }
開發者ID:ballistiq,項目名稱:revive-adserver,代碼行數:20,代碼來源:PDF.php

示例2: save

 /**
  * Output the result of the canvas
  *
  * @param array $param Parameter array
  */
 function save($param = false)
 {
     parent::save($param);
     $output = '<?xml version="1.0" encoding="iso-8859-1"?>' . "\n" . '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"' . "\n\t" . ' "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">' . "\n" . '<svg width="' . $this->_width . '" height="' . $this->_height . '" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">' . "\n" . ($this->_defs ? '    <defs>' . "\n" . $this->_defs . '    </defs>' . "\n" : '') . $this->_elements . '</svg>';
     $file = fopen($param['filename'], 'w+');
     fwrite($file, $output);
     fclose($file);
 }
開發者ID:Spark-Eleven,項目名稱:revive-adserver,代碼行數:13,代碼來源:SVG.php

示例3: save

 /**
  * Output the result of the canvas
  *
  * @param array $param Parameter array
  */
 function save($param = false)
 {
     parent::save($param);
     $output = $this->getData($param);
     $file = fopen($param['filename'], 'w+');
     fwrite($file, $output);
     fclose($file);
 }
開發者ID:ronaldoof,項目名稱:geocloud2,代碼行數:13,代碼來源:SVG.php

示例4: save

 /**
  * Save the result of the canvas to a file
  *
  * Parameter array:
  * 'filename': string The file to output to
  * @param array $params Parameter array, the contents and meaning depends on the actual Canvas
  * @abstract
  */
 function save($params = false)
 {
     parent::save($params);
     $file = fopen($param['filename'], 'w+');
     fwrite($file, $this->toHtml($params));
     fclose($file);
 }
開發者ID:villos,項目名稱:tree_admin,代碼行數:15,代碼來源:ImageMap.php

示例5: save

 /**
  * Save the SWF to a file
  *
  * @param array $param Parameter array
  *              array('filename'    => 'canvas.swf',
  *                    'compression' => 0)
  *
  *              The compression level can be a value between 0 and 9,
  *              defining the SWF compression similar to gzip compression.
  *              This parameter is only available as of Flash MX (6).
  *
  * @return void
  */
 function save($param = false)
 {
     if (!isset($param['compression'])) {
         $param['compression'] = 0;
     }
     parent::save($param);
     $this->_canvas->save($param['filename'], $param['compression']);
 }
開發者ID:roojs,項目名稱:pear,代碼行數:21,代碼來源:SWF.php


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