com.sun.xml.messaging.saaj.soap.JpegDataContentHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saaj-impl Show documentation
Show all versions of saaj-impl Show documentation
Open source Reference Implementation of JSR-67: SOAP with Attachments API for Java (SAAJ MR: 1.4)
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.messaging.saaj.soap;
import java.awt.*;
import java.awt.datatransfer.DataFlavor;
import java.awt.image.BufferedImage;
import java.io.*;
import javax.activation.*;
//import com.sun.image.codec.jpeg.*;
import javax.imageio.ImageIO;
/**
* JAF data handler for Jpeg content
*
* @author Ana Lindstrom-Tamer
*/
public class JpegDataContentHandler
extends Component
implements DataContentHandler {
public static final String STR_SRC = "java.awt.Image";
/**
* Return the DataFlavors for this DataContentHandler
* @return The DataFlavors.
*/
@Override
public DataFlavor[] getTransferDataFlavors() { // throws Exception;
DataFlavor flavors[] = new DataFlavor[1];
try {
flavors[0] =
new ActivationDataFlavor(
Class.forName(STR_SRC),
"image/jpeg",
"JPEG");
} catch (Exception e) {
System.out.println(e);
}
return flavors;
}
/**
* Return the Transfer Data of type DataFlavor from InputStream
* @param df The DataFlavor
* @param ds The DataSource
* @return The constructed Object.
*/
@Override
public Object getTransferData(DataFlavor df, DataSource ds) {
// this is sort of hacky, but will work for the
// sake of testing...
if (df.getMimeType().startsWith("image/jpeg")) {
if (df.getRepresentationClass().getName().equals(STR_SRC)) {
InputStream inputStream = null;
BufferedImage jpegLoadImage = null;
try {
inputStream = ds.getInputStream();
jpegLoadImage = ImageIO.read(inputStream);
} catch (Exception e) {
System.out.println(e);
}
return jpegLoadImage;
}
}
return null;
}
/**
*
*/
@Override
public Object getContent(DataSource ds) { // throws Exception;
InputStream inputStream = null;
BufferedImage jpegLoadImage = null;
try {
inputStream = ds.getInputStream();
jpegLoadImage = ImageIO.read(inputStream);
} catch (Exception e) {
}
return jpegLoadImage;
}
/**
* Construct an object from a byte stream
* (similar semantically to previous method, we are deciding
* which one to support)
* @param obj object to write
* @param mimeType requested MIME type of the resulting byte stream
* @param os OutputStream
*/
@Override
public void writeTo(Object obj, String mimeType, OutputStream os)
throws IOException {
if (!mimeType.equals("image/jpeg"))
throw new IOException(
"Invalid content type \""
+ mimeType
+ "\" for ImageContentHandler");
if (obj == null) {
throw new IOException("Null object for ImageContentHandler");
}
try {
BufferedImage bufImage = null;
if (obj instanceof BufferedImage) {
bufImage = (BufferedImage) obj;
} else {
Image img = (Image) obj;
MediaTracker tracker = new MediaTracker(this);
tracker.addImage(img, 0);
tracker.waitForAll();
if (tracker.isErrorAny()) {
throw new IOException("Error while loading image");
}
bufImage =
new BufferedImage(
img.getWidth(null),
img.getHeight(null),
BufferedImage.TYPE_INT_RGB);
Graphics g = bufImage.createGraphics();
g.drawImage(img, 0, 0, null);
}
ImageIO.write(bufImage, "jpeg", os);
} catch (Exception ex) {
throw new IOException(
"Unable to run the JPEG Encoder on a stream "
+ ex.getMessage());
}
}
}