Created
March 7, 2014 05:18
-
-
Save mgng/9405683 to your computer and use it in GitHub Desktop.
imagick で ico 作成でエラー
This file contains hidden or 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
<?php | |
$img = new \Imagick(); | |
$img->readImageBlob( file_get_contents( "./test.jpg" ) ); | |
$img->setFormat( "ico" ); | |
// ↑ Fatal error: Uncaught exception 'ImagickException' with message 'no decode delegate for this image format ... |
This file contains hidden or 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
<?php | |
$img = new \Imagick(); | |
$img->setFormat( "ico" ); // 先にsetFormatで解決 | |
$img->readImageBlob( file_get_contents( "./test.jpg" ) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment