Explorar o código

:octocat: that makes more sense

codemasher %!s(int64=6) %!d(string=hai) anos
pai
achega
f33c615ae9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      examples/QRImageWithText.php

+ 1 - 1
examples/QRImageWithText.php

@@ -88,7 +88,7 @@ class QRImageWithText extends QRImage{
 
 		$fontColor = \imagecolorallocate($this->image, ...$textColor);
 		$w         = \imagefontwidth($textSize);
-		$x         = ($bgWidth - round((strlen($text) * $w))) / 2;
+		$x         =  round(($bgWidth - strlen($text) * $w) / 2);
 
 		// loop through the string and draw the letters
 		foreach(str_split($text) as $i => $chr){