Remove deprecated package, re-implement in ImageIO

This commit is contained in:
2017-06-12 17:06:21 +00:00
parent 95e97e2ae6
commit 8a3ee78f58
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ import java.awt.image.BufferedImage;
import java.io.IOException;
import java.io.OutputStream;
import com.sun.image.codec.jpeg.JPEGCodec;
import javax.imageio.*;
/**
* SunJpegImage is a specific implementation of AppleImage that handles all
@ -60,7 +60,7 @@ public class SunJpegImage extends AppleImage {
* Save the image.
*/
public void save(OutputStream outputStream) throws IOException {
JPEGCodec.createJPEGEncoder(outputStream).encode(image);
ImageIO.write(image, "jpg", outputStream);
}
/**
* Return the width of the image.