How to check a PNG for grayscale/alpha color type?

前端 未结 3 1318
旧时难觅i
旧时难觅i 2021-01-12 09:07

PHP and GD seem to have trouble creating images from PNGs of type greyscale with alpha when using imagecreatefrompng(). The results are incredibly distorted.

相关标签:
3条回答
  • 2021-01-12 09:27

    i landed here today searching for a way to tell (via php) if a specific .png image is an alpha-png one -
    David Jones' answer points to the right direction, really easy to implement in php:

    file_get_contents to load just that 25' byte (there it is, indeed!), and
    ord() to get its ASCII value, to test it (against '6' in my case)

    if(ord(file_get_contents($alpha_png_candidate, NULL, NULL, 25, 1)) == 6) {
      is_alpha_png_so_do_something();
      }
    

    actually i needed that for assuring backward compatibility with ie6 within cms-user-generated-pages, to replace all alpha-png < img > tags with inline-block < spans > - the alpha-png file will then be served as variable for the ms-proprietary css property filter

    .alpha_png_span{
      filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
        src='$alpha_png_candidate', sizingMethod='crop')
      }
    

    ...and it all works, so thanks!

    paolo

    0 讨论(0)
  • 2021-01-12 09:45

    The colour type of a PNG image is stored at byte offset 25 in the file (counting from 0). So if you can get hold of the actual bytes of the PNG file, simply look at byte 25 (I don't do PHP, so I don't know how to do that):

    • 0 - greyscale
    • 2 - RGB
    • 3 - RGB with palette
    • 4 - greyscale + alpha
    • 6 - RGB + alpha

    The preceding byte (offset 24) gives the number of bits per channel. See the PNG spec for more details.

    In a slight twist a PNG file may have "1-bit alpha" (like GIFs) by having a tRNS chunk (when it is colour type 0 2 or 3).

    0 讨论(0)
  • 2021-01-12 09:47

    see this answer :

    Another usefull note for those using ImageCreateFromPng: PHP and GD do not recognize grayscale/alpha images.

    So if you use grayscale images with transparency between 0% and 100%, then save the image as RGB.

    At least this is true for PHP Version 4.4.2-1 and in 5.1.2-1 with pictures made with GIMP 2.2.8.

    url : http://php.net/manual/en/function.imagecreatefrompng.php

    0 讨论(0)
提交回复
热议问题