Searched refs:exifOutStream (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
H A DExifInterface.java363 * @param exifOutStream the OutputStream to which the jpeg image with added exif tags will be
367 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
368 if (bmap == null || exifOutStream == null) {
371 bmap.compress(Bitmap.CompressFormat.JPEG, 90, exifOutStream);
372 exifOutStream.flush();
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifInterface.java794 * @param exifOutStream an OutputStream to which the jpeg image with added
798 public void writeExif(byte[] jpeg, OutputStream exifOutStream) throws IOException { argument
799 if (jpeg == null || exifOutStream == null) {
802 OutputStream s = getExifWriterStream(exifOutStream);
812 * @param exifOutStream the OutputStream to which the jpeg image with added
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
820 OutputStream s = getExifWriterStream(exifOutStream);
830 * @param exifOutStream an OutputStream to which the jpeg image with added
834 public void writeExif(InputStream jpegStream, OutputStream exifOutStream) throw argument
[all...]
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifInterface.java794 * @param exifOutStream an OutputStream to which the jpeg image with added
798 public void writeExif(byte[] jpeg, OutputStream exifOutStream) throws IOException { argument
799 if (jpeg == null || exifOutStream == null) {
802 OutputStream s = getExifWriterStream(exifOutStream);
812 * @param exifOutStream the OutputStream to which the jpeg image with added
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
820 OutputStream s = getExifWriterStream(exifOutStream);
830 * @param exifOutStream an OutputStream to which the jpeg image with added
834 public void writeExif(InputStream jpegStream, OutputStream exifOutStream) throw argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DExifInterface.java794 * @param exifOutStream an OutputStream to which the jpeg image with added
798 public void writeExif(byte[] jpeg, OutputStream exifOutStream) throws IOException { argument
799 if (jpeg == null || exifOutStream == null) {
802 OutputStream s = getExifWriterStream(exifOutStream);
812 * @param exifOutStream the OutputStream to which the jpeg image with added
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException { argument
817 if (bmap == null || exifOutStream == null) {
820 OutputStream s = getExifWriterStream(exifOutStream);
830 * @param exifOutStream an OutputStream to which the jpeg image with added
834 public void writeExif(InputStream jpegStream, OutputStream exifOutStream) throw argument
[all...]

Completed in 114 milliseconds