OSDN Git Service

Add the Drama filter
authorJohn Hoford <hoford@google.com>
Fri, 28 Dec 2012 23:45:57 +0000 (15:45 -0800)
committerJohn Hoford <hoford@google.com>
Wed, 9 Jan 2013 00:17:40 +0000 (16:17 -0800)
Change-Id: I6f026f899b9d991bd6f9e74445f68114041fe781

res/drawable/filtershow_button_colors_snapseed.png [new file with mode: 0644]
res/values/filtershow_ids.xml
res/values/filtershow_strings.xml
src/com/android/gallery3d/filtershow/FilterShowActivity.java
src_pd/com/android/gallery3d/filtershow/filters/ImageFilterDrama.java [new file with mode: 0644]

diff --git a/res/drawable/filtershow_button_colors_snapseed.png b/res/drawable/filtershow_button_colors_snapseed.png
new file mode 100644 (file)
index 0000000..3ceef4f
Binary files /dev/null and b/res/drawable/filtershow_button_colors_snapseed.png differ
index 0a94689..8569972 100644 (file)
@@ -29,6 +29,7 @@
     <item type="id" name="exposureButton" />
     <item type="id" name="shadowRecoveryButton" />
     <item type="id" name="sharpenButton" />
+    <item type="id" name="dramaButton" />
     <item type="id" name="curvesButtonRGB" />
     <item type="id" name="negativeButton" />
     <item type="id" name="edgeButton" />
index 7f96824..d19c15a 100644 (file)
     <string name="exposure" msgid="1229093066434614811">Exposure</string>
     <!--  Label for the image sharpness (clarity, distinctness) filter button [CHAR LIMIT=10] -->
     <string name="sharpness">Sharpness</string>
+    <!--  Label for the image Drama (striking, sensational) filter button [CHAR LIMIT=10] -->
+    <string name="drama">Drama</string>
     <!--  Label for the image contrast (color difference) filter button [CHAR LIMIT=10] -->
     <string name="contrast">Contrast</string>
     <!--  Label for the image vibrance (strengthens colors) filter button [CHAR LIMIT=10] -->
index 755bd80..fc4929e 100644 (file)
@@ -62,6 +62,7 @@ import com.android.gallery3d.filtershow.filters.ImageFilterBwFilter;
 import com.android.gallery3d.filtershow.filters.ImageFilterContrast;
 import com.android.gallery3d.filtershow.filters.ImageFilterCurves;
 import com.android.gallery3d.filtershow.filters.ImageFilterDownsample;
+import com.android.gallery3d.filtershow.filters.ImageFilterDrama;
 import com.android.gallery3d.filtershow.filters.ImageFilterDraw;
 import com.android.gallery3d.filtershow.filters.ImageFilterEdge;
 import com.android.gallery3d.filtershow.filters.ImageFilterExposure;
@@ -322,6 +323,7 @@ public class FilterShowActivity extends Activity implements OnItemClickListener,
                 new ImageFilterShadows(),
                 new ImageFilterVibrance(),
                 new ImageFilterSharpen(),
+                new ImageFilterDrama(),
                 new ImageFilterCurves(),
                 new ImageFilterDraw(),
                 new ImageFilterHue(),
diff --git a/src_pd/com/android/gallery3d/filtershow/filters/ImageFilterDrama.java b/src_pd/com/android/gallery3d/filtershow/filters/ImageFilterDrama.java
new file mode 100644 (file)
index 0000000..a44d4af
--- /dev/null
@@ -0,0 +1,71 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.gallery3d.filtershow.filters;
+
+import java.lang.Math;
+
+import android.app.Activity;
+import android.graphics.Bitmap;
+import android.renderscript.Allocation;
+import android.renderscript.Element;
+import android.renderscript.RenderScript;
+import android.renderscript.Script;
+import android.renderscript.ScriptC;
+import android.renderscript.Type;
+import android.util.Log;
+
+import com.android.gallery3d.R;
+
+public class ImageFilterDrama extends ImageFilterRS {
+
+    private static final String LOGTAG = "ImageFilterDrama";
+
+    public ImageFilterDrama() {
+        mName = "Drama";
+        mMinParameter = 0;
+    }
+
+    @Override
+    public int getButtonId() {
+        return R.id.dramaButton;
+    }
+
+    @Override
+    public int getTextId() {
+        return R.string.drama;
+    }
+
+    @Override
+    public int getOverlayBitmaps() {
+        return R.drawable.filtershow_button_colors_snapseed;
+    }
+
+    @Override
+    public int getEditingViewId() {
+        return R.id.imageZoom;
+    }
+
+    @Override
+    public void createFilter(android.content.res.Resources res, float scaleFactor,
+            boolean highQuality) {
+    }
+
+    @Override
+    public void runFilter() {
+    }
+
+}