diff options
-rw-r--r-- | src/com/android/gallery3d/filtershow/category/Action.java | 2 | ||||
-rw-r--r-- | src/com/android/gallery3d/filtershow/tools/IconFactory.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/gallery3d/filtershow/category/Action.java b/src/com/android/gallery3d/filtershow/category/Action.java index 506b2bf0f..b46147961 100644 --- a/src/com/android/gallery3d/filtershow/category/Action.java +++ b/src/com/android/gallery3d/filtershow/category/Action.java @@ -134,7 +134,7 @@ public class Action implements RenderingRequestCaller { m.mapRect(image); m.setRectToRect(image, frame, Matrix.ScaleToFit.FILL); Canvas canvas = new Canvas(destination); - canvas.drawBitmap(source, m, new Paint()); + canvas.drawBitmap(source, m, new Paint(Paint.FILTER_BITMAP_FLAG)); } @Override diff --git a/src/com/android/gallery3d/filtershow/tools/IconFactory.java b/src/com/android/gallery3d/filtershow/tools/IconFactory.java index ccc49e13d..9e39f27fc 100644 --- a/src/com/android/gallery3d/filtershow/tools/IconFactory.java +++ b/src/com/android/gallery3d/filtershow/tools/IconFactory.java @@ -103,6 +103,6 @@ public class IconFactory { rec.roundOut(srcRect); } - canvas.drawBitmap(sourceImage, srcRect, destRect, new Paint()); + canvas.drawBitmap(sourceImage, srcRect, destRect, new Paint(Paint.FILTER_BITMAP_FLAG)); } } |