Skip to content

Instantly share code, notes, and snippets.

@mgng
Created March 7, 2014 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgng/9405683 to your computer and use it in GitHub Desktop.
Save mgng/9405683 to your computer and use it in GitHub Desktop.
imagick で ico 作成でエラー
<?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 ...
<?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