Searched defs:jpegStream (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java829 * @param jpegStream an InputStream containing a jpeg compressed image.
834 public void writeExif(InputStream jpegStream, OutputStream exifOutStream) throws IOException { argument
835 if (jpegStream == null || exifOutStream == null) {
839 doExifStreamIO(jpegStream, s);
901 * @param jpegStream an InputStream containing a jpeg compressed image.
907 public void writeExif(InputStream jpegStream, String exifOutFileName) argument
909 if (jpegStream == null || exifOutFileName == null) {
915 doExifStreamIO(jpegStream, s);

Completed in 57 milliseconds