sun.awt.image.codec.JPEGImageEncoderImpl Java Examples

The following examples show how to use sun.awt.image.codec.JPEGImageEncoderImpl. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: JPEGCodec.java    From jdk1.8-source-analysis with Apache License 2.0 4 votes vote down vote up
/**
 * This creates an instance of a JPEGImageEncoder that can be used
 * to encode image data as JPEG Data streams.
 */
public static JPEGImageEncoder createJPEGEncoder(OutputStream dest,
                                                                                                 JPEGEncodeParam jep) {
        return new JPEGImageEncoderImpl(dest, jep);
}
 
Example #2
Source File: JPEGCodec.java    From oim-fx with MIT License 4 votes vote down vote up
/**
 * This creates an instance of a JPEGImageEncoder that can be used
 * to encode image data as JPEG Data streams.
 */
public static JPEGImageEncoder createJPEGEncoder(OutputStream dest,
												 JPEGEncodeParam jep) {
	return new JPEGImageEncoderImpl(dest, jep);
}
 
Example #3
Source File: JPEGCodec.java    From JDKSourceCode1.8 with MIT License 4 votes vote down vote up
/**
 * This creates an instance of a JPEGImageEncoder that can be used
 * to encode image data as JPEG Data streams.
 */
public static JPEGImageEncoder createJPEGEncoder(OutputStream dest,
                                                                                                 JPEGEncodeParam jep) {
        return new JPEGImageEncoderImpl(dest, jep);
}
 
Example #4
Source File: JPEGCodec.java    From jdk1.8-source-analysis with Apache License 2.0 2 votes vote down vote up
/**
 * This creates an instance of a JPEGImageEncoder that can be used
 * to encode image data as JPEG Data streams.
 */
public static JPEGImageEncoder createJPEGEncoder(OutputStream dest) {
        return new JPEGImageEncoderImpl(dest);
}
 
Example #5
Source File: JPEGCodec.java    From oim-fx with MIT License 2 votes vote down vote up
/**
 * This creates an instance of a JPEGImageEncoder that can be used
 * to encode image data as JPEG Data streams.
 */
public static JPEGImageEncoder createJPEGEncoder(OutputStream dest) {
	return new JPEGImageEncoderImpl(dest);
}
 
Example #6
Source File: JPEGCodec.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * This creates an instance of a JPEGImageEncoder that can be used
 * to encode image data as JPEG Data streams.
 */
public static JPEGImageEncoder createJPEGEncoder(OutputStream dest) {
        return new JPEGImageEncoderImpl(dest);
}