xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡介

自己編寫的一個edit的類,可以調節圖片的飽和度,亮度,對比度。直接復制到工程文件下使用,

資源截圖

代碼片段和文件信息

package?com.bear.ptu;
//版權歸bearever所有
import?android.graphics.Bitmap;
import?android.graphics.Canvas;
import?android.graphics.ColorMatrix;
import?android.graphics.ColorMatrixColorFilter;
import?android.graphics.Paint;
import?android.graphics.Bitmap.Config;
//圖片的飽和度,對比度,亮度調節!!
public?class?edit?{
?int?imgHeightimgWidth;
?
//設置飽和度
public?Bitmap?Saturation(Bitmap?mapfloat?s){//s的值在0-1

????????imgHeight?=?map.getHeight();??
????????imgWidth?=?map.getWidth();??
?Bitmap?bmp?=?Bitmap.createBitmap(imgWidth?imgHeight??
?????????????????Config.ARGB_8888);??
?????????ColorMatrix?cMatrix?=?new?ColorMatrix();??
?????????//?設置飽和度??.
?????????cMatrix.setSaturation(s);??
?????????Paint?paint?=?new?Paint();??
?????????paint.setColorFilter(new?ColorMatrixColorFilter(cMatrix));??
?????????Canvas

評論

共有 條評論