public static Bitmap getComponseBitmap(Bitmap src, Bitmap src2){ if(src == null || src2 == null) return null; int width = src.getWidth(); int h...
分类:
其他好文 时间:
2014-07-16 19:49:20
阅读次数:
167
// 羽化效果 public static Bitmap changeToEclosion(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[...
分类:
其他好文 时间:
2014-07-16 19:45:44
阅读次数:
171
// 卡通效果 public static Bitmap changeToCarton(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:
其他好文 时间:
2014-07-16 19:40:27
阅读次数:
158
自己写个小程序,需求图片转马赛克.protected Bitmap mosic(Bitmap bitmap){ int bitWidth = bitmap.getWidth(); int bitHeight = bitmap.getHeight(); int...
分类:
移动开发 时间:
2014-07-10 10:17:35
阅读次数:
202
有时候需要在onCreate方法中知道某个View组件的宽度和高度等信息, 而直接调用View组件的getWidth()、getHeight()、getMeasuredWidth()、getMeasuredHeight()、getTop()、getLeft()等方法是无法获取到真实值的,只会得到0。...
分类:
移动开发 时间:
2014-07-09 20:51:46
阅读次数:
539
1、缩放 public Bitmap scalingBitmap(Bitmap bitmap, int newW, int newH) { int w = bitmap.getWidth(); int h = bitmap.getHeight(); float sx = (float) new...
分类:
移动开发 时间:
2014-07-09 19:15:58
阅读次数:
231
图片放大的思路: 第一、可以通过Matrix对象来变换图像,在选择的时候放大,在失去焦点的时候,缩小到原来的大小。double scale = 1.2;int width = bm.getWidth();int height = bm.getHeight();Log.i("size:", wi...
分类:
移动开发 时间:
2014-07-09 16:35:13
阅读次数:
234
/**
* 按正方形裁切图片
*/
public static Bitmap ImageCrop(Bitmap bitmap) {
int w = bitmap.getWidth(); // 得到图片的宽,高
int h = bitmap.getHeight();
int wh = w > h ? h : w;// 裁切...
分类:
移动开发 时间:
2014-07-09 10:33:18
阅读次数:
233
在开发的过程中,有时候需要获取窗口的大小,在OnCreate中由于窗口还未绘制因此通过GetWidth()与GetHeight()得到的宽高都为0,那应该如何获取窗口的大小呢,上代码:LinearLayout layout = (LinearLayout) findViewById(R.id.lay...
分类:
移动开发 时间:
2014-06-26 23:32:08
阅读次数:
217
今天使用Display获取屏幕的宽和高时出现下面的提示:Display
dp=getWindowManager().getDefaultDisplay(); int Height=dp.getHeight();
---->The method getHeight() from t...
分类:
其他好文 时间:
2014-06-03 11:37:47
阅读次数:
395