1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_GFX_ANDROID_JAVA_BITMAP_H_
6 #define UI_GFX_ANDROID_JAVA_BITMAP_H_
10 #include "base/android/scoped_java_ref.h"
11 #include "third_party/skia/include/core/SkBitmap.h"
12 #include "ui/gfx/geometry/size.h"
16 // A Java counterpart will be generated for this enum.
17 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.ui.gfx
19 BITMAP_FORMAT_NO_CONFIG
,
20 BITMAP_FORMAT_ALPHA_8
,
21 BITMAP_FORMAT_ARGB_4444
,
22 BITMAP_FORMAT_ARGB_8888
,
23 BITMAP_FORMAT_RGB_565
,
26 // This class wraps a JNI AndroidBitmap object to make it easier to use. It
27 // handles locking and unlocking of the underlying pixels, along with wrapping
28 // various JNI methods.
29 class GFX_EXPORT JavaBitmap
{
31 explicit JavaBitmap(jobject bitmap
);
34 inline void* pixels() { return pixels_
; }
35 inline const void* pixels() const { return pixels_
; }
36 inline const gfx::Size
& size() const { return size_
; }
37 // Formats are in android/bitmap.h; e.g. ANDROID_BITMAP_FORMAT_RGBA_8888
38 inline int format() const { return format_
; }
39 inline uint32_t stride() const { return stride_
; }
40 inline int byte_count() const { return byte_count_
; }
42 // Registers methods with JNI and returns true if succeeded.
43 static bool RegisterJavaBitmap(JNIEnv
* env
);
53 DISALLOW_COPY_AND_ASSIGN(JavaBitmap
);
56 // Allocates a Java-backed bitmap (android.graphics.Bitmap) with the given
57 // (non-empty!) size and color type.
58 GFX_EXPORT
base::android::ScopedJavaLocalRef
<jobject
> CreateJavaBitmap(
61 SkColorType color_type
);
63 // Converts |skbitmap| to a Java-backed bitmap (android.graphics.Bitmap).
64 // Note: |skbitmap| is assumed to be non-null, non-empty and one of RGBA_8888 or
66 GFX_EXPORT
base::android::ScopedJavaLocalRef
<jobject
> ConvertToJavaBitmap(
67 const SkBitmap
* skbitmap
);
69 // Converts |bitmap| to an SkBitmap of the same size and format.
70 // Note: |jbitmap| is assumed to be non-null, non-empty and of format RGBA_8888.
71 GFX_EXPORT SkBitmap
CreateSkBitmapFromJavaBitmap(const JavaBitmap
& jbitmap
);
73 // Returns a Skia color type value for the requested input java Bitmap.Config.
74 GFX_EXPORT SkColorType
ConvertToSkiaColorType(jobject jbitmap_config
);
78 #endif // UI_GFX_ANDROID_JAVA_BITMAP_H_