selective-php / image-type

Image type (format) detection for PHP
MIT License
7 stars 4 forks source link

PCD - Kodak Photo CD #57

Closed odan closed 5 years ago

odan commented 5 years ago

PCD - Kodak Photo CD

Extension: *.pcd

Magic bytes

The ASCII string "PCD_IPI" appears in the file, usually(?) at offset 2048.

Header contains PCD_IPI and PCD_OPA.

overview = compareBytes(pcdFile->header.signature,"PCD_OPA") == 0;

if ((compareBytes(pcdFile->ipiHeader.ipiSignature,"PCD_IPI") != 0) && !overview) {
    strncpy(errorString, "That is not a valid PCD file", kPCDMaxStringLength*3-1);
    return false;
}

Source:

odan commented 5 years ago

Very old format and hard to identify.