-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issue with heif and add test for it
- Loading branch information
1 parent
487028b
commit b283888
Showing
3 changed files
with
44 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
try { | ||
$tmpFile = __DIR__.'/imagick-format-support-detection-'.uniqid('avif', true).'.avif'; | ||
$image = new \Imagick(); | ||
$image->newImage(1, 1, new \ImagickPixel('red')); | ||
$image->writeImage('avif'.':'.$tmpFile); | ||
unlink($tmpFile); | ||
|
||
return 0; | ||
} catch (\Exception $e) { | ||
return 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters