return dechex(rand(0, pow(16, 10)));
}
+ public function ignore()
+ {
+ return false;
+ }
+
public function getSurface()
{
return $this->width * $this->height;
$this->init();
}
+ public function isOutsidePage()
+ {
+ if ($this->top > $this->compiler->height) {
+ return true;
+ }
+ if ($this->left > $this->compiler->width) {
+ return true;
+ }
+ }
+
/**
* @param int $initialOrder
*/
protected $maxzoom_default = 2;
protected $_groups = null;
+ public function ignore()
+ {
+ return parent::ignore() || $this->isOutsidePage();
+ }
+
public function getGroups()
{
if (null === $this->_groups) {