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 5f910ee commit 24f8960
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions tests/Unit/HeicTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,10 @@ public function testEncoding(): void
$imagick->setImageCompressionQuality(75);
$encoded = $imagick->getImagesBlob();


echo "<pre>";
var_dump($encoded);
echo "</pre>";
exit;
// $this->assertMediaType('image/heic', $encoded);

// re-read
// $imagick = new Imagick();
// $imagick->readImageBlob($encoded);
//
// $this->assertInstanceOf(Imagick::class, $imagick);
$imagick = new Imagick();
$imagick->readImageBlob($encoded);

$this->assertInstanceOf(Imagick::class, $imagick);
}
}

0 comments on commit 24f8960

Please sign in to comment.