blob: 1aebeaf1e7e83749130e4a1a3697ce119875bad3 [file] [log] [blame]
Dima Zavin32276312010-02-04 12:15:09 -08001/*
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#include <android/bitmap.h>
Derek Sollenberger6c41ab12019-11-08 08:50:58 -050018#include <android/graphics/bitmap.h>
Dima Zavin32276312010-02-04 12:15:09 -080019
20int AndroidBitmap_getInfo(JNIEnv* env, jobject jbitmap,
21 AndroidBitmapInfo* info) {
22 if (NULL == env || NULL == jbitmap) {
23 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
24 }
25
Dima Zavin32276312010-02-04 12:15:09 -080026 if (info) {
Derek Sollenberger6c41ab12019-11-08 08:50:58 -050027 *info = ABitmap_getInfoFromJava(env, jbitmap);
Dima Zavin32276312010-02-04 12:15:09 -080028 }
Andrew Hsieheba82542012-12-12 11:27:44 +080029 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080030}
31
32int AndroidBitmap_lockPixels(JNIEnv* env, jobject jbitmap, void** addrPtr) {
33 if (NULL == env || NULL == jbitmap) {
34 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
35 }
36
Derek Sollenberger6c41ab12019-11-08 08:50:58 -050037 android::graphics::Bitmap bitmap(env, jbitmap);
38 void* addr = bitmap.isValid() ? bitmap.getPixels() : nullptr;
39
John Reck00799f72017-03-01 18:05:41 -080040 if (!addr) {
Dima Zavin32276312010-02-04 12:15:09 -080041 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
42 }
43
Derek Sollenberger6c41ab12019-11-08 08:50:58 -050044 ABitmap_acquireRef(bitmap.get());
45
Dima Zavin32276312010-02-04 12:15:09 -080046 if (addrPtr) {
47 *addrPtr = addr;
48 }
Andrew Hsieheba82542012-12-12 11:27:44 +080049 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080050}
51
52int AndroidBitmap_unlockPixels(JNIEnv* env, jobject jbitmap) {
53 if (NULL == env || NULL == jbitmap) {
54 return ANDROID_BITMAP_RESULT_BAD_PARAMETER;
55 }
56
Derek Sollenberger6c41ab12019-11-08 08:50:58 -050057 android::graphics::Bitmap bitmap(env, jbitmap);
58
59 if (!bitmap.isValid()) {
Dima Zavin32276312010-02-04 12:15:09 -080060 return ANDROID_BITMAP_RESULT_JNI_EXCEPTION;
61 }
Derek Sollenberger6c41ab12019-11-08 08:50:58 -050062
63 bitmap.notifyPixelsChanged();
64 ABitmap_releaseRef(bitmap.get());
Andrew Hsieheba82542012-12-12 11:27:44 +080065 return ANDROID_BITMAP_RESULT_SUCCESS;
Dima Zavin32276312010-02-04 12:15:09 -080066}