Spatie\PdfToImage\Pdf::getNumberOfPages PHP Method

getNumberOfPages() public method

Get the number of pages in the pdf file.
public getNumberOfPages ( ) : integer
return integer
    public function getNumberOfPages()
    {
        return (new \Imagick($this->pdfFile))->getNumberImages();
    }