2 * Raster graphics library
4 * Copyright (c) 1997, 1998, 1999 Alfredo K. Kojima
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * Environment variables:
24 * WRASTER_GAMMA <rgamma>/<ggamma>/<bgamma>
25 * gamma correction value. Must be greater than 0
26 * Only for PseudoColor visuals.
32 * If you want a specific value for a screen, append the screen number
33 * preceded by a hash to the variable name as in
42 /* version of the header for the library: 0.14 */
43 #define WRASTER_HEADER_VERSION 14
47 #include <X11/Xutil.h>
50 #include <X11/extensions/XShm.h>
53 /* RM_MATCH or RM_DITHER */
54 #define RC_RenderMode (1<<0)
56 /* number of colors per channel for colormap in PseudoColor mode */
57 #define RC_ColorsPerChannel (1<<1)
59 /* do gamma correction */
60 #define RC_GammaCorrection (1<<2)
62 /* visual id to use */
63 #define RC_VisualID (1<<3)
65 /* shared memory usage */
66 #define RC_UseSharedMemory (1<<4)
68 /* use default instead of best visual */
69 #define RC_DefaultVisual (1<<5)
73 #endif /* __cplusplus */
75 typedef struct RContextAttributes
{
78 int colors_per_channel
; /* for PseudoColor */
79 float rgamma
; /* gamma correction for red, */
80 float ggamma
; /* green, */
81 float bgamma
; /* and blue */
82 VisualID visualid
; /* visual ID to use */
83 int use_shared_memory
; /* True of False */
88 * describes a screen in terms of depth, visual, number of colors
89 * we can use, if we should do dithering, and what colors to use for
92 typedef struct RContext
{
97 RContextAttributes
*attribs
;
103 Window drawable
; /* window to pass for XCreatePixmap().*/
104 /* generally = root */
110 int red_offset
; /* only used in 24bpp */
114 /* only used for pseudocolor and grayscale */
116 XStandardColormap
*std_rgb_map
; /* standard RGB colormap */
117 XStandardColormap
*std_gray_map
; /* standard grayscale colormap */
119 int ncolors
; /* total number of colors we can use */
120 XColor
*colors
; /* internal colormap */
123 unsigned int use_shared_pixmap
:1;
128 typedef struct RColor
{
136 typedef struct RHSVColor
{
137 unsigned short hue
; /* 0-359 */
138 unsigned char saturation
; /* 0-255 */
139 unsigned char value
; /* 0-255 */
144 typedef struct RPoint
{
149 typedef struct RSegment
{
155 * internal 24bit+alpha image representation
157 typedef struct RImage
{
158 unsigned width
, height
; /* size of the image */
159 RColor background
; /* background color */
160 unsigned char *data
[4]; /* image data (R,G,B,A) */
165 * internal wrapper for XImage. Used for shm abstraction
167 typedef struct RXImage
{
170 /* Private data. Do not access */
172 XShmSegmentInfo info
;
178 /* note that not all operations are supported in all functions */
180 RClearOperation
, /* clear with 0 */
182 RNormalOperation
, /* same as combine */
188 /* image display modes */
190 RDitheredRendering
= 0,
191 RBestMatchRendering
= 1
195 #define RM_DITHER RDitheredRendering
196 #define RM_MATCH RBestMatchRendering
199 RAbsoluteCoordinates
= 0,
200 RRelativeCoordinates
= 1
209 #define RBEV_SUNKEN RSunkenBevel
211 #define RBEV_RAISED RRaisedBevel
212 /* 1 pixel wide on top/left 2 on bottom/right */
213 #define RBEV_RAISED2 2
215 #define RBEV_RAISED3 3
218 RHorizontalGradient
= 2,
219 RVerticalGradient
= 3,
220 RDiagonalGradient
= 4
222 /* for backwards compatibility */
223 #define RGRD_HORIZONTAL RHorizontalGradient
224 #define RGRD_VERTICAL RVerticalGradient
225 #define RGRD_DIAGONAL RDiagonalGradient
231 #define RERR_OPEN 1 /* cant open file */
232 #define RERR_READ 2 /* error reading from file */
233 #define RERR_WRITE 3 /* error writing to file */
234 #define RERR_NOMEMORY 4 /* out of memory */
235 #define RERR_NOCOLOR 5 /* out of color cells */
236 #define RERR_BADIMAGEFILE 6 /* image file is corrupted or invalid */
237 #define RERR_BADFORMAT 7 /* image file format is unknown */
238 #define RERR_BADINDEX 8 /* no such image index in file */
240 #define RERR_BADVISUALID 16 /* invalid visual ID requested for context */
242 #define RERR_XERROR 127 /* internal X error */
243 #define RERR_INTERNAL 128 /* should not happen */
247 * Returns a NULL terminated array of strings containing the
248 * supported formats, such as: TIFF, XPM, PNG, JPEG, PPM, GIF
249 * Do not free the returned data.
251 char **RSupportedFileFormats(void);
254 char *RGetImageFileFormat(char *file
);
259 RContext
*RCreateContext(Display
*dpy
, int screen_number
,
260 RContextAttributes
*attribs
);
262 void RDestroyContext(RContext
*context
);
264 Bool
RGetClosestXColor(RContext
*context
, RColor
*color
, XColor
*retColor
);
269 RImage
*RCreateImage(unsigned width
, unsigned height
, int alpha
);
271 RImage
*RCreateImageFromXImage(RContext
*context
, XImage
*image
, XImage
*mask
);
273 RImage
*RCreateImageFromDrawable(RContext
*context
, Drawable drawable
,
276 RImage
*RLoadImage(RContext
*context
, char *file
, int index
);
279 void RDestroyImage(RImage
*image
);
281 RImage
*RGetImageFromXPMData(RContext
*context
, char **data
);
286 Bool
RSaveImage(RImage
*image
, char *filename
, char *format
);
291 RImage
*RCloneImage(RImage
*image
);
293 RImage
*RGetSubImage(RImage
*image
, int x
, int y
, unsigned width
,
296 void RCombineImageWithColor(RImage
*image
, RColor
*color
);
298 void RCombineImages(RImage
*image
, RImage
*src
);
300 void RCombineArea(RImage
*image
, RImage
*src
, int sx
, int sy
, unsigned width
,
301 unsigned height
, int dx
, int dy
);
303 void RCombineImagesWithOpaqueness(RImage
*image
, RImage
*src
, int opaqueness
);
305 void RCombineAreaWithOpaqueness(RImage
*image
, RImage
*src
, int sx
, int sy
,
306 unsigned width
, unsigned height
, int dx
, int dy
,
309 RImage
*RScaleImage(RImage
*image
, unsigned new_width
, unsigned new_height
);
311 RImage
*RMakeTiledImage(RImage
*tile
, unsigned width
, unsigned height
);
313 RImage
* RMakeCenteredImage(RImage
*image
, unsigned width
, unsigned height
,
319 Bool
RGetPixel(RImage
*image
, int x
, int y
, RColor
*color
);
321 void RPutPixel(RImage
*image
, int x
, int y
, RColor
*color
);
323 void ROperatePixel(RImage
*image
, int operation
, int x
, int y
, RColor
*color
);
325 void RPutPixels(RImage
*image
, RPoint
*points
, int npoints
, int mode
,
328 void ROperatePixels(RImage
*image
, int operation
, RPoint
*points
,
329 int npoints
, int mode
, RColor
*color
);
331 int RDrawLine(RImage
*image
, int x0
, int y0
, int x1
, int y1
, RColor
*color
);
333 int ROperateLine(RImage
*image
, int operation
, int x0
, int y0
, int x1
, int y1
,
336 void RDrawLines(RImage
*image
, RPoint
*points
, int npoints
, int mode
,
339 void ROperateLines(RImage
*image
, int operation
, RPoint
*points
, int npoints
,
340 int mode
, RColor
*color
);
342 void RDrawSegments(RImage
*image
, RSegment
*segs
, int nsegs
, RColor
*color
);
344 void ROperateSegments(RImage
*image
, int operation
, RSegment
*segs
, int nsegs
,
350 void RRGBtoHSV(RColor
*color
, RHSVColor
*hsv
);
351 void RHSVtoRGB(RHSVColor
*hsv
, RColor
*rgb
);
356 void RClearImage(RImage
*image
, RColor
*color
);
358 void RBevelImage(RImage
*image
, int bevel_type
);
360 RImage
*RRenderGradient(unsigned width
, unsigned height
, RColor
*from
,
361 RColor
*to
, int style
);
364 RImage
*RRenderMultiGradient(unsigned width
, unsigned height
, RColor
**colors
,
370 * Convertion into X Pixmaps
372 int RConvertImage(RContext
*context
, RImage
*image
, Pixmap
*pixmap
);
374 int RConvertImageMask(RContext
*context
, RImage
*image
, Pixmap
*pixmap
,
375 Pixmap
*mask
, int threshold
);
381 RXImage
*RCreateXImage(RContext
*context
, int depth
,
382 unsigned width
, unsigned height
);
384 RXImage
*RGetXImage(RContext
*context
, Drawable d
, int x
, int y
,
385 unsigned width
, unsigned height
);
387 void RDestroyXImage(RContext
*context
, RXImage
*ximage
);
389 void RPutXImage(RContext
*context
, Drawable d
, GC gc
, RXImage
*ximage
,
390 int src_x
, int src_y
, int dest_x
, int dest_y
,
391 unsigned width
, unsigned height
);
393 /* do not free the returned string! */
394 const char *RMessageForError(int errorCode
);
396 int RBlurImage(RImage
*image
);
398 /****** Global Variables *******/
400 extern int RErrorCode
;
404 #endif /* __cplusplus */