PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

imagepalettetotruecolor - パレット形式の画像を true color に変換する | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

imagepalettetotruecolor

(PHP 5 >= 5.5.0, PHP 7)

imagepalettetotruecolorパレット形式の画像を true color に変換する

説明

bool imagepalettetotruecolor ( resource $src )

imagecreate() のような関数で作ったパレット形式の画像を、 imagecreatetruecolor() で作るような true color 形式に変換します。

パラメータ

image

imagecreatetruecolor() のような画像作成関数が返す画像リソース。

返り値

変換に成功した場合や、元画像が既に true color だった場合に TRUE を返します。 それ以外の場合に FALSE を返します。

例1 画像リソースの true color への変換

<?php
// 過去との互換性のための処理
if(!function_exists('imagepalettetotruecolor'))
{
    function 
imagepalettetotruecolor(&$src)
    {
        if(
imageistruecolor($src))
        {
            return(
true);
        }

        
$dst imagecreatetruecolor(imagesx($src), imagesy($src));

        
imagecopy($dst$src0000imagesx($src), imagesy($src));
        
imagedestroy($src);

        
$src $dst;

        return(
true);
    }
}

// ヘルパークロージャ
$typeof = function() use($im)
{
    echo 
'typeof($im) = ' . (imageistruecolor($im) ? 'true color' 'palette'), PHP_EOL;
};

// パレット形式の画像を作ります
$im imagecreate(100100);
$typeof();

// true color に変換します
imagepalettetotruecolor($im);
$typeof();

// メモリを解放します
imagedestroy($im);
?>

上の例の出力は以下となります。

typeof($im) = palette
typeof($im) = true color

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「imagepalettetotruecolor - パレット形式の画像を true color に変換する」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | imagepalettetotruecolor - パレット形式の画像を true color に変換する」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: