1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/* Copyright 1990-92 GROUPE BULL -- See license conditions in file COPYRIGHT */
/*****************************************************************************\
* XpmCrDataFP.c: *
* *
* XPM library *
* Scan a pixmap and possibly its mask and create an XPM array *
* *
* Developed by Arnaud Le Hors *
\*****************************************************************************/
#include "xpmP.h"
#ifdef VMS
#include "sys$library:string.h"
#else
#if defined(SYSV) || defined(SVR4)
#include <string.h>
#else
#include <strings.h>
#endif
#endif
int
XpmCreateDataFromPixmap(display, data_return, pixmap, shapemask, attributes)
Display *display;
char ***data_return;
Pixmap pixmap;
Pixmap shapemask;
XpmAttributes *attributes;
{
XImage *image = NULL;
XImage *shapeimage = NULL;
unsigned int width = 0;
unsigned int height = 0;
int ErrorStatus;
unsigned int dum;
int dummy;
Window win;
/*
* get geometry
*/
if (attributes && attributes->valuemask & XpmSize) {
width = attributes->width;
height = attributes->height;
} else {
if (pixmap)
XGetGeometry(display, pixmap, &win, &dummy, &dummy,
&width, &height, &dum, &dum);
else if (shapemask)
XGetGeometry(display, shapemask, &win, &dummy, &dummy,
&width, &height, &dum, &dum);
}
/*
* get the images
*/
if (pixmap)
image = XGetImage(display, pixmap, 0, 0, width, height,
AllPlanes, ZPixmap);
if (shapemask)
shapeimage = XGetImage(display, shapemask, 0, 0, width, height,
AllPlanes, ZPixmap);
/*
* create data from images
*/
ErrorStatus = XpmCreateDataFromImage(display, data_return, image,
shapeimage, attributes);
if (image)
XDestroyImage(image);
if (shapeimage)
XDestroyImage(shapeimage);
return (ErrorStatus);
}
|