Barryvdh\DomPDF\PDF::setPaper PHP Method

setPaper() public method

Set the paper size (default A4)
public setPaper ( string $paper, string $orientation = 'portrait' )
$paper string
$orientation string
    public function setPaper($paper, $orientation = 'portrait')
    {
        $this->paper = $paper;
        $this->orientation = $orientation;
        $this->dompdf->setPaper($paper, $orientation);
        return $this;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Set the paper size (default A4)
  *
  * @param string $paper
  * @param string $orientation
  * @return $this 
  * @static 
  */
 public static function setPaper($paper, $orientation = null)
 {
     return \Barryvdh\DomPDF\PDF::setPaper($paper, $orientation);
 }