84 if (($pValue >= 1) || is_null($pValue)) {
85 $this->_zoomScale = $pValue;
87 throw new Exception(
"Scale must be greater than or equal to 1.");
111 if (($pValue >= 1) || is_null($pValue)) {
112 $this->_zoomScaleNormal = $pValue;
114 throw new Exception(
"Scale must be greater than or equal to 1.");
123 $vars = get_object_vars($this);
124 foreach ($vars as $key => $value) {
125 if (is_object($value)) {
126 $this->$key = clone $value;
128 $this->$key = $value;