PHPePub\Core\EPub::getBookSize PHP Méthode

getBookSize() public méthode

Return the finalized book size.
public getBookSize ( ) : string
Résultat string
    function getBookSize()
    {
        if (!$this->isFinalized) {
            $this->finalize();
        }
        return $this->zip->getArchiveSize();
    }