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


PHP Image_Canvas::show方法代码示例

本文整理汇总了PHP中Image_Canvas::show方法的典型用法代码示例。如果您正苦于以下问题:PHP Image_Canvas::show方法的具体用法?PHP Image_Canvas::show怎么用?PHP Image_Canvas::show使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Image_Canvas的用法示例。


在下文中一共展示了Image_Canvas::show方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: show

 /**
  * Output the result of the canvas
  *
  * @param array $param Parameter array
  * @abstract
  */
 function show($param = false)
 {
     parent::show($param);
     pdf_end_page($this->_pdf);
     pdf_close($this->_pdf);
     $buf = pdf_get_buffer($this->_pdf);
     $len = strlen($buf);
     header('Content-type: application/pdf');
     header('Content-Length: ' . $len);
     header('Content-Disposition: inline; filename=image_graph.pdf');
     print $buf;
     pdf_delete($this->_pdf);
 }
开发者ID:ballistiq,项目名称:revive-adserver,代码行数:19,代码来源:PDF.php

示例2: show

 /**
  * Output the result of the canvas
  *
  * @param array $param Parameter array
  */
 function show($param = false)
 {
     parent::show($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>';
     header('Content-Type: image/svg+xml');
     header('Content-Disposition: inline; filename = "' . basename($_SERVER['PHP_SELF'], '.php') . '.svg"');
     print $output;
 }
开发者ID:Spark-Eleven,项目名称:revive-adserver,代码行数:13,代码来源:SVG.php

示例3: show

 /**
  * Output the result of the canvas
  *
  * @param array $param Parameter array
  */
 function show($param = false)
 {
     parent::show($param);
     $attrs = isset($param['attrs']) && is_array($param['attrs']) ? $this->_getAttributes($param['attrs']) : null;
     $output = $this->getData($param);
     header('Content-Type: image/svg+xml');
     header('Content-Disposition: inline; filename = "' . basename($_SERVER['PHP_SELF'], '.php') . '.svg"');
     print $output;
 }
开发者ID:ronaldoof,项目名称:geocloud2,代码行数:14,代码来源:SVG.php

示例4: show

 /**
  * Output the result of the canvas to the browser
  *
  * @param array $params Parameter array, the contents and meaning depends on the actual Canvas
  * @abstract
  */
 function show($params = false)
 {
     parent::show($params);
     if (count($this->_map) > 0) {
         print $this->toHtml($params);
     }
 }
开发者ID:villos,项目名称:tree_admin,代码行数:13,代码来源:ImageMap.php

示例5: show

 /**
  * Display the SWF
  *
  * @param array $param Parameter array
  *
  * @return void
  */
 function show($param = false)
 {
     parent::show($param);
     $this->_canvas->output();
 }
开发者ID:roojs,项目名称:pear,代码行数:12,代码来源:SWF.php


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