sucese / phoenix

The one-stop solution for taking pictures / videos, picture / video selection, editing and compression on the Android platform.
Apache License 2.0
1.62k stars 288 forks source link

尺寸压缩锯齿严重 #51

Open heronghu opened 6 years ago

heronghu commented 6 years ago

你好,我把一张大图压缩尺寸,锯齿非常严重,请问有好的解决方案吗?(10001000压到100100)

sucese commented 6 years ago

public static Bitmap createScaledBitmap(Bitmap src,int dstWidth,int dstHeight,boolean filter)

filter设置为true的时候会对图片做滤波处理,有抗锯齿效果。

heronghu commented 6 years ago

我以为库里有自己的方法,android原生的是不行的,锯齿很严重。

heronghu commented 6 years ago

我看文档有说Lanczos 采样、双立方/双三次采样,但是在代码里没有看到

sucese commented 6 years ago

是的,这个需要借助第三方库,phoenix里用来还是系统原生的那一套。