Can anybody tell me where to find the different "png" image types. The reason I ask is I'm using an image upload script. The PHP function:
$FileType = $_FILES["UserFile"]["type"];
extracts the image type. I have found two types:
$FileType == "image/png" w/Netscape
$FileType == "image/x-png" w/Internet Explorer
I know with jpeg images there are six or eight image types. I'm just needing to know where I can look to find all of the possible "png" image types so I can hard code them into my script.
Thanks.