Examples of ByteSourceInputStream


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

   *            String containing XMP XML.
   */
  public void updateXmpXml(InputStream src, OutputStream os, String xmpXml)
      throws ImageReadException, IOException, ImageWriteException
  {
    ByteSource byteSource = new ByteSourceInputStream(src, null);
    updateXmpXml(byteSource, os, xmpXml);
  }
View Full Code Here

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

   * @return An instance of ICC_Profile or null if the image contains no ICC
   *         profile..
   */
  public static ICC_Profile getICCProfile(InputStream is, String filename,
      Map params) throws ImageReadException, IOException {
    return getICCProfile(new ByteSourceInputStream(is, filename), params);
  }
View Full Code Here

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

   * @return An instance of ImageInfo.
   * @see ImageInfo
   */
  public static ImageInfo getImageInfo(InputStream is, String filename)
      throws ImageReadException, IOException {
    return getImageInfo(new ByteSourceInputStream(is, filename), null);
  }
View Full Code Here

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

   * @return An instance of ImageInfo.
   * @see ImageInfo
   */
  public static ImageInfo getImageInfo(InputStream is, String filename,
      Map params) throws ImageReadException, IOException {
    return getImageInfo(new ByteSourceInputStream(is, filename), params);
  }
View Full Code Here

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

   *            Map of optional parameters, defined in SanselanConstants.
   * @return The width and height of the image.
   */
  public static Dimension getImageSize(InputStream is, String filename,
      Map params) throws ImageReadException, IOException {
    return getImageSize(new ByteSourceInputStream(is, filename), params);
  }
View Full Code Here

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

   *            Map of optional parameters, defined in SanselanConstants.
   * @return Xmp Xml as String, if present.  Otherwise, returns null..
   */
  public static String getXmpXml(InputStream is, String filename,
      Map params) throws ImageReadException, IOException {
    return getXmpXml(new ByteSourceInputStream(is, filename), params);
  }
View Full Code Here

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

   * @return An instance of IImageMetadata.
   * @see IImageMetadata
   */
  public static IImageMetadata getMetadata(InputStream is, String filename,
      Map params) throws ImageReadException, IOException {
    return getMetadata(new ByteSourceInputStream(is, filename), params);
  }
View Full Code Here

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

   *            Filename associated with image data (optional).
   * @return A vector of BufferedImages.
   */
  public static ArrayList getAllBufferedImages(InputStream is, String filename)
      throws ImageReadException, IOException {
    return getAllBufferedImages(new ByteSourceInputStream(is, filename));
  }
View Full Code Here

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

  public static BufferedImage getBufferedImage(InputStream is, Map params)
      throws ImageReadException, IOException {
    String filename = null;
    if (params != null && params.containsKey(PARAM_KEY_FILENAME))
      filename = (String) params.get(PARAM_KEY_FILENAME);
    return getBufferedImage(new ByteSourceInputStream(is, filename), params);
  }
View Full Code Here

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

         return;
       }

       // Content header checking is fast so this is fine to do for every response.
       ImageFormat imageFormat = Sanselan
           .guessFormat(new ByteSourceInputStream(response.getContentBytes(), uri.getPath()));

       if (imageFormat == ImageFormat.IMAGE_FORMAT_UNKNOWN) {
         enforceUnreadableImageRestrictions(uri, response);
         return;
       }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.