Home | History | Annotate | Download | only in exif

Lines Matching defs:bmap

811      * @param bmap a bitmap to compress and write exif into.
816 public void writeExif(Bitmap bmap, OutputStream exifOutStream) throws IOException {
817 if (bmap == null || exifOutStream == null) {
821 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);
874 * @param bmap a bitmap to compress and write exif into.
880 public void writeExif(Bitmap bmap, String exifOutFileName) throws FileNotFoundException,
882 if (bmap == null || exifOutFileName == null) {
888 bmap.compress(Bitmap.CompressFormat.JPEG, 90, s);