duanhongqiong9460 2011-10-24 09:28
浏览 286
已采纳

如何在PHP中识别CMYK图像

Can anyone tell me how to identify an image if it is in CMYK or RGB using PHP ?

  • 写回答

5条回答 默认 最新

  • douhu3424 2011-10-24 09:40
    关注

    Take a good look at getimagesize.

    Example:

    <?php
    $size = getimagesize($filename);
    $fp = fopen($filename, "rb");
    if ($size && $fp) {
        header("Content-type: {$size['mime']}");
        fpassthru($fp);
        exit;
    } else {
        // error
    }
    ?>
    

    It returns an array with 7 elements.

    Index 0 and 1 contains respectively the width and the height of the image.

    Index 2 is one of the IMAGETYPE_XXX constants indicating the type of the image.

    Index 3 is a text string with the correct height="yyy" width="xxx" string that can be used directly in an IMG tag.

    mime is the correspondant MIME type of the image. This information can be used to deliver images with the correct HTTP Content-type header: channels will be 3 for RGB pictures and 4 for CMYK pictures.

    bits is the number of bits for each color.

    For some image types, the presence of channels and bits values can be a bit confusing. As an example, GIF always uses 3 channels per pixel, but the number of bits per pixel cannot be calculated for an animated GIF with a global color table.

    On failure, FALSE is returned.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能