Package org.apache.sanselan.common.byteSources

Examples of org.apache.sanselan.common.byteSources.ByteSourceArray


      Map params) throws ImageReadException, IOException;

  public final BufferedImage getBufferedImage(byte bytes[], Map params)
      throws ImageReadException, IOException
  {
    return getBufferedImage(new ByteSourceArray(bytes), params);
  }
View Full Code Here


  }

  public final Dimension getImageSize(byte bytes[], Map params)
      throws ImageReadException, IOException
  {
    return getImageSize(new ByteSourceArray(bytes), params);
  }
View Full Code Here

  }

  public final byte[] getICCProfileBytes(byte bytes[], Map params)
      throws ImageReadException, IOException
  {
    return getICCProfileBytes(new ByteSourceArray(bytes), params);
  }
View Full Code Here

      throws ImageReadException, IOException;

  public final String dumpImageFile(byte bytes[]) throws ImageReadException,
      IOException
  {
    return dumpImageFile(new ByteSourceArray(bytes));
  }
View Full Code Here

    public IccProfileInfo getICCProfileInfo(ICC_Profile icc_profile)
    {
        if (icc_profile == null)
            return null;

        return getICCProfileInfo(new ByteSourceArray(icc_profile.getData()));
    }
View Full Code Here

    public IccProfileInfo getICCProfileInfo(byte bytes[])
    {
        if (bytes == null)
            return null;

        return getICCProfileInfo(new ByteSourceArray(bytes));
    }
View Full Code Here

    public Boolean issRGB(ICC_Profile icc_profile)
    {
        if (icc_profile == null)
            return null;

        return issRGB(new ByteSourceArray(icc_profile.getData()));
    }
View Full Code Here

    public Boolean issRGB(byte bytes[])
    {
        if (bytes == null)
            return null;

        return issRGB(new ByteSourceArray(bytes));
    }
View Full Code Here

    }

    public final IImageMetadata getMetadata(byte bytes[], Map params)
            throws ImageReadException, IOException
    {
        return getMetadata(new ByteSourceArray(bytes), params);
    }
View Full Code Here

    }

    public final ImageInfo getImageInfo(byte bytes[], Map params)
            throws ImageReadException, IOException
    {
        return getImageInfo(new ByteSourceArray(bytes), params);
    }
View Full Code Here

TOP

Related Classes of org.apache.sanselan.common.byteSources.ByteSourceArray

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.