版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Android图形处理专题Load图形到内存1.数码相机照片特别大3m以上,内存吃不消,只显示原图的1/8通过BitmapFactory.Options来实现BitmapFactory.OptionsbmpFactoryOptions=newBitmapFactory.Options();bmpFactoryOptions.inSampleSize=8;Bitmapbmp=BitmapFactory.decodeFile(imageFilePath,bmpFactoryOptions);imv.setImageBitmap(bmp);Load图形到内存2.根据当前屏幕分辨率的大小,加载图片DisplaycurrentDisplay=getWindowManager().getDefaultDisplay();intdw=currentDisplay.getWidth();intdh=currentDisplay.getHeight();BitmapFactory.OptionsbmpFactoryOptions=newBitmapFactory.Options();bmpFactoryOptions.inJustDecodeBounds=true;Bitmapbmp=BitmapFactory.decodeFile(imageFilePath,bmpFactoryOptions);intheightRatio=(int)Math.ceil(bmpFactoryOptions.outHeight/(float)dh);intwidthRatio=(int)Math.ceil(bmpFactoryOptions.outWidth/(float)dw);Log.v("HEIGHTRATIO",""+heightRatio);Log.v("WIDTHRATIO",""+widthRatio);Load图形到内存2//判断是否要进行缩放if(heightRatio>1&&widthRatio>1){if(heightRatio>widthRatio){//高度变化大,按高度缩放bmpFactoryOptions.inSampleSize=heightRatio;}else{//宽度变化大,按宽度缩放bmpFactoryOptions.inSampleSize=widthRatio;}}bmpFactoryOptions.inJustDecodeBounds=false;bmp=BitmapFactory.decodeFile(imageFilePath,bmpFactoryOptions);获取Exif图片信息//从文件获取exif信息ExifInterfaceei=newExifInterface(imageFilePath);StringimageDescription=ei.getAttribute("ImageDescription");if(imageDescription!=null){Log.v("EXIF",imageDescription);}//把exif信息写到文件:ExifInterfaceei=newExifInterface(imageFilePath);ei.setAttribute("ImageDescription","SomethingNew");从gallery获取一个图片Intentintent=newIntent(Intent.ACTION_PICK);intent.setType(“image/*”);intent.getData()获取image的uriBitmapbmp=BitmapFactory.decodeStream(getContentResolver().openInputStream(imageFileUri),null,bmpFactoryOptions);创建bitmap拷贝Bitmapbmp=BitmapFactory.decodeStream(getContentResolver().openInputStream(imageFileUri),null,bmpFactoryOptions);BitmapalteredBitmap=Bitmap.createBitmap(bmp.getWidth(),bmp.getHeight(),bmp.getConfig());Canvascanvas=newCanvas(alteredBitmap);Paintpaint=newPaint();canvas.drawBitmap(bmp,0,0,paint);图形缩放Matrixmatrix=newMatrix();matrix.setValues(newfloat[]{ 1,0,0, 0,1,0, 0,0,1});x=1x+0y+0zy=0x+1y+0zz=0x+0y+1z通过canvas.drawBitmap(bmp,matrix,paint);创建bitmap1.水平缩放0.52.垂直拉扯2倍matrix.setScale(1.5f,1);//水平点放大到1.5f,垂直1图形旋转Matrixmatrix=newMatrix();matrix.setRotate(15);canvas.drawBitmap(bmp,matrix,paint);消除锯齿paint.setAntiAlias(true);指定圆心的旋转matrix.setRotate(15,bmp.getWidth()/2,bmp.getHeight()/2);Matrixmatrix=newMatrix();matrix.setRotate(15,bmp.getWidth()/2,bmp.getHeight()/2);alteredBitmap=Bitmap.createBitmap(bmp,0,0,bmp.getWidth(),bmp.getHeight(),matrix,false);alteredImageView.setImageBitmap(alteredBitmap);图形平移setTranslate(1.5f,-10);镜子效果matrix.setScale(-1,1);matrix.postTranslate(bmp.getWidth(),0);倒影效果matrix.setScale(1,-1);matrix.postTranslate(0,bmp.getHeight());图像颜色处理颜色矩阵ColorMatrixcm=newColorMatrix();paint.setColorFilter(newColorMatrixColorFilter(cm));10000010000010000010NewRedValue=1*128+0*128+0*128+0*0+0NewBlueValue=0*128+1*128+0*128+0*0+0NewGreenValue=0*128+0*128+1*128+0*0+0NewAlphaValue=0*128+0*128+0*128+1*0+0ColorMatrixcm=newColorMatrix();cm.set(newfloat[]{2,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0});paint.setColorFilter(newColorMatrixColorFilter(cm));变换图像的亮度ColorMatrixcm=newColorMatrix();floatcontrast=2;cm.set(newfloat[]{contrast,0,0,0,0,0,contrast,0,0,0,0,0,contrast,0,0,0,0,0,1,0});paint.setColorFilter(newColorMatrixColorFilter(cm));更改图片饱和度ColorMatrixcm=newColorMatrix();cm.setSaturation(.5f);paint.setColorFilter(newColorMatrixColorFilter(cm));图片合成BitmapdrawingBitmap=Bitmap.createBitmap(bmp1.getWidth(),bmp1.getHeight(),bmp1.getConfig());canvas=newCanvas(drawingBitmap);paint=newPaint();canvas.drawBitmap(bmp1,0,0,paint);paint.setXfermode(newPorterDuffXfermode(android.graphics.PorterDuff.Mode.MULTIPLY));canvas.drawBitmap(bmp2,0,0,paint);按指定path上绘制文字Paintpaint=newPaint();paint.setColor(Color.GREEN);paint.setTextSize(20);paint.setTypeface(Typeface.DEFAULT);Pathp=newPath();p.moveTo(20,20);p.lineTo(100,150);p.lineTo(200,220);canvas.drawTextOnPath("Hellothisistextonapath",p,0,0,paint);图片编辑画画板人脸识别FaceDetectordetector=newFaceDetector(faceBitmap.getWidth(),faceBitmap.getHeight(),3);//创建识别器mNumFaces
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025交通事故致人死亡赔偿协议书14篇
- 借款借贷合同协议书七篇
- 补水美容病因介绍
- 内蒙古通辽市(2024年-2025年小学六年级语文)统编版能力评测(下学期)试卷及答案
- 全国赛课一等奖初中统编版七年级道德与法治上册单元思考与行动《追求美好人生》精美课件
- (2024年)艺术学校建设项目可行性研究报告
- 【中职专用】中职对口高考-机电与机制类专业-核心课-模拟试卷1(河南适用)(答案版)
- 2023年天津市和平区高考语文三模试卷
- 2023年复合管道项目融资计划书
- 蔬菜园艺工中级考试题
- GB/T 30002-2024儿童牙刷通用技术要求
- 动画制作员(高级工)技能鉴定理论考试题库(含答案)
- 2024年婴幼儿发展引导员(高级)职业技能鉴定考试题库(含答案)
- 中日标准件对照表
- (完整版)密闭式静脉输液技术操作评分标准
- 《贲门失弛缓症》PPT课件课件
- 坝基渗漏问题分析
- 汽车连杆加工工艺规程及夹具设计毕业论文 (1)
- RP90型吉他综合效果处理器操作手册
- 外研版小学英语(三起)五年级下册单词表(含音标)
- 小化肥生产原理及过程
评论
0/150
提交评论