Bitmap target= Bitmap.createBitmap(wIDth,height,Config.ARGB_8888);Canvas canvas = new Canvas(target) float hScale = wIDth/(float)source.getWIDth();float vScale = height/(float)source.getHeight();float scale = Math.min(hScale,vScale);Matrix matrix = new Matrix();matrix.setScale(scale,scale);matrix.postTranslate(wIDth/2 - source.getWIDth()/2 * scale,height/2 - source.getHeight()/2 * scale);canvas.drawcolor(color.BLACK);canvas.drawBitmap(source,matrix,new Paint());总结
以上是内存溢出为你收集整理的android – 裁剪到正方形全部内容,希望文章能够帮你解决android – 裁剪到正方形所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)