imagecreatefromstring() 関数の使用法
マニュアルの説明: imagecreatefromstring - 文字列内の画像ストリームから新しい画像を作成します
私は次のように書きました:
PHP コード
<!--
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
-->
imagecreatefromstring("http://i3.sinaimg.cn/home/deco/2009/0330/logo_home.gif");
エラー:
imagecreatefromstring() [function.imagecreatefromstring]: データが認識される形式ではありません
この関数のパラメータはどのように記述すべきですか?
ありがとうございます!
-----解決策---------
そのパラメータは画像文字列です。
マニュアルを参照: http://php.net/manual/en/function.imagecreatefromstring.php
------解決策------------------
imagecreate - 新しいパレットベースの画像を作成します
imagecreatetruecolor - 新しい True Color イメージを作成します
imagecreatefromstring - 文字列内の画像ストリームから画像リソースを作成します。
自分がどの状況に陥っているかを確認してください。