Esempio n. 1
0
 /**
  * ISBN barcode draws two texts. So, we can adjust height...
  * 
  * @return int
  */
 public function getTotalHeight()
 {
     $height = parent::getTotalHeight();
     if ($this->options['showtext']) {
         $height += $this->getTextHeight();
     }
     return (int) \ceil($height);
 }