1/* 2 * Copyright (C) 2009 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#ifndef ANDROID_BITMAP_H 18#define ANDROID_BITMAP_H 19 20#include <sys/cdefs.h> 21#include <stdint.h> 22#include <jni.h> 23 24__BEGIN_DECLS 25 26#define ANDROID_BITMAP_RESULT_SUCCESS 0 27#define ANDROID_BITMAP_RESULT_BAD_PARAMETER -1 28#define ANDROID_BITMAP_RESULT_JNI_EXCEPTION -2 29#define ANDROID_BITMAP_RESULT_ALLOCATION_FAILED -3 30 31/* Backward compatibility: this macro used to be misspelled. */ 32#define ANDROID_BITMAP_RESUT_SUCCESS ANDROID_BITMAP_RESULT_SUCCESS 33 34enum AndroidBitmapFormat { 35 ANDROID_BITMAP_FORMAT_NONE = 0, 36 ANDROID_BITMAP_FORMAT_RGBA_8888 = 1, 37 ANDROID_BITMAP_FORMAT_RGB_565 = 4, 38 ANDROID_BITMAP_FORMAT_RGBA_4444 = 7, 39 ANDROID_BITMAP_FORMAT_A_8 = 8, 40}; 41 42typedef struct { 43 uint32_t width; 44 uint32_t height; 45 uint32_t stride; 46 int32_t format; 47 uint32_t flags; // 0 for now 48} AndroidBitmapInfo; 49 50/** 51 * Given a java bitmap object, fill out the AndroidBitmap struct for it. 52 * If the call fails, the info parameter will be ignored 53 */ 54int AndroidBitmap_getInfo(JNIEnv* env, jobject jbitmap, 55 AndroidBitmapInfo* info); 56 57/** 58 * Given a java bitmap object, attempt to lock the pixel address. 59 * Locking will ensure that the memory for the pixels will not move 60 * until the unlockPixels call, and ensure that, if the pixels had been 61 * previously purged, they will have been restored. 62 * 63 * If this call succeeds, it must be balanced by a call to 64 * AndroidBitmap_unlockPixels, after which time the address of the pixels should 65 * no longer be used. 66 * 67 * If this succeeds, *addrPtr will be set to the pixel address. If the call 68 * fails, addrPtr will be ignored. 69 */ 70int AndroidBitmap_lockPixels(JNIEnv* env, jobject jbitmap, void** addrPtr); 71 72/** 73 * Call this to balanace a successful call to AndroidBitmap_lockPixels 74 */ 75int AndroidBitmap_unlockPixels(JNIEnv* env, jobject jbitmap); 76 77__END_DECLS 78 79#endif /* ANDROID_BITMAP_H */ 80