blob: 435d0851afe3e498deea306b7200ba8fd1e81267 [file] [log] [blame]
/*
* Copyright 2021 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include <jni.h>
#include "include/core/SkImage.h"
namespace {
jlong Image_Create(JNIEnv* env, jobject, jbyteArray jdata) {
auto size = env->GetArrayLength(jdata);
auto* data = env->GetByteArrayElements(jdata, nullptr);
auto image = SkImage::MakeFromEncoded(SkData::MakeWithCopy(data, SkToSizeT(size)));
env->ReleaseByteArrayElements(jdata, data, 0);
return reinterpret_cast<jlong>(image.release());
}
void Image_Release(JNIEnv*, jobject, jlong native_instance) {
SkSafeUnref(reinterpret_cast<const SkImage*>(native_instance));
}
jint Image_GetWidth(JNIEnv*, jobject, jlong native_instance) {
const auto* image = reinterpret_cast<const SkImage*>(native_instance);
return image ? image->width() : 0;
}
jint Image_GetHeight(JNIEnv*, jobject, jlong native_instance) {
const auto* image = reinterpret_cast<const SkImage*>(native_instance);
return image ? image->height() : 0;
}
} // namespace
int register_androidkit_Image(JNIEnv* env) {
static const JNINativeMethod methods[] = {
{"nCreate" , "([B)J", reinterpret_cast<void*>(Image_Create) },
{"nRelease" , "(J)V" , reinterpret_cast<void*>(Image_Release) },
{"nGetWidth" , "(J)I" , reinterpret_cast<void*>(Image_GetWidth) },
{"nGetHeight", "(J)I" , reinterpret_cast<void*>(Image_GetHeight)},
};
const auto clazz = env->FindClass("org/skia/androidkit/Image");
return clazz
? env->RegisterNatives(clazz, methods, SK_ARRAY_COUNT(methods))
: JNI_ERR;
}