Spatie\PdfToImage\Pdf::__construct PHP Method

__construct() public method

public __construct ( string $pdfFile )
$pdfFile string The path to the pdffile.
    public function __construct($pdfFile)
    {
        if (!file_exists($pdfFile)) {
            throw new PdfDoesNotExist();
        }
        $this->pdfFile = $pdfFile;
    }