1、主Activity的源代码:package com.jhtg.happyagent;import android.annotation.SuppressLint;import android.app.Activity;import android.graphics.Bitmap;import a...
分类:
移动开发 时间:
2014-07-16 21:05:23
阅读次数:
144
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
// 光照效果函数 public static Bitmap changeToLight(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int pixColor = 0; in...
分类:
其他好文 时间:
2014-07-16 19:37:15
阅读次数:
183
//哈哈镜效果 public static Bitmap changeToHaha(Bitmap bitmap){ int centerX = bitmap.getWidth() / 2; int centerY = bitmap.getHeight() / 2; float radius =...
分类:
其他好文 时间:
2014-07-16 19:36:51
阅读次数:
193
// 铸融效果 public static Bitmap changeToMolten(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:
其他好文 时间:
2014-07-16 19:36:35
阅读次数:
141
// 怀旧效果函数 public static Bitmap changeToOld(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.i("OldFilter", "wid...
分类:
其他好文 时间:
2014-07-16 19:36:26
阅读次数:
178
// 油画效果 public static Bitmap changeToOil(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[width...
分类:
其他好文 时间:
2014-07-12 13:48:45
阅读次数:
177
/**
* 将中间的View保转换成Bitmap
*
*/
private Bitmap saveViewBitmap(View view) {
// get current view bitmap
view.setDrawingCacheEnabled(true);
view.buildDrawingCache(true);
Bitmap bitmap = vie...
分类:
其他好文 时间:
2014-07-10 21:31:01
阅读次数:
195