Skip to content

Commit

Permalink
Adapt
Browse files Browse the repository at this point in the history
  • Loading branch information
olivervogel committed Oct 27, 2024
1 parent 1e9b5ea commit 2bfd3b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/Unit/HeicTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ public function testEncoding(): void
$encoded = $imagick->getImagesBlob();

$this->assertMediaType('image/heic', $encoded);
$this->assertTrue(strlen($encoded) > 0);

echo "<pre>";
var_dump(mb_strlen($encoded));
echo "</pre>";
exit;

// re-read
// $imagick = new Imagick();
Expand Down

0 comments on commit 2bfd3b5

Please sign in to comment.