| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="utf-8"?>
- <?xml-stylesheet type="text/xsl" href="../Xsl/doc2html.xsl"?>
- <doc>
- <title>Photoshop Document</title>
- <chapter>
- <title>Photoshop Document</title>
- <par>
- The .PSD (Photoshop Document) format stores an image with support
- for most imaging options available in Adobe Photoshop program.
- These include layers with masks, color spaces,
- ICC profiles, transparency, text, alpha channels, etc.
- </par>
- <par>
- Loading and saving of indexed, grayscale, RGB(A), HDR (FP32), and CMYK
- (auto converted to RGB) images is supported. Non-HDR gray, RGB,
- and CMYK images can have 8bit or 16bit color channels.
- There is no support for loading mono images, duotone images are treated
- like grayscale images, and multichannel and CIE Lab images are loaded as
- RGB images but without actual conversion to RGB color space.
- Also no layer information is loaded.
- </par>
-
- <table>
- <title>Photoshop Document File Format Support</title>
- <row>
- <th>Format</th>
- <th>TImageFormat equivalent</th>
- <th>Loading</th>
- <th>Saving</th>
- </row>
- <row>
- <td>8 bit indexed</td>
- <td><icode>ifIndex8</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>24 bit RGB</td>
- <td><icode>ifR8G8B8</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>48 bit RGB</td>
- <td><icode>ifR16G16B16</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>32 bit ARGB</td>
- <td><icode>ifA8R8G8B8</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>64 bit ARGB</td>
- <td><icode>ifA16R16G16B16</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>8 bit grayscale</td>
- <td><icode>ifGray8</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>16 bit grayscale</td>
- <td><icode>ifGray16</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>16 bit grayscale + alpha</td>
- <td><icode>ifA8Gray8</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>32 bit grayscale + alpha</td>
- <td><icode>ifA16Gray16</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>32 bit R FP32</td>
- <td><icode>ifR32F</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>128 bit ARGB FP32</td>
- <td><icode>ifA32B32G32R32F</icode></td>
- <td>Yes</td><td>Yes</td>
- </row>
- <row>
- <td>other types</td>
- <td><icode>depends on type</icode></td>
- <td>Yes/No</td><td>No</td>
- </row>
- </table>
-
- </chapter>
- </doc>
|