// // PSDReader.java // /* OME Bio-Formats package for reading and converting biological file formats. Copyright (C) 2005-@year@ UW-Madison LOCI and Glencoe Software, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package loci.formats.in; import java.io.IOException; import loci.common.ByteArrayHandle; import loci.common.RandomAccessInputStream; import loci.formats.FormatException; import loci.formats.FormatReader; import loci.formats.FormatTools; import loci.formats.MetadataTools; import loci.formats.codec.CodecOptions; import loci.formats.codec.PackbitsCodec; import loci.formats.meta.MetadataStore; /** * PSDReader is the file format reader for Photoshop PSD files. * * <dl><dt><b>Source code:</b></dt> * <dd><a href="http://trac.openmicroscopy.org.uk/ome/browser/bioformats.git/components/bio-formats/src/loci/formats/in/PSDReader.java">Trac</a>, * <a href="http://git.openmicroscopy.org/?p=bioformats.git;a=blob;f=components/bio-formats/src/loci/formats/in/PSDReader.java;hb=HEAD">Gitweb</a></dd></dl> * * @author Melissa Linkert melissa at glencoesoftware.com */ public class PSDReader extends FormatReader { // -- Constants -- public static final String PSD_MAGIC_STRING = "8BPS"; // -- Fields -- /** Lookup table. */ private byte[][] lut; /** Offset to pixel data. */ private long offset; private int[][] lens; private boolean compressed = false; private int lastImageIndex = -1; private byte[] lastImage; // -- Constructor -- /** Constructs a new PSD reader. */ public PSDReader() { super("Adobe Photoshop", "psd"); domains = new String[] {FormatTools.GRAPHICS_DOMAIN}; suffixNecessary = false; } // -- IFormatReader API methods -- /* @see loci.formats.IFormatReader#isThisType(RandomAccessInputStream) */ public boolean isThisType(RandomAccessInputStream stream) throws IOException { final int blockLen = PSD_MAGIC_STRING.length(); if (!FormatTools.validStream(stream, blockLen, false)) return false; return stream.readString(blockLen).startsWith(PSD_MAGIC_STRING); } /* @see loci.formats.IFormatReader#get8BitLookupTable() */ public byte[][] get8BitLookupTable() { FormatTools.assertId(currentId, true, 1); return lut; } /** * @see loci.formats.IFormatReader#openBytes(int, byte[], int, int, int, int) */ public byte[] openBytes(int no, byte[] buf, int x, int y, int w, int h) throws FormatException, IOException { FormatTools.checkPlaneParameters(this, no, buf.length, x, y, w, h); if (no == lastImageIndex && lastImage != null) { RandomAccessInputStream s = new RandomAccessInputStream(lastImage); readPlane(s, x, y, w, h, buf); s.close(); return buf; } in.seek(offset); int bpp = FormatTools.getBytesPerPixel(getPixelType()); int plane = getSizeX() * getSizeY() * bpp; if (compressed) { PackbitsCodec codec = new PackbitsCodec(); CodecOptions options = new CodecOptions(); options.maxBytes = getSizeX() * bpp; ByteArrayHandle pix = new ByteArrayHandle(); byte[] b = null; for (int c=0; c<getSizeC(); c++) { for (int row=0; row<getSizeY(); row++) { b = new byte[lens[c][row]]; in.read(b); b = codec.decompress(b, options); pix.write(b); } } lastImageIndex = no; lastImage = pix.getBytes(); RandomAccessInputStream s = new RandomAccessInputStream(lastImage); readPlane(s, x, y, w, h, buf); s.close(); } else { readPlane(in, x, y, w, h, buf); } return buf; } /* @see loci.formats.IFormatReader#close(boolean) */ public void close(boolean fileOnly) throws IOException { super.close(fileOnly); if (!fileOnly) { lut = null; offset = 0; compressed = false; lens = null; lastImageIndex = -1; lastImage = null; } } // -- Internal FormatReader API methods -- /* @see loci.formats.FormatReader#initFile(String) */ protected void initFile(String id) throws FormatException, IOException { super.initFile(id); in = new RandomAccessInputStream(id); core[0].littleEndian = false; if (!in.readString(4).equals("8BPS")) { throw new FormatException("Not a valid Photoshop file."); } addGlobalMeta("Version", in.readShort()); in.skipBytes(6); // reserved, set to 0 core[0].sizeC = in.readShort(); core[0].sizeY = in.readInt(); core[0].sizeX = in.readInt(); int bits = in.readShort(); addGlobalMeta("Bits per pixel", bits); core[0].pixelType = FormatTools.pixelTypeFromBytes(bits / 8, false, false); int colorMode = in.readShort(); String modeString = null; switch (colorMode) { case 0: modeString = "monochrome"; break; case 1: modeString = "gray-scale"; break; case 2: modeString = "palette color"; break; case 3: modeString = "RGB"; break; case 4: modeString = "CMYK"; break; case 6: modeString = "Duotone"; break; case 7: modeString = "Multichannel color"; break; case 8: modeString = "Duotone"; break; case 9: modeString = "LAB color"; break; } addGlobalMeta("Color mode", modeString); // read color mode block, if present int modeDataLength = in.readInt(); long fp = in.getFilePointer(); if (modeDataLength != 0) { if (colorMode == 2) { lut = new byte[3][256]; for (int i=0; i<lut.length; i++) { in.read(lut[i]); } } in.seek(fp + modeDataLength); } // read image resources block in.skipBytes(4); while (in.readString(4).equals("8BIM")) { int tag = in.readShort(); int read = 1; while (in.read() != 0) read++; if (read % 2 == 1) in.skipBytes(1); int size = in.readInt(); if (size % 2 == 1) size++; in.skipBytes(size); } in.seek(in.getFilePointer() - 4); int blockLen = in.readInt(); if (blockLen == 0) { offset = in.getFilePointer(); } else { int layerLen = in.readInt(); int layerCount = in.readShort(); if (layerCount < 0) { throw new FormatException("Vector data is not supported."); } int[] w = new int[layerCount]; int[] h = new int[layerCount]; int[] c = new int[layerCount]; for (int i=0; i<layerCount; i++) { int top = in.readInt(); int left = in.readInt(); int bottom = in.readInt(); int right = in.readInt(); w[i] = right - left; h[i] = bottom - top; c[i] = in.readShort(); in.skipBytes(c[i] * 6 + 12); int len = in.readInt(); if (len % 2 == 1) len++; in.skipBytes(len); } // skip over pixel data for each layer for (int i=0; i<layerCount; i++) { int[] lens = new int[h[i]]; for (int cc=0; cc<c[i]; cc++) { boolean compressed = in.readShort() == 1; if (!compressed) in.skipBytes(w[i] * h[i]); else { for (int y=0; y<h[i]; y++) { lens[y] = in.readShort(); } for (int y=0; y<h[i]; y++) { in.skipBytes(lens[y]); } } } } long start = in.getFilePointer(); while (in.read() != '8'); in.skipBytes(7); if (in.getFilePointer() - start > 1024) { in.seek(start); } int len = in.readInt(); if ((len % 4) != 0) len += 4 - (len % 4); in.skipBytes(len); String s = in.readString(4); while (s.equals("8BIM")) { in.skipBytes(4); len = in.readInt(); if ((len % 4) != 0) len += 4 - (len % 4); in.skipBytes(len); s = in.readString(4); } offset = in.getFilePointer() - 4; } core[0].sizeZ = 1; core[0].sizeT = 1; core[0].rgb = modeString.equals("RGB"); core[0].imageCount = getSizeC() / (isRGB() ? 3 : 1); core[0].indexed = modeString.equals("palette color"); core[0].falseColor = false; core[0].dimensionOrder = "XYCZT"; core[0].interleaved = false; core[0].metadataComplete = true; in.seek(offset); compressed = in.readShort() == 1; lens = new int[getSizeC()][getSizeY()]; if (compressed) { for (int c=0; c<getSizeC(); c++) { for (int row=0; row<getSizeY(); row++) { lens[c][row] = in.readShort(); } } } offset = in.getFilePointer(); MetadataStore store = makeFilterMetadata(); MetadataTools.populatePixels(store, this); MetadataTools.setDefaultCreationDate(store, id, 0); } }