2 * Raster graphics library
4 * Copyright (c) 1997-2003 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 */
43 #define WRASTER_HEADER_VERSION 22
47 #include <X11/Xutil.h>
50 #include <X11/extensions/XShm.h>
56 #endif /* __cplusplus */
58 /* RBestMatchRendering or RDitheredRendering */
59 #define RC_RenderMode (1<<0)
61 /* number of colors per channel for colormap in PseudoColor mode */
62 #define RC_ColorsPerChannel (1<<1)
64 /* do gamma correction */
65 #define RC_GammaCorrection (1<<2)
67 /* visual id to use */
68 #define RC_VisualID (1<<3)
70 /* shared memory usage */
71 #define RC_UseSharedMemory (1<<4)
73 /* use default instead of best visual */
74 #define RC_DefaultVisual (1<<5)
76 /* filter type for smoothed scaling */
77 #define RC_ScalingFilter (1<<6)
79 /* standard colormap usage */
80 #define RC_StandardColormap (1<<7)
87 /* std colormap usage/creation modes */
89 RUseStdColormap
, /* default. fallbacks to RIgnore.. if
90 there is none defined */
97 typedef struct RContextAttributes
{
100 int colors_per_channel
; /* for PseudoColor */
101 float rgamma
; /* gamma correction for red, */
102 float ggamma
; /* green, */
103 float bgamma
; /* and blue */
104 VisualID visualid
; /* visual ID to use */
105 int use_shared_memory
; /* True of False */
107 int standard_colormap_mode
; /* what to do with std cma */
108 } RContextAttributes
;
112 * describes a screen in terms of depth, visual, number of colors
113 * we can use, if we should do dithering, and what colors to use for
116 typedef struct RContext
{
121 RContextAttributes
*attribs
;
127 Window drawable
; /* window to pass for XCreatePixmap().*/
128 /* generally = root */
134 int red_offset
; /* only used in 24bpp */
138 /* only used for pseudocolor and grayscale */
140 XStandardColormap
*std_rgb_map
; /* standard RGB colormap */
141 XStandardColormap
*std_gray_map
; /* standard grayscale colormap */
143 int ncolors
; /* total number of colors we can use */
144 XColor
*colors
; /* internal colormap */
145 unsigned long *pixels
; /* RContext->colors[].pixel */
148 unsigned int use_shared_pixmap
:1;
149 unsigned int optimize_for_speed
:1;
154 typedef struct RColor
{
162 typedef struct RHSVColor
{
163 unsigned short hue
; /* 0-359 */
164 unsigned char saturation
; /* 0-255 */
165 unsigned char value
; /* 0-255 */
170 typedef struct RPoint
{
175 typedef struct RSegment
{
189 * internal 24bit+alpha image representation
191 typedef struct RImage
{
192 unsigned char *data
; /* image data RGBA or RGB */
193 int width
, height
; /* size of the image */
194 enum RImageFormat format
;
195 RColor background
; /* background color */
201 * internal wrapper for XImage. Used for shm abstraction
203 typedef struct RXImage
{
206 /* Private data. Do not access */
208 XShmSegmentInfo info
;
214 /* image display modes */
216 RDitheredRendering
= 0,
217 RBestMatchRendering
= 1
221 /* smoothed scaling filter types */
232 /* note that not all operations are supported in all functions */
234 RClearOperation
, /* clear with 0 */
236 RNormalOperation
, /* same as combine */
243 RAbsoluteCoordinates
= 0,
244 RRelativeCoordinates
= 1
254 #define RBEV_SUNKEN RSunkenBevel
256 #define RBEV_RAISED RRaisedBevel
257 /* 1 pixel wide on top/left 2 on bottom/right */
258 #define RBEV_RAISED2 2
260 #define RBEV_RAISED3 3
263 RHorizontalGradient
= 2,
264 RVerticalGradient
= 3,
265 RDiagonalGradient
= 4
267 /* for backwards compatibility */
268 #define RGRD_HORIZONTAL RHorizontalGradient
269 #define RGRD_VERTICAL RVerticalGradient
270 #define RGRD_DIAGONAL RDiagonalGradient
276 #define RERR_OPEN 1 /* cant open file */
277 #define RERR_READ 2 /* error reading from file */
278 #define RERR_WRITE 3 /* error writing to file */
279 #define RERR_NOMEMORY 4 /* out of memory */
280 #define RERR_NOCOLOR 5 /* out of color cells */
281 #define RERR_BADIMAGEFILE 6 /* image file is corrupted or invalid */
282 #define RERR_BADFORMAT 7 /* image file format is unknown */
283 #define RERR_BADINDEX 8 /* no such image index in file */
285 #define RERR_BADVISUALID 16 /* invalid visual ID requested for context */
286 #define RERR_STDCMAPFAIL 17 /* failed to created std colormap */
288 #define RERR_XERROR 127 /* internal X error */
289 #define RERR_INTERNAL 128 /* should not happen */
293 * Returns a NULL terminated array of strings containing the
294 * supported formats, such as: TIFF, XPM, PNG, JPEG, PPM, GIF
295 * Do not free the returned data.
297 char **RSupportedFileFormats(void);
300 char *RGetImageFileFormat(char *file
);
305 RContext
*RCreateContext(Display
*dpy
, int screen_number
,
306 RContextAttributes
*attribs
);
308 void RDestroyContext(RContext
*context
);
310 Bool
RGetClosestXColor(RContext
*context
, RColor
*color
, XColor
*retColor
);
315 RImage
*RCreateImage(unsigned width
, unsigned height
, int alpha
);
317 RImage
*RCreateImageFromXImage(RContext
*context
, XImage
*image
, XImage
*mask
);
319 RImage
*RCreateImageFromDrawable(RContext
*context
, Drawable drawable
,
322 RImage
*RLoadImage(RContext
*context
, char *file
, int index
);
324 RImage
* RRetainImage(RImage
*image
);
326 void RReleaseImage(RImage
*image
);
328 RImage
*RGetImageFromXPMData(RContext
*context
, char **xpmData
);
333 Bool
RSaveImage(RImage
*image
, char *filename
, char *format
);
338 RImage
*RCloneImage(RImage
*image
);
340 RImage
*RGetSubImage(RImage
*image
, int x
, int y
, unsigned width
,
343 void RCombineImageWithColor(RImage
*image
, RColor
*color
);
345 void RCombineImages(RImage
*image
, RImage
*src
);
347 void RCombineArea(RImage
*image
, RImage
*src
, int sx
, int sy
, unsigned width
,
348 unsigned height
, int dx
, int dy
);
350 void RCopyArea(RImage
*image
, RImage
*src
, int sx
, int sy
, unsigned width
,
351 unsigned height
, int dx
, int dy
);
353 void RCombineImagesWithOpaqueness(RImage
*image
, RImage
*src
, int opaqueness
);
355 void RCombineAreaWithOpaqueness(RImage
*image
, RImage
*src
, int sx
, int sy
,
356 unsigned width
, unsigned height
, int dx
, int dy
,
359 RImage
*RScaleImage(RImage
*image
, unsigned new_width
, unsigned new_height
);
361 RImage
*RSmoothScaleImage(RImage
*src
, unsigned new_width
,
362 unsigned new_height
);
364 RImage
*RRotateImage(RImage
*image
, float angle
);
367 RImage
*RMakeTiledImage(RImage
*tile
, unsigned width
, unsigned height
);
369 RImage
* RMakeCenteredImage(RImage
*image
, unsigned width
, unsigned height
,
375 Bool
RGetPixel(RImage
*image
, int x
, int y
, RColor
*color
);
377 void RPutPixel(RImage
*image
, int x
, int y
, RColor
*color
);
379 void ROperatePixel(RImage
*image
, int operation
, int x
, int y
, RColor
*color
);
381 void RPutPixels(RImage
*image
, RPoint
*points
, int npoints
, int mode
,
384 void ROperatePixels(RImage
*image
, int operation
, RPoint
*points
,
385 int npoints
, int mode
, RColor
*color
);
387 int RDrawLine(RImage
*image
, int x0
, int y0
, int x1
, int y1
, RColor
*color
);
389 int ROperateLine(RImage
*image
, int operation
, int x0
, int y0
, int x1
, int y1
,
392 void RDrawLines(RImage
*image
, RPoint
*points
, int npoints
, int mode
,
395 void ROperateLines(RImage
*image
, int operation
, RPoint
*points
, int npoints
,
396 int mode
, RColor
*color
);
398 void RDrawSegments(RImage
*image
, RSegment
*segs
, int nsegs
, RColor
*color
);
400 void ROperateSegments(RImage
*image
, int operation
, RSegment
*segs
, int nsegs
,
406 void RRGBtoHSV(RColor
*color
, RHSVColor
*hsv
);
407 void RHSVtoRGB(RHSVColor
*hsv
, RColor
*rgb
);
412 void RClearImage(RImage
*image
, RColor
*color
);
414 void RLightImage(RImage
*image
, RColor
*color
);
416 void RFillImage(RImage
*image
, RColor
*color
);
418 void RBevelImage(RImage
*image
, int bevel_type
);
420 RImage
*RRenderGradient(unsigned width
, unsigned height
, RColor
*from
,
421 RColor
*to
, int style
);
424 RImage
*RRenderMultiGradient(unsigned width
, unsigned height
, RColor
**colors
,
428 RImage
*RRenderInterwovenGradient(unsigned width
, unsigned height
,
429 RColor colors1
[2], int thickness1
,
430 RColor colors2
[2], int thickness2
);
434 * Convertion into X Pixmaps
436 int RConvertImage(RContext
*context
, RImage
*image
, Pixmap
*pixmap
);
438 int RConvertImageMask(RContext
*context
, RImage
*image
, Pixmap
*pixmap
,
439 Pixmap
*mask
, int threshold
);
445 RXImage
*RCreateXImage(RContext
*context
, int depth
,
446 unsigned width
, unsigned height
);
448 RXImage
*RGetXImage(RContext
*context
, Drawable d
, int x
, int y
,
449 unsigned width
, unsigned height
);
451 void RDestroyXImage(RContext
*context
, RXImage
*ximage
);
453 void RPutXImage(RContext
*context
, Drawable d
, GC gc
, RXImage
*ximage
,
454 int src_x
, int src_y
, int dest_x
, int dest_y
,
455 unsigned width
, unsigned height
);
457 /* do not free the returned string! */
458 const char *RMessageForError(int errorCode
);
460 int RBlurImage(RImage
*image
);
462 /****** Global Variables *******/
464 extern int RErrorCode
;
468 #endif /* __cplusplus */