X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Fincludes%2Fclass.graphic.inc;h=1c43674a58dea4142d36eace25ba1471340bc4c7;hb=bddfd188fc7b9c754623c0ffd978ca9f0c4fd4e5;hp=834ca37246c432f2c42b13c49e54a9fbedf62385;hpb=1019600a78e74485f965c2cfe7108ca49259de1b;p=fa-stable.git diff --git a/reporting/includes/class.graphic.inc b/reporting/includes/class.graphic.inc index 834ca372..1c43674a 100644 --- a/reporting/includes/class.graphic.inc +++ b/reporting/includes/class.graphic.inc @@ -1228,7 +1228,7 @@ class Chart { $digits = strlen(round($this->max_value)); $interval = pow(10, ($digits-1)); - $this->higher_value = round(($this->max_value - ($this->max_value % $interval) + $interval), 1); + $this->higher_value = round(($this->max_value - ((int)$this->max_value % $interval) + $interval), 1); $this->higher_value_str = $this->number_formated($this->higher_value, $this->dec1); } @@ -1388,7 +1388,7 @@ class Chart $size += 2; $string = str_replace(" ", " ", $string); } - imagettftext($img, $size, $angle, $x, $y + $alt, $col, $this->fontfile, $string); + imagettftext($img, $size, $angle, intval($x), $y + $alt, $col, $this->fontfile, $string); } function hex2rgb($hex)