全球微动态丨android代码拿到图片路径 mimeType获取图片的方法
1、获取图片
1、相册
(资料图)
以隐氏intent的方式打开系统默认的图库,需要传入mimeType
com.cooliris.media.Gallery
代码如下:
//打开图片
Intent galleryIntent = new Intent(Intent.ACTION_PICK);
//Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT);
galleryIntent.setType("image/*");
startActivityForResult(galleryIntent, REQUEST_GALLERY);
1、ACTION_PICK、ACTION_GET_CONTENT可以完成相似的功能
2、mimeType:该activity可以处理的文件类型,形式:[type]/[subtype]。 Android MimeType的用途以及所有类型
在onActivityResult中,可以通过以下方法得到Uri:
Uri uri = data.getData();
2、相机
同样使用隐式的intent,打开系统的相机
com.android.camera.Camera
1、使用默认的返回路径
代码如下:
Intent cameraIntent=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent,REQUEST_CAMERA);
The Camera activity which can preview and take pictures.
所以,在onActivityResult中,可以通过以下方法得到图片:
Bundle bundle=data.getExtras();
Bitmap bitmap= (Bitmap) bundle.get("data");
imageView.setImageBitmap(bitmap);
但是,camera应用程序,不会将全尺寸的图片传递给主调程序:系统为了防止应用内存占用过大,对于在应用内通过相机拍摄的图片最终返回来的结果进行了压缩,压缩后的图片变得很小,如下:
默认的,不传递EXTRA_OUTPUT,返回的图片被压缩
2、传递给camera应用程序,一个路径
为了得到期望的图片,可以为camera应用程序,传递一个附加值,这个附加值的名称在MediaStore中指定:EXTRA_OUTPUT,以URI的形式指示捕获的图像放置的位置(imgUri)
Camera的onCreate方法中得到mSaveUri,指示捕获的图片的路径
//传递给camera应用程序,一个附加值
Intent intent=new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, imgUri);
startActivityForResult(intent,REQUEST_CAMERA);
创建Uri
1、使用ContentResolver,因为是添加图片,用insert
Uri imgUri = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, new ContentValues());
2、 android文件存储路径
String imgPath= Environment.getExternalStorageDirectory().getAbsolutePath()+"/_"+System.currentTimeMillis();
Uri uri=Uri.parse(imgPath);
注意:权限,android.permission.WRITE_EXTERNAL_STORAGE
Camera返回图片,mSaveUri是路径
2、裁剪
可以在onActivityResult中调用裁剪图片的intent,如下:
Intent cropIntent=new Intent("com.android.camera.action.CROP");
cropIntent.setDataAndType(srcUri,"image/*");
cropIntent.putExtra("scale", true);
cropIntent.putExtra(MediaStore.EXTRA_OUTPUT,imgUri);
startActivityForResult(cropIntent,IMG_CROP);
QQ图片20160804160705.png
3、onActivityResult中的回调
不管是拍照还是通过相册,总有办法得到Uri,通过这个Uri就可以取得bitmap或者imgPath
取得bitmap:
Bitmap bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(imgUri), null, null);
或者
Bitmap bitmap= MediaStore.Images.Media.getBitmap(getContentResolver(),imgUri);
或者
Bitmap bitmap= BitmapFactory.decodeFile(imgPath, null);
取得imgPath:
/**
* 根据Uri转变成真实路径
*/
public String getRealFilePath(Uri uri) {
String scheme=uri.getScheme();
if(scheme==null || scheme.equals(ContentResolver.SCHEME_FILE)){
String p= uri.getPath();
return p;
}
Cursor cursor = context.getContentResolver().query(uri, new String[]{MediaStore.Images.Media.DATA}, null, null, null);
if (cursor == null) {
return null;
}
if (cursor.moveToFirst()) {
String path = cursor.getString(cursor.getColumnIndex(MediaStore.Images.Media.DATA));
cursor.close();
}
return null;
}
之后,对得到的bitmap进行压缩:
4、压缩
图片有三种存在形式:硬盘上时是file,网络传输时是stream,内存中是stream或bitmap
质量压缩,它其实只能实现对file的影响,你可以把一个file转成bitmap再转成file,或者直接将一个bitmap转成file时,这个最终的file是被压缩过的,但是中间的bitmap并没有被压缩(或者说几乎没有被压缩,我不确定),因为bigmap在内存中的大小是按像素计算的,也就是width * height,对于质量压缩,并不会改变图片的像素,所以就算质量被压缩了,但是bitmap在内存的占有率还是没变小,但你做成file时,它确实变小了;
尺寸压缩,由于是减小了图片的像素,所以它直接对bitmap产生了影响,当然最终的file也是相对的变小了;
质量压缩
public String qualityCompressImg(Bitmap bitmap, String outPath, int maxSize) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
float option = 100f;
bitmap.compress(Bitmap.CompressFormat.JPEG, (int) option, byteArrayOutputStream);
while (byteArrayOutputStream.toByteArray().length / 1024 > maxSize) {
byteArrayOutputStream.reset();
option *= 0.9f;
if(option<1){
break;
}
bitmap.compress(Bitmap.CompressFormat.JPEG, (int) option, byteArrayOutputStream);
}
try {
FileOutputStream outputStream = new FileOutputStream(outPath);
outputStream.write(byteArrayOutputStream.toByteArray());
outputStream.flush();
outputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
return outPath;
}
尺寸压缩
public Bitmap ratioBitmap(String path, int viewWidth, int viewHeight) {
BitmapFactory.Options options = new BitmapFactory.Options();
options.inSampleSize = 1;
options.inJustDecodeBounds = true;
options.inPreferredConfig = Bitmap.Config.RGB_565;
BitmapFactory.decodeFile(path, options);
int h = options.outHeight;
int w = options.outWidth;
int inSampleSize = (int) Math.max(h * 1.0 / viewWidth, w * 1.0 / viewHeight);
if (inSampleSize <= 0) {
inSampleSize = 1;
}
options.inJustDecodeBounds = false;
options.inSampleSize = inSampleSize;
return BitmapFactory.decodeFile(path, options);
}
5、操作Exif信息
为什么在有些手机上拍摄的照片看起来方向不对?
用相机拍摄出来的照片含有EXIF信息,ExifInterface.TAG_ORIENTATION指的就是EXIF中的orientation信息。如果我们忽略orientation信息,直接去获取图片的bitmap,得到的结果会旋转(90°、180°、270°)。所以在onActivityResult方法获取到照片数据后,读取exif信息,将照片旋转到正确的方向(Matrix)。
什么是Exif?
Exif是一种图像文件格式,是在JPEG格式头插入了照片的信息。通过ExifInterface类可以操作图片的Exif信息,其中定义了一些字符串的静态常量:
TAG_APERTURE:光圈值。
TAG_DATETIME:拍摄时间,取决于设备设置的时间。
TAG_EXPOSURE_TIME:曝光时间。
TAG_FLASH:闪光灯。
TAG_FOCAL_LENGTH:焦距。
TAG_IMAGE_LENGTH:图片高度。
TAG_IMAGE_WIDTH:图片宽度。
TAG_ISO:ISO。
TAG_MAKE:设备品牌。
TAG_MODEL:设备型号,整形表示,在ExifInterface中有常量对应表示。
TAG_ORIENTATION:旋转角度,整形表示,在ExifInterface中有常量对应表示。
使用setAttribute()设置Exif信息,将不会写入到目标图片中,只有在改变Exif信息后,调用saveAttribute()才可以把新的Exif写入到目标图片中。
代码如下:
读取exif信息:
ExifInterface oldExif=new ExifInterface(pathImage);
Class exifInterfaceClass=ExifInterface.class;
Field[] fields=exifInterfaceClass.getFields();
for(int i=0;i
String fieldName = fields[i].getName();
if (!TextUtils.isEmpty(fieldName) && fieldName.startsWith("TAG")) {
String fieldValue = fields[i].get(exifInterfaceClass).toString();
String attribute = oldExif.getAttribute(fieldValue);
L.e("exif",fieldName+"-"+fieldValue+"-"+attribute);
}
}
旋转图片:
public String rotateImg(String imgPath, int maxSize) {
Bitmap bitmap=BitmapFactory.decodeFile(imgPath, null);
int rotate=0;
try {
ExifInterface old = new ExifInterface(imgPath);
int orientation=old.getAttributeInt(ExifInterface.TAG_ORIENTATION,0);
if(orientation==ExifInterface.ORIENTATION_ROTATE_90){
rotate=90;
}else if(orientation==ExifInterface.ORIENTATION_ROTATE_270){
rotate=270;
}else if(orientation==ExifInterface.ORIENTATION_ROTATE_180){
rotate=180;
}
} catch (IOException e) {
e.printStackTrace();
}
Matrix matrix=new Matrix();
matrix.setRotate(rotate, bitmap.getWidth()/2,bitmap.getHeight()/2);
Bitmap tempBitmap=Bitmap.createBitmap(bitmap,0,0,bitmap.getWidth(),bitmap.getHeight(),matrix,true);
if(tempBitmap!=bitmap){
bitmap.recycle();
}
return qualityCompressImg(tempBitmap, imgPath, maxSize);
}
如果rotate=0,recycle(),会有问题?
因为 tempBitmap和bitmap可能会是同一个
Bitmap.createBitmap,源bitmap和目标bitmap可能是同一个
6、七牛 上传图片
new Thread(new Runnable() {
@Override
public void run() {
try {
URL url=new URL("http://101.201.211.229/zbhq/Home/BabyShow/upToken");
HttpURLConnection connection= (HttpURLConnection) url.openConnection();
connection.connect();
if(connection.getResponseCode()==200){
InputStream inputStream=connection.getInputStream();
ByteArrayOutputStream outputStream=new ByteArrayOutputStream();
byte[] buff=new byte[1024];
int len=0;
while ((len=inputStream.read(buff))!=-1){
outputStream.write(buff,0,len);
}
String jsonString=outputStream.toString();
outputStream.close();
inputStream.close();
JSONObject jsonObject=new JSONObject(jsonString);
final String code=jsonObject.getString("code");
final String uptoken=jsonObject.getString("uptoken");
UploadManager uploadManager=new UploadManager();
String key="babyShow/" +System.currentTimeMillis();
uploadManager.put(uploadPath, key, uptoken, new UpCompletionHandler() {
@Override
public void complete(String key, ResponseInfo info, JSONObject response) {
final String path="http://7xrpiy.com1.z0.glb.clouddn.com/"+key;
text2.setText(code + ":" + path);
new Thread(new Runnable() {
@Override
public void run() {
try {
URL url1=new URL(path);
HttpURLConnection connection1= (HttpURLConnection) url1.openConnection();
if(connection1.getResponseCode()==200){
InputStream inputStream1=connection1.getInputStream();
final Bitmap bitmap=BitmapFactory.decodeStream(inputStream1);
runOnUiThread(new Runnable() {
@Override
public void run() {
imageView2.setImageBitmap(bitmap);
}
});
inputStream1.close();
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}
}, null);
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (JSONException e) {
e.printStackTrace();
}
}
}).start();
七牛 上传图片
标签:
相关推荐:
最新新闻:
- 电脑闹铃怎么设置?如何用电脑设置好闹钟?
- Touch HD全面剖析 直板手机大势所趋
- mysql使用EXPIN脚本的执行效率 PHP综合应用介绍
- 怎么设置电脑自动开关机?设置自动开关机的具体步骤
- mysql出现无效连接属性异常如何处理?_世界快播报
- 提示ijl15.dll文件丢失或损坏怎么办?ijl15.dll文件丢失原因分析及解决方法
- linux arp 防火墙关闭 如何关闭360安全卫士的ARP防火墙?
- 如何卸载冰点还原精灵?怎么才能把他彻底删除?
- formatconverters.exe是什么软件?使用说明及注意事项
- 解锁bootloader是什么意思?解锁bootloader会清除数据吗?
- 【源代码】java.util.Vector容器源代码详解
- 领域驱动设计——Domain-drivenDesign:全球快消息
- PDG文件是什么格式?PDG文件打开方法
- javascript中的时间日期 Oracle的连接符 环球热资讯
- trustedinstaller.exe是什么意思?如何解决其CPU占用率问题?
- IE浏览器打不开卡死崩溃了该怎么修复?有什么修复方法?
- beacon时槽什么意思?beacon时槽越大越好吗?
- wifi发射器怎么用?介绍WiFi发射器的用法步骤
- 天天最新:xlive.dll丢失怎么解决?xlive.dll没有被指定在windows运行怎么解决?
- 主板上都有哪些接口?主板上各接口都有什么用?
- rar密码有什么破解方法?解密文件有什么方法?
- 什么是百度权重?百度权重详解及影响因素
- 打印机和复印机的辐射量有多大?打印机和复印机的辐射量
- iphone表情符号如何添加?iphone表情符号添加方法 -速看
- 腾龙镜头多少钱?腾龙镜头型号及报价大全
- zmud之小技巧 自动enforce和enchant的最大值是什么?:环球快资讯
- 【全球播资讯】门店客流量如何统计?门店客流分析的重要性
- 回顾腾讯QQ的成长发展史(1998-2016年)-环球热门
- 最新资讯:张一鸣:华为人才基因的真正密码
- 世界快资讯丨“橡皮擦”用英语该怎么说?橡皮擦的英文说法
- Arduinomega2560控制42步进电机接线图
- 全球即时看!乐视手机怎么样?乐视手机好用吗?
- win10关闭自动更新后怎么更新?win10关闭自动更新后更新方法|全球新动态
- 全球速递!tcl液晶监视器你了解多少?tcl液晶监视器的价格
- uushare书签:用于收藏网址的一种工具_世界焦点
- 扫雷和空当接龙freecell:算法深度优先_视点
- 环球热门:激光器结构原理是什么?激光器结构原理介绍
- 索尼投影机价格怎么样?sony投影机功能如何?
- 自助建站到底是什么?如何免费生成一个网站?
- 【反汇编】ce附加红警3找钱的进程:环球速递
- 快讯:索尼psp游戏机多少钱?索尼psp报价及相关介绍
- 【扑克类】多例模式的概念和作用
- pH、水温、溶解氧的指标图 pH值偏高有什么危害吗?-环球快播报
- 三星c3500怎么样?三星c3500最新报价
- 网卡是什么?网卡有什么功能?
- 全球微动态丨android代码拿到图片路径 mimeType获取图片的方法
- 最新消息:广东2019年3月全国计算机二级考试报名时间及流程
- 硕美科g927怎么样?硕美科g927好不好?
- 一台空调一小时用多少电?空调耗电如何计算?|快报
- rayfile网盘功能介绍 rayfile网盘安装步骤及安装注意事项
- 观点:金融市场的功能有哪些?金融市场的功能介绍
- 4099元!荣耀80 Pro三体动画限量版开售 定制主题
- 最低配置是什么意思?赛博朋克2077配置要求2022
- RMSE、MAE、MSE 如何衡量模型效果好坏?-全球看热讯
- 如何让视障用户更好使用你的网站?10条网站易用性技巧
- 最新资讯:张一鸣:华为人才基因的真正密码
- 【技术】硬盘存储器的层次结构及原理
- 【反汇编】ce附加红警3找钱的进程:环球速递
- 马冬晗学习计划表 清华学霸计划表曝光-精选
- 供应商的选择、评审和动态管理的方法 焦点快播
- 环球快讯:《霹雳五号》:一个机器人的自我意识
- mcafee修复所有漏洞 没有让客户暴露在风险之中
- rar密码有什么破解方法?解密文件有什么方法?
- 每日动态!厨房管理游戏《末日等待》Steam页面上线 支持简中
- 网飞推出AI视频短片《犬与少年》 实验性作品
- 【天天时快讯】《艾尔登法环》Steam页面后台更新 或是将有新内容发布
- 正荣地产:1月合约销售金额约为13.56亿元|世界看热讯
- rayfile网盘功能介绍 rayfile网盘安装步骤及安装注意事项
- 硬盘整数分区怎么计算?NTFS整数分区数值表分享
- bin文件夹是什么?bin文件删了有什么影响?
- Bodypaint 3D怎么用?Bodypaint 3D安装使用方法
- DLL是什么?winmm.dll丢失怎么解决?
- 硬盘温度多少度才算正常?硬盘温度过高怎么办呢?
- 积分电路是什么?积分电路的原理和作用
- XPS Viewer是什么软件?XPS Viewer的使用方法