我不知道如何对图像应用不同的效果,
我已经看到效果类中的EffectFactory类和Effect类有一种方法apply 但我不确定在inputTexId和optputTexId中传递什么,以及从哪里获得新的更新图像,如何将更新的图像存储在imageView中,
请帮助我解决这个问题。是否有任何开源库可用于在 Image.js 上提供效果。
谢谢,
我不知道如何对图像应用不同的效果,
我已经看到效果类中的EffectFactory类和Effect类有一种方法apply 但我不确定在inputTexId和optputTexId中传递什么,以及从哪里获得新的更新图像,如何将更新的图像存储在imageView中,
请帮助我解决这个问题。是否有任何开源库可用于在 Image.js 上提供效果。
谢谢,
我已经实现了Jerry 的 Java 图像处理库。对我来说很好。
下载AndroidJars。
编辑
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
//Find the bitmap's width height
int width = AndroidUtils.getBitmapOfWidth(getResources(), R.drawable.ic_launcher);
int height = AndroidUtils.getBitmapOfHeight(getResources(), R.drawable.ic_launcher);
//Create a filter object.
GaussianFilter filter = new GaussianFilter();
//set???? function to specify the various settings.
filter.setRadius(8.5f);
//Change int Array into a bitmap
int[] src = AndroidUtils.bitmapToIntArray(bitmap);
//Applies a filter.
filter.filter(src, width, height);
//Change the Bitmap int Array (Supports only ARGB_8888)
Bitmap dstBitmap = Bitmap.createBitmap(src, width, height, Config.ARGB_8888);
在Android-jhlabs中查找更多详细信息
您可以使用 Catalano 框架:
http://code.google.com/p/catalano-framework/
FastBitmap image = new FastBitmap(bitmap);
image.toRGB();
//Sepia
Sepia sepia = new Sepia();
sepia.applyInPlace(image);
//Blur
Blur blur = new Blur();
blur.applyInPlace(image);
//Emboss
Emboss emboss = new Emboss();
emboss.applyInPlace(image);
//Retrieve bitmap
bitmap = fb.toBitmap();
这是一个优秀的库,易于与 gradle 集成,它快速高效,节省了我的时间:
https://github.com/wasabeef/picasso-transformations
这是它如何使用的一个例子:
Transformation trans1 = new ContrastFilterTransformation(getActivity(), 1.5f);
Transformation trans2 = new BrightnessFilterTransformation(getActivity(), 0.2f);
Picasso.with(getActivity()).load(uri)
.transform(trans1).transform(trans2).into(imageview3);