http://blog.csdn.net/z69183787/article/details/50320821

Java获取照片EXIF信息
http://blog.csdn.net/ghsau/article/details/8472486

java解决手机等移动设备中照片上传至服务器方向不正确的问题
http://www.bubuko.com/infodetail-715634.html

android 拍照的照片方向问题,读取图片EXIF信息
http://blog.csdn.net/yx0628/article/details/9429795

exif图片方向处理
http://www.codes51.com/article/detail_625107.html

***************************************************

翻转后 orientation 属性为6 。

    public static void main(String[] args) throws ImageProcessingException, IOException {  File jpegFile= new File("C:\\Users\\Administrator\\Desktop\\IMG_0362.JPG");  Metadata metadata = ImageMetadataReader.readMetadata(jpegFile);  Directory directory = metadata.getDirectory(ExifIFD0Directory.class);  JpegDirectory jpegDirectory = (JpegDirectory)metadata.getDirectory(JpegDirectory.class);  //        int orientation =0;  //        Metadata metadata = JpegMetadataReader.readMetadata(newFile);  //        for (Directory directory : metadata.getDirectories())  //        {  //            for (Tag tag : directory.getTags())  //            {  //                if ("Orientation".equalsIgnoreCase(tag.getTagName()))  //                {  //                    orientation=getOrientation(tag.getDescription());  //                }  //            }  //        }  //        Integer turn=360;  //        if(orientation==0||orientation==1)  //        {  //            turn=360;  //        }  //        else if(orientation==3)  //        {  //            turn=180;  //        }  //        else if(orientation==6)  //        {  //            turn=90;  //        }  //        else if(orientation==8)  //        {  //            turn=270;  //        }  int orientation = 1;  try {  orientation = directory.getInt(ExifIFD0Directory.TAG_ORIENTATION);  } catch (MetadataException me) {  logger.warn("Could not get orientation");  }  System.out.println(orientation);  BufferedImage src = ImageIO.read(jpegFile);  BufferedImage des = RotateImage.Rotate(src, 90);  ImageIO.write(des,"jpg", new File("C:\\Users\\Administrator\\Desktop\\IMG_0362.JPG"));  //        FileInputStream fip = new FileInputStream(jpegFile);  //        LLJTran llj = new LLJTran(fip);  //        try {  //            llj.read(LLJTran.READ_INFO, true);  //        } catch (LLJTranException e) {  //            e.printStackTrace();  //        }  //  //        Exif exif = (Exif) llj.getImageInfo();  //        Entry e = new Entry(Exif.RATIONAL);  //        exif.setTagValue(Exif.ORIENTATION_TOPLEFT,1,e,true);  //        llj.refreshAppx(); // Recreate Marker Data for changes done  //        //改写后的文件,文件必须存在  //        OutputStream out = new BufferedOutputStream(new FileOutputStream("C:\\Users\\Administrator\\Desktop\\IMG_0362.JPG"));  //        // Transfer remaining of image to output with new header.  //        try {  //            llj.xferInfo(null, out, LLJTran.REPLACE, LLJTran.REPLACE);  //        } catch (LLJTranException e1) {  //            e1.printStackTrace();  //        }  //        fip.close();  //        out.close();  //        llj.freeMemory();  }  public static int getOrientation(String orientation)  {  int tag = 0;  if ("Top, left side (Horizontal / normal)".equalsIgnoreCase(orientation)) {  tag = 1;  } else if ("Top, right side (Mirror horizontal)".equalsIgnoreCase(orientation)) {  tag = 2;  } else if ("Bottom, right side (Rotate 180)".equalsIgnoreCase(orientation)) {  tag = 3;  } else if ("Bottom, left side (Mirror vertical)".equalsIgnoreCase(orientation)) {  tag = 4;  } else if ("Left side, top (Mirror horizontal and rotate 270 CW)".equalsIgnoreCase(orientation)) {  tag = 5;  } else if ("Right side, top (Rotate 90 CW)".equalsIgnoreCase(orientation)) {  tag = 6;  } else if ("Right side, bottom (Mirror horizontal and rotate 90 CW)".equalsIgnoreCase(orientation)) {  tag = 7;  } else if ("Left side, bottom (Rotate 270 CW)".equalsIgnoreCase(orientation)) {  tag = 8;  }  return  tag;  }

翻转:

    package com.xxxx.xxx.xxx.xxx;  import java.awt.*;  import java.awt.image.BufferedImage;  /** * Created by Administrator on 2015/12/15. */  public class RotateImage {  public static BufferedImage Rotate(Image src, int angel) {  int src_width = src.getWidth(null);  int src_height = src.getHeight(null);  // calculate the new image size  Rectangle rect_des = CalcRotatedSize(new Rectangle(new Dimension(  src_width, src_height)), angel);  BufferedImage res = null;  res = new BufferedImage(rect_des.width, rect_des.height,  BufferedImage.TYPE_INT_RGB);  Graphics2D g2 = res.createGraphics();  // transform  g2.translate((rect_des.width - src_width) / 2,  (rect_des.height - src_height) / 2);  g2.rotate(Math.toRadians(angel), src_width / 2, src_height / 2);  g2.drawImage(src, null, null);  return res;  }  public static Rectangle CalcRotatedSize(Rectangle src, int angel) {  // if angel is greater than 90 degree, we need to do some conversion  if (angel >= 90) {  if(angel / 90 % 2 == 1){  int temp = src.height;  src.height = src.width;  src.width = temp;  }  angel = angel % 90;  }  double r = Math.sqrt(src.height * src.height + src.width * src.width) / 2;  double len = 2 * Math.sin(Math.toRadians(angel) / 2) * r;  double angel_alpha = (Math.PI - Math.toRadians(angel)) / 2;  double angel_dalta_width = Math.atan((double) src.height / src.width);  double angel_dalta_height = Math.atan((double) src.width / src.height);  int len_dalta_width = (int) (len * Math.cos(Math.PI - angel_alpha  - angel_dalta_width));  int len_dalta_height = (int) (len * Math.cos(Math.PI - angel_alpha  - angel_dalta_height));  int des_width = src.width + len_dalta_width * 2;  int des_height = src.height + len_dalta_height * 2;  return new Rectangle(new Dimension(des_width, des_height));  }  }

上述api接口有了变化,已经不能使用,请参考下面的代码

package testExif;import java.awt.Graphics2D;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;import javax.imageio.ImageIO;import com.drew.imaging.jpeg.JpegMetadataReader;
import com.drew.metadata.Directory;
import com.drew.metadata.Metadata;
import com.drew.metadata.exif.ExifDirectoryBase;; public class TestExif {public static void main(String[] args) throws Exception {File file = new File("/pathToJepg/d3805d6c032a42feabce3deee74dfb6a.JPG");Metadata metadata = JpegMetadataReader.readMetadata(file);Directory directory = metadata.getFirstDirectoryOfType(ExifDirectoryBase.class);int orientation=0;if(directory != null && directory.containsTag(ExifDirectoryBase.TAG_ORIENTATION)){ // Exif信息中有保存方向,把信息复制到缩略图orientation = directory.getInt(ExifDirectoryBase.TAG_ORIENTATION); // 原图片的方向信息System.out.println(orientation);}if(orientation == 1){System.out.println("rotate 90");BufferedImage src = ImageIO.read(file);  BufferedImage des = RotateImage.Rotate(src, 270);  ImageIO.write(des,"jpg", new File("D:/upload/20170224/raw/90.jpg"));}}
}

图片方向判定

                 if(6 == orientation ){//6旋转90angle = 90;}else if( 3 == orientation){//3旋转180angle = 180;}else if( 8 == orientation){//8旋转90angle = 270;}

总结

上面的RotateImage类可以工作,已经测试了几组照片

*****************

补充:

我们都遇到过这样的情况,拍摄高的景物时,会把相机竖着拍,但是这样得到的图片如果用普通的图片浏览器看景物就是躺着的,需要调整一个角度。

用手机拍照实验(用普通浏览器来看):

横拿手机右手拍照,照片方向"1""Horizontal"。

正常拿手机竖拍,照片方向"6""Rotate 90 CW",图片顺时针旋转90度时,即正常。

再转90度,横拿,左手拍照,照片方向"3""Rotate 180",旋转180度即可正常显示方向。

再转90度,手机头朝下拍,照片方向"8""Rotate 270 CW"。

取到这些值,就可以进行相应的操作了。

Java 处理 iphone拍照后 图片EXIF属性翻转90度的方法相关推荐

  1. Android 拍照后图片的旋转,合并,兼容性 相机开发

    在看这篇文章之前,我建议先看相机开发基础 针对这个功能需要做自定义相机,根据Camera相机类和SurfaceView类来实现自定义图形预览拍照功能. 但在实现过程中出现几个难点: 1.如何将自己产品 ...

  2. 解决上传iphone拍照的图片自动翻转的问题

    昨天遇到一个奇怪的问题,客户用iphone拍照后上传的图片在生成缩略图时被翻转了, 原图 缩略图 然后我排查image类的问题,怀疑可能是这里出bug了,结果并不是这样,断点调试后发现getimage ...

  3. Android开发之拍照后图片旋转的问题

    经过测试,国产手机拍照无问题,国外手机拍照后自动选装90度了看图:主要有Google手机和三星手机都会有这个问题 解决办法也很简单说下思路: 首先获取图片被旋转的角度然后通过matrix.postRo ...

  4. android 竖屏拍照旋转90度,三星等机型上拍照后图片被旋转90度的解决方案

    考虑到Android7.0以后拍照修改了调用和返回方式,找到了一个看起来还不错的第三方库,实际可能并非如此. -TakePhoto 在三星Note3和S6上测试,发现竖屏拍照后返回的照片是横屏的,在其 ...

  5. html 里img图片被自动旋转,关于HTML5显示图片翻转90度的问题

    首先,看到标题就觉得这个问题有点看不懂吧.咱遇到问题,那就解决问题.下面就具体描述一下遇到的情况. 上传作品后,需要作品的详情展示,然后在预览页面,出现某些图片与上传的图片展示不一致的效果.下面是原图 ...

  6. android 三星手机拍照旋转90度,解决三星拍照上传照片被旋转90度,和三星相机崩溃...

    刚刚想起来前几天面试的时候遇到的一个问题, 问题大概是这样的做拍照上传图片功能的时候,在三星手机上拍出的照片是旋转了90度的,应该如何解决这个问题.因为之前没有遇到过这种问题,当时我回答的是给图片做一 ...

  7. html中如何使图片自动旋转90度,css实现图片旋转90度的方法

    css实现图片旋转90度的方法 发布时间:2020-08-31 11:44:39 来源:亿速云 阅读:550 作者:小新 小编给大家分享一下css实现图片旋转90度的方法,相信大部分人都还不怎么了解, ...

  8. 三星手机拍照后 图片翻转

    今天遇到一个奇怪的现象  就是三星Note3 7508v型号的手机 拍照后 会自动的进行翻转. 1   代码中处理 int degree = CommonUtils.getBitmapDegree(a ...

  9. Java 图片上传后为什么会自动旋转90度?

    问题: 用户反馈上传后的图片方向不对,起初怀疑是本身图片方向有问题,但是用windows图片查看器打开图片方向是"正常"显示的? 分析: windows默认的图片查看器已经帮我们自 ...

最新文章

  1. 面向JavaScript开发人员的Adobe AIR与Dreamweaver
  2. 用JS脚本进行页面元素控制
  3. jdk历史各个版本下载
  4. vivado实现VGA
  5. java访问器_ONGN和java字段访问器(get,set)
  6. LiveVideoStack Meet | 苏州:视频会议研发中心一日游
  7. navicat连接linux远程数据库,使用Navicat forMySql远程连接Linux 系统上的数据库
  8. 【POJ - 2318】TOYS(计算几何,叉积判断点与直线位置关系,二分)
  9. unity 是厘米还是米_乔丹19岁才1.75米,2年增高近20公分,这个长高方法你能坚持多久...
  10. “四大设计原则”在排版中的应用
  11. matlib实现梯度下降法
  12. 网上摘的数据缓存资料
  13. 字幕制作 分享剪辑视频添加滚动字幕的操作步骤
  14. Eighth Week(补充完整)
  15. Python 学习笔记 变量 xxx XXX
  16. iOS -- 开源项目和库
  17. python实现QQ邮件的自动收发
  18. 关于Qt中的翻译问题
  19. Go语言Windows系统开发环境配置
  20. signature=da0cbfb45ebebe4ea0118c0a20df185e,MS15-018:Internet Explorer 累积安全更新:2015 年 3 月 10 日...

热门文章

  1. ajax get before,jquery的ajax()之 beforeSend属性详解
  2. 计算机美术课前景,电脑绘画听起来挺时髦,前景如何?
  3. 2020高人气小巧真无线蓝牙耳机推荐,无线蓝牙耳机选购指南
  4. 华为手机nfs是什么意思_“NFS指的是什么意思?NFS”指的是 – 手机爱问
  5. 时序预测 | MATLAB实现基于Adam算法优化BiLSTM双向长短期记忆神经网络时间序列预测
  6. fireworks开发者工具使用
  7. 倪光南院士:现在年轻人不够踏实
  8. 如何在线将PDF转Word?这样转换了解一下
  9. 那你知道怎么制作飞机吗
  10. 清除微信内置浏览器缓存