Source for file ImageExportFormat.php
Documentation is available at ImageExportFormat.php
* ImageExportFormat class
* @copyright (c) 1995-2008 by Steema Software SL. All Rights Reserved. <info@steema.com>
* @link http://www.steema.com
function __get( $property ) {
$method = "get{$property}";
function __set ( $property,$value ) {
$method = "set{$property}";
return $this->$method($value);
$r = $chart->getChartBounds();
$this->width = $r->width;
$this->height = $r->height;
if ((height != 0) && (width != 0)) {
chart.getExport().chartWidthHeightRatio = (double) width /
/* public function save($fileName) /*throws IOException {
$outfile = new File($fileName);
$ios = $this->ImageIO->createImageOutputStream($outfile);
public function save($ios) /* TODO throws IOException*/ {
|