PHPePub\Core\EPub::getBookSize PHP Method

getBookSize() public method

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