OSDN Git Service

add support for black and white filters, add rotation API to tiny planet
[android-x86/packages-apps-Gallery2.git] / src / com / android / gallery3d / filtershow / filters / ImageFilterTinyPlanet.java
1 /*
2  * Copyright (C) 2012 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.android.gallery3d.filtershow.filters;
18
19 import android.graphics.Bitmap;
20
21 import com.android.gallery3d.filtershow.presets.ImagePreset;
22
23 /**
24  * An image filter which creates a tiny planet projection.
25  */
26 public class ImageFilterTinyPlanet extends ImageFilter {
27     private static final String TAG = ImageFilterTinyPlanet.class.getSimpleName();
28
29     public ImageFilterTinyPlanet() {
30         setFilterType(TYPE_TINYPLANET);
31         mName = "TinyPlanet";
32
33         mMinParameter = 10;
34         mMaxParameter = 60;
35         mDefaultParameter = 20;
36         mPreviewParameter = 20;
37         mParameter = 20;
38     }
39
40     native protected void nativeApplyFilter(
41             Bitmap bitmapIn, int width, int height, Bitmap bitmapOut, int outSize, float scale,
42             float angle);
43
44     @Override
45     public Bitmap apply(Bitmap bitmapIn, float scaleFactor, boolean highQuality) {
46         ImagePreset preset = getImagePreset();
47         if (preset != null) {
48             if (preset.isPanoramaSafe()) {
49                 // TODO(haeberling): Get XMPMeta object.
50                 Object xmp = preset.getImageLoader().getXmpObject();
51             } else {
52                 // TODO(haeberling): What should we do for:
53                 // !preset.isPanoramaSafe()?
54             }
55         }
56
57         int w = bitmapIn.getWidth();
58         int h = bitmapIn.getHeight();
59         int outputSize = Math.min(w, h);
60
61         Bitmap mBitmapOut = Bitmap.createBitmap(
62                 outputSize, outputSize, Bitmap.Config.ARGB_8888);
63
64         // TODO(haeberling): Add the padding back in based on the meta-data.
65         nativeApplyFilter(bitmapIn, w, h, mBitmapOut, outputSize, mParameter / 100f, 0f);
66         return mBitmapOut;
67     }
68 }