Home | History | Annotate | Download | only in exif

Lines Matching refs:jpegStream

829      * @param jpegStream an InputStream containing a jpeg compressed image.
834 public void writeExif(InputStream jpegStream, OutputStream exifOutStream) throws IOException {
835 if (jpegStream == null || exifOutStream == null) {
839 jpegStream, s);
901 * @param jpegStream an InputStream containing a jpeg compressed image.
907 public void writeExif(InputStream jpegStream, String exifOutFileName)
909 if (jpegStream == null || exifOutFileName == null) {
915 doExifStreamIO(jpegStream, s);