Class PsdDecoder

java.lang.Object
com.idrsolutions.image.JDeliImage
com.idrsolutions.image.psd.PsdDecoder
All Implemented Interfaces:
com.idrsolutions.image.Decoder

public class PsdDecoder extends com.idrsolutions.image.JDeliImage implements com.idrsolutions.image.Decoder
Class reads Photoshop image as BufferedImage

Example 1 (Using raw byte data):


 PsdDecoder decoder = new PsdDecoder();
 BufferedImage decodedImage = decoder.read(psdBytes);
 

Example 2 (Using File):


 File psdFile = new File("C:\\path\\to\\output\\file.psd");
 PsdDecoder decoder = new PsdDecoder();
 BufferedImage decodedImage = decoder.read(psdFile);
 
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    read(byte[] psdRawData)
    Decodes and returns the Photoshop image as a BufferedImage from bytes
    read(File file)
    Decodes and returns the Photoshop image as a BufferedImage from a file
    readDimension(byte[] psdData)
    Decodes and returns the width and height of bmp image
    Decodes and returns the width and height of bmp image

    Methods inherited from class com.idrsolutions.image.JDeliImage

    optimiseImage

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface com.idrsolutions.image.Decoder

    getImageCount, getImageCount, readEmbeddedThumbnail, readEmbeddedThumbnail, readImageAt, readImageAt, readImageSpecificMetaData, readImageSpecificMetaData, setMetadata
  • Constructor Details

    • PsdDecoder

      public PsdDecoder()
  • Method Details

    • read

      public BufferedImage read(byte[] psdRawData) throws Exception
      Decodes and returns the Photoshop image as a BufferedImage from bytes
      Specified by:
      read in interface com.idrsolutions.image.Decoder
      Parameters:
      psdRawData - byte[] containing the PNG data to be decoded
      Returns:
      BufferedImage The decoded image
      Throws:
      IOException - if an error occurs in reading image
      Exception
    • read

      public BufferedImage read(File file) throws Exception
      Decodes and returns the Photoshop image as a BufferedImage from a file
      Specified by:
      read in interface com.idrsolutions.image.Decoder
      Parameters:
      file - input image file to be decoded
      Returns:
      BufferedImage decoded image
      Throws:
      IOException - if an error occurs in reading image
      Exception
    • readDimension

      public Rectangle readDimension(File psdFile) throws IOException
      Decodes and returns the width and height of bmp image
      Specified by:
      readDimension in interface com.idrsolutions.image.Decoder
      Parameters:
      psdFile - image image contained in raw data if present
      Returns:
      width and height of image
      Throws:
      IOException - if problem reading image
    • readDimension

      public Rectangle readDimension(byte[] psdData) throws IOException
      Decodes and returns the width and height of bmp image
      Specified by:
      readDimension in interface com.idrsolutions.image.Decoder
      Parameters:
      psdData - image image contained in raw data if present
      Returns:
      Rectangle width and height of image
      Throws:
      IOException - if problem reading image