ximage.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * ximage.c --
  3.  *
  4.  * X bitmap and image routines.
  5.  *
  6.  * Copyright (c) 1995 Sun Microsystems, Inc.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * RCS: @(#) $Id: ximage.c,v 1.4.8.3 2007/06/29 03:20:58 das Exp $
  12.  */
  13. #include "tkInt.h"
  14. /*
  15.  *----------------------------------------------------------------------
  16.  *
  17.  * XCreateBitmapFromData --
  18.  *
  19.  * Construct a single plane pixmap from bitmap data.
  20.  *
  21.  * NOTE: This procedure has the correct behavior on Windows and
  22.  * the Macintosh, but not on UNIX.  This is probably because the
  23.  * emulation for XPutImage on those platforms compensates for whatever
  24.  * is wrong here :-)
  25.  *
  26.  * Results:
  27.  * Returns a new Pixmap.
  28.  *
  29.  * Side effects:
  30.  * Allocates a new bitmap and drawable.
  31.  *
  32.  *----------------------------------------------------------------------
  33.  */
  34. Pixmap
  35. XCreateBitmapFromData(display, d, data, width, height)
  36.     Display* display;
  37.     Drawable d;
  38.     _Xconst char* data;
  39.     unsigned int width;
  40.     unsigned int height;
  41. {
  42.     XImage *ximage;
  43.     GC gc;
  44.     Pixmap pix;
  45.     pix = Tk_GetPixmap(display, d, (int) width, (int) height, 1);
  46.     gc = XCreateGC(display, pix, 0, NULL);
  47.     if (gc == NULL) {
  48. return None;
  49.     }
  50.     ximage = XCreateImage(display, NULL, 1, XYBitmap, 0, (char*) data, width,
  51.     height, 8, (width + 7) / 8);
  52.     ximage->bitmap_bit_order = LSBFirst;
  53.     _XInitImageFuncPtrs(ximage);
  54.     TkPutImage(NULL, 0, display, pix, gc, ximage, 0, 0, 0, 0, width, height);
  55.     ximage->data = NULL;
  56.     XDestroyImage(ximage);
  57.     XFreeGC(display, gc);
  58.     return pix;
  59. }