Lines Matching defs:size
45 * @param array $size An array with two values defining the size.
49 public function setPageFormat($size, $orientation)
62 $size = $this->_getpagesize($size);
65 || $size[0] != $this->CurPageSize[0]
66 || $size[1] != $this->CurPageSize[1]
68 // New size or orientation
70 $this->w = $size[0];
71 $this->h = $size[1];
73 $this->w = $size[1];
74 $this->h = $size[0];
80 $this->CurPageSize = $size;
82 $this->PageInfo[$this->page]['size'] = array($this->wPt, $this->hPt);
89 * Give only one of the size parameters (width, height) to calculate the other one automatically in view to the
99 * @return array The size
142 * Get the size of a template.
144 * Give only one of the size parameters (width, height) to calculate the other one automatically in view to the
324 public function AddPage($orientation = '', $size = '', $rotation = 0)
329 parent::AddPage($orientation, $size, $rotation);
390 public function SetFont($family, $style = '', $size = 0)
392 parent::SetFont($family, $style, $size);
401 public function SetFontSize($size)
403 parent::SetFontSize($size);