日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

苹果手机(ios)拍照上传图片旋转90度问题---java后台处理

發(fā)布時(shí)間:2025/7/25 编程问答 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 苹果手机(ios)拍照上传图片旋转90度问题---java后台处理 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

需要先導(dǎo)入包??

metadata-extractor-2.3.1.jar? 地址?https://github.com/drewnoakes/metadata-extractor/releases?after=2.7.0

xmpcore-5.1.2.jar 依賴包? ?maven下載

mediation-1.0.0.jar 這個(gè)好像也用到了

?

?

代碼:

?

String filePath = request.getSession().getServletContext()
.getRealPath("/")
+ "upload/" ;
String filename = "111.jpg";

//處理ios圖片旋轉(zhuǎn)的問題
getPictureByName(filePath,filename);


// 處理ios圖片旋轉(zhuǎn)的問題
public void getPictureByName(String filePath,String name){

try {
//name為前端請(qǐng)求圖片名,如 a.jpg
BufferedImage src = getPicture(filePath+name);
BufferedImage bi = null;

//圖片存在
if(src != null){
//獲取圖片旋轉(zhuǎn)角度
int angel = getRotateAngleForPhoto(filePath+name);
if(angel == 0){
//圖片正常,不處理圖片
bi = src;
}else{
//圖片被翻轉(zhuǎn),調(diào)整圖片
int src_width = src.getWidth(null);
int src_height = src.getHeight(null);
Rectangle rect_des = CalcRotatedSize(new Rectangle(new Dimension(src_width, src_height)), angel);

bi = new BufferedImage(rect_des.width, rect_des.height,BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = bi.createGraphics();

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);
}

int index = name.lastIndexOf(".");
String formate = name.substring(index+1);
ImageIO.write(bi, formate, new File(filePath+name));
}else{
//圖片不存在
System.out.println("圖片不存在");
}
} catch (Exception e) {
e.printStackTrace();
}
}


/**
* 讀取指定圖片
*/
public BufferedImage getPicture(String path) {
BufferedImage bi = null;
try{
File file = new File(path);
if(!file.exists()){
return null;
}
bi = ImageIO.read(file);
} catch (Exception e){
e.printStackTrace();
}
return bi;
}


/**
* 圖片翻轉(zhuǎn)時(shí),計(jì)算圖片翻轉(zhuǎn)到正常顯示需旋轉(zhuǎn)角度
*/
public int getRotateAngleForPhoto(String fileName){

File file = new File(fileName);

int angel = 0;
Metadata metadata;

try{
metadata = JpegMetadataReader.readMetadata(file);
Directory directory = metadata.getDirectory(ExifDirectory.class);

if(directory.containsTag(ExifDirectory.TAG_ORIENTATION)){
// Exif信息中方向  
int orientation = directory.getInt(ExifDirectory.TAG_ORIENTATION);
// 原圖片的方向信息
if(6 == orientation ){
//6旋轉(zhuǎn)90
angel = 90;
}else if( 3 == orientation){
//3旋轉(zhuǎn)180
angel = 180;
}else if( 8 == orientation){
//8旋轉(zhuǎn)90
angel = 270;
}
}

} catch(JpegProcessingException e){
e.printStackTrace();
} catch(MetadataException e){
e.printStackTrace();
}
System.out.println("圖片旋轉(zhuǎn)角度:" + angel);
return angel;
}


/**
* 計(jì)算旋轉(zhuǎn)參數(shù)
*/
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 / 9%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 java.awt.Rectangle(new Dimension(des_width, des_height));
}

轉(zhuǎn)載于:https://www.cnblogs.com/weimengduzun/p/9636421.html

總結(jié)

以上是生活随笔為你收集整理的苹果手机(ios)拍照上传图片旋转90度问题---java后台处理的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。