The bit-depth tag has no wiki summary.
3
votes
2answers
365 views
How to PHP get bit depth of a given PNG image file?
In PHP code, given an .png image path, I need to detect the bit-depth of that image. How can I do that?
I've tried to use getImageSize() and read the bits as below sample code but it always returns ...
2
votes
3answers
2k views
How can I check the color depth of a Bitmap?
I'm working on an application that prints a folder of image files, including JPEG and TIFF. The TIFF images are usually Black and White (1bpp).
After loading the image, I want to determine if the ...
1
vote
2answers
880 views
Reduce bit-depth of PNG files from the command line
What command or series of commands could I execute from the CLI to recursively traverse a directory tree and reduce the bit-depth of all PNG files within that tree from 24bpp to 16bpp? Commands should ...
0
votes
1answer
124 views
Bit depth issues on bitmaps and screens (white is not white)
I have a transparent PNG image representing a bluetooth icon with a blue glow, exported from photoshop:
On a HTC Desire, a simple imageview is created, and the PNG is used as a bitmap.
If the ...
0
votes
0answers
199 views
How to get bit depth from image PNG? [closed]
Possible Duplicate:
How to PHP get bit depth of a given PNG image file?
<?php
class ImageType {
//type of image
const JPG = 'image/jpeg';
const BMP = 'image/x-ms-bmp';
...