⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gnu_java_awt_peer_gtk_gtkimage.c

📁 gcc的组建
💻 C
📖 第 1 页 / 共 2 页
字号:
/* gtkimage.c   Copyright (C) 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */#include "jcl.h"#include "gtkpeer.h"#include "gnu_java_awt_peer_gtk_GtkImage.h"#include <gdk-pixbuf/gdk-pixbuf.h>/* The constant fields in java.awt.Image */   #define SCALE_DEFAULT      1#define SCALE_FAST         2#define SCALE_SMOOTH       4#define SCALE_REPLICATE    8 #define SCALE_AREA_AVERAGING  16/* local stuff */static GdkInterpType mapHints(jint hints);static jboolean offScreen (JNIEnv * env, jobject obj);static void *getData (JNIEnv * env, jobject obj);static void createRawData (JNIEnv * env, jobject obj, void *ptr);static void setWidthHeight (JNIEnv * env, jobject obj, int width, int height);/** * Loads a pixmap from a file. */JNIEXPORT jboolean JNICALLJava_gnu_java_awt_peer_gtk_GtkImage_loadPixbuf  (JNIEnv *env, jobject obj, jstring name){  const char *filename;  int width, height;  GdkPixbuf *pixbuf;  gdk_threads_enter ();  /* Don't use the JCL convert function because it throws an exception     on failure */  filename = (*env)->GetStringUTFChars (env, name, 0);  if (filename == NULL)    {      gdk_threads_leave ();      return JNI_FALSE;    }  pixbuf = gdk_pixbuf_new_from_file (filename, NULL);  if (pixbuf == NULL)    {      (*env)->ReleaseStringUTFChars (env, name, filename);      gdk_threads_leave ();      return JNI_FALSE;    }  width =  gdk_pixbuf_get_width (pixbuf);  height = gdk_pixbuf_get_height (pixbuf);    createRawData (env, obj, pixbuf);  setWidthHeight(env, obj, width, height);  (*env)->ReleaseStringUTFChars (env, name, filename);  gdk_threads_leave ();  return JNI_TRUE;}/* * Creates the image from an array of java bytes. */JNIEXPORT jboolean JNICALLJava_gnu_java_awt_peer_gtk_GtkImage_loadImageFromData  (JNIEnv *env, jobject obj, jbyteArray data){  jbyte *src;  GdkPixbuf* pixbuf;  GdkPixbufLoader* loader;  int len;  int width;  int height;  gdk_threads_enter ();  src = (*env)->GetByteArrayElements (env, data, NULL);  len = (*env)->GetArrayLength (env, data);  loader = gdk_pixbuf_loader_new ();  gdk_pixbuf_loader_write (loader, (guchar *)src, len, NULL);  gdk_pixbuf_loader_close (loader, NULL);  (*env)->ReleaseByteArrayElements (env, data, src, 0);  pixbuf = gdk_pixbuf_loader_get_pixbuf (loader);  if (pixbuf == NULL)    {      createRawData (env, obj, NULL);      gdk_threads_leave ();      return JNI_FALSE;    }  width =  gdk_pixbuf_get_width (pixbuf);  height = gdk_pixbuf_get_height (pixbuf);  createRawData (env, obj, pixbuf);  setWidthHeight(env, obj, width, height);  gdk_threads_leave ();  return JNI_TRUE;}JNIEXPORT void JNICALLJava_gnu_java_awt_peer_gtk_GtkImage_createFromPixbuf(JNIEnv *env, jobject obj){  int width, heigth;  GdkPixbuf *pixbuf = (GdkPixbuf *) getData (env, obj);  gdk_threads_enter ();  width =  gdk_pixbuf_get_width (pixbuf);  heigth = gdk_pixbuf_get_height (pixbuf);  gdk_threads_leave ();  setWidthHeight(env, obj, width, heigth);}/** * Returns a copy of the pixel data as a java array. */JNIEXPORT jintArray JNICALL Java_gnu_java_awt_peer_gtk_GtkImage_getPixels(JNIEnv *env, jobject obj){  GdkPixbuf *pixbuf;  int width, height, rowstride;  guchar *pixeldata;  jintArray result_array;  jint *result_array_iter, *dst;  int i,j;  gdk_threads_enter ();  pixbuf = cp_gtk_image_get_pixbuf (env, obj);  width =  gdk_pixbuf_get_width (pixbuf);  height = gdk_pixbuf_get_height (pixbuf);  rowstride = gdk_pixbuf_get_rowstride (pixbuf);  result_array = (*env)->NewIntArray (env, (width * height));  dst = result_array_iter =     (*env)->GetIntArrayElements (env, result_array, NULL);  pixeldata = gdk_pixbuf_get_pixels (pixbuf);  g_assert (gdk_pixbuf_get_bits_per_sample (pixbuf) == 8);  if (gdk_pixbuf_get_has_alpha (pixbuf))    {      for(i = 0 ; i < height; i++)	{	  memcpy(dst, (void *)pixeldata, width * 4);	  dst += width;	  pixeldata += rowstride;	}    } else {      for(i = 0; i < height; i++)	{	  for(j = 0; j < width; j++)	    dst[j] = 0xFF000000 |	      (pixeldata[j*3 + 2] & 0xFF) << 16 |	      (pixeldata[j*3 + 1] & 0xFF) << 8 |	      (pixeldata[j*3] & 0xFF);	  dst += width;	  pixeldata += rowstride;	}    }    if (offScreen (env, obj) == JNI_TRUE)    gdk_pixbuf_unref (pixbuf);  (*env)->ReleaseIntArrayElements (env, result_array, result_array_iter, 0);      gdk_threads_leave ();  return result_array;}/** * Returns a copy of the pixel data as a java array. * (GdkPixbuf only) */JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_GtkImage_setPixels(JNIEnv *env, jobject obj,					      jintArray pixels){  GdkPixbuf *pixbuf = (GdkPixbuf *)getData (env, obj);  int width, height, rowstride;  guchar *pixeldata;  jint *src_array_iter, *src;  int i;  gdk_threads_enter ();  width =  gdk_pixbuf_get_width (pixbuf);  height = gdk_pixbuf_get_height (pixbuf);  rowstride = gdk_pixbuf_get_rowstride (pixbuf);  src = src_array_iter =     (*env)->GetIntArrayElements (env, pixels, NULL);  pixeldata = gdk_pixbuf_get_pixels (pixbuf);  for(i = 0 ; i < height; i++)    {      memcpy((void *)pixeldata, (void *)src, width * 4);      src += width;      pixeldata += rowstride;    }  (*env)->ReleaseIntArrayElements (env, pixels, src_array_iter, 0);  gdk_threads_leave ();}/** * Allocates a Gtk Pixbuf or Pixmap. */JNIEXPORT void JNICALLJava_gnu_java_awt_peer_gtk_GtkImage_createPixmap(JNIEnv *env, jobject obj){  int width, height;  jclass cls;  jfieldID field;  gdk_threads_enter ();  cls = (*env)->GetObjectClass (env, obj);  field = (*env)->GetFieldID (env, cls, "width", "I");  g_assert (field != 0);  width = (*env)->GetIntField (env, obj, field);  field = (*env)->GetFieldID (env, cls, "height", "I");  g_assert (field != 0);  height = (*env)->GetIntField (env, obj, field);  if (offScreen (env, obj) == JNI_FALSE)    createRawData (env, obj, gdk_pixbuf_new (GDK_COLORSPACE_RGB, 					     TRUE,					     8,					     width,					     height));  else    createRawData (env, obj, gdk_pixmap_new (NULL, width, height,					     gdk_rgb_get_visual ()->depth));  gdk_threads_leave ();}/** * Frees the Gtk Pixmap. */JNIEXPORT void JNICALLJava_gnu_java_awt_peer_gtk_GtkImage_freePixmap(JNIEnv *env, jobject obj){  gdk_threads_enter ();  if (offScreen (env, obj) == JNI_FALSE)    gdk_pixbuf_unref ((GdkPixbuf *)getData (env, obj));  else    g_object_unref ((GdkPixmap *)getData (env, obj));  gdk_threads_leave ();}/** * Sets this pixmap to a scaled version of the source pixmap. * width and height of the destination GtkImage must be set. */JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_GtkImage_createScaledPixmap(JNIEnv *env, 						       jobject destination, 						       jobject source,						       jint hints){  GdkPixbuf* dst;  int width, height;  jclass cls;  jfieldID field;  GdkPixbuf *pixbuf;  gdk_threads_enter ();  cls = (*env)->GetObjectClass (env, destination);  field = (*env)->GetFieldID (env, cls, "width", "I");  g_assert (field != 0);  width = (*env)->GetIntField (env, destination, field);  field = (*env)->GetFieldID (env, cls, "height", "I");  g_assert (field != 0);  height = (*env)->GetIntField (env, destination, field);  pixbuf = cp_gtk_image_get_pixbuf (env, source);  dst = gdk_pixbuf_scale_simple(pixbuf,				width, height,				mapHints(hints));

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -