Skip to content

Commit b5ff125

Browse files
committed
🚿
1 parent 10ed887 commit b5ff125

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/imagickConvertSVGtoPNG.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function dump(string|null $file = null):string{
6666

6767
$imageData = $im->getImageBlob();
6868

69-
$im->destroy();
69+
$im->clear();
7070
$this->saveToFile($imageData, $file);
7171

7272
if($base64){
@@ -77,7 +77,7 @@ public function dump(string|null $file = null):string{
7777
throw new QRCodeOutputException('unable to detect mime type');
7878
}
7979

80-
$imageData = $this->toBase64DataURI($imageData);
80+
$imageData = $this->toBase64DataURI($imageData, $mime);
8181
}
8282

8383
return $imageData;

src/Data/Number.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public static function decodeSegment(BitBuffer $bitBuffer, int $versionNumber):s
107107
}
108108

109109
$result .= intdiv($threeDigitsBits, 100);
110-
$result .= (($threeDigitsBits / 10) % 10);
110+
$result .= (intdiv($threeDigitsBits, 10) % 10);
111111
$result .= ($threeDigitsBits % 10);
112112

113113
$length -= 3;

0 commit comments

Comments
 (0)