/usr/include/giblib/gib_imlib.h is in giblib-dev 1.2.4-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | /* gib_imlib.h
Copyright (C) 1999,2000 Tom Gilbert.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies of the Software and its documentation and acknowledgment shall be
given in the documentation and software packages that this Software was
used.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef GIB_IMLIB_H
#define GIB_IMLIB_H
#include <stdio.h>
#include <stdlib.h>
#include <X11/Xlib.h>
#include <Imlib2.h>
#include <stdarg.h>
#include <ctype.h>
#include <giblib/giblib_config.h>
#include <giblib/gib_style.h>
#define GIBCLIP(x, y, w, h, xx, yy, ww, hh) \
{ \
if ((yy) > y) { h -= (yy) - y; y = (yy); } \
if ((yy) + hh < y + h) { h -= y + h - ((yy) + (hh)); } \
if ((xx) > x) { w -= (xx) - x; x = (xx); } \
if ((xx) + (ww) < x + w) { w -= x + w - ((xx) + (ww)); } \
}
#ifdef __cplusplus
extern "C"
{
#endif
int gib_imlib_load_image(Imlib_Image * im, char *filename);
int gib_imlib_image_get_width(Imlib_Image im);
int gib_imlib_image_get_height(Imlib_Image im);
int gib_imlib_image_has_alpha(Imlib_Image im);
const char *gib_imlib_image_get_filename(Imlib_Image im);
void gib_imlib_free_image_and_decache(Imlib_Image im);
void gib_imlib_render_image_on_drawable(Drawable d, Imlib_Image im, int x,
int y, char dither, char blend,
char alias);
void gib_imlib_render_image_on_drawable_with_rotation(Drawable d,
Imlib_Image im, int x,
int y, double angle,
char dither, char blend,
char alias);
void gib_imlib_render_image_part_on_drawable_at_size(Drawable d,
Imlib_Image im, int sx,
int sy, int sw, int sh,
int dx, int dy, int dw,
int dh, char dither,
char blend, char alias);
void gib_imlib_render_image_part_on_drawable_at_size_with_rotation(Drawable d,
Imlib_Image
im, int sx,
int sy,
int sw,
int sh,
int dx,
int dy,
int dw,
int dh,
double
angle,
char
dither,
char blend,
char
alias);
void gib_imlib_image_fill_rectangle(Imlib_Image im, int x, int y, int w,
int h, int r, int g, int b, int a);
void gib_imlib_text_draw(Imlib_Image im, Imlib_Font fn, gib_style * s, int x,
int y, char *text, Imlib_Text_Direction dir, int r,
int g, int b, int a);
void gib_imlib_get_text_size(Imlib_Font fn, char *text, gib_style * s, int *w,
int *h, Imlib_Text_Direction dir);
Imlib_Image gib_imlib_clone_image(Imlib_Image im);
char *gib_imlib_image_format(Imlib_Image im);
char **gib_imlib_list_fonts(int *num);
void gib_imlib_render_image_on_drawable_at_size(Drawable d, Imlib_Image im,
int x, int y, int w, int h,
char dither, char blend,
char alias);
void gib_imlib_render_image_on_drawable_at_size_with_rotation(Drawable d,
Imlib_Image im,
int x, int y,
int w, int h,
double angle,
char dither,
char blend,
char alias);
void gib_imlib_blend_image_onto_image(Imlib_Image dest_image,
Imlib_Image source_image,
char merge_alpha, int sx, int sy,
int sw, int sh, int dx, int dy, int dw,
int dh, char dither, char blend,
char alias);
void gib_imlib_blend_image_onto_image_with_rotation(Imlib_Image dest_image,
Imlib_Image source_image,
char merge_alpha, int sx,
int sy, int sw, int sh,
int dx, int dy, int dw,
int dh, double angle,
char dither, char blend,
char alias);
Imlib_Image gib_imlib_create_cropped_scaled_image(Imlib_Image im, int sx,
int sy, int sw, int sh,
int dw, int dh, char alias);
void gib_imlib_apply_color_modifier_to_rectangle(Imlib_Image im, int x, int y,
int w, int h, DATA8 * rtab,
DATA8 * gtab, DATA8 * btab,
DATA8 * atab);
void gib_imlib_image_set_has_alpha(Imlib_Image im, int alpha);
void gib_imlib_save_image(Imlib_Image im, char *file);
void gib_imlib_save_image_with_error_return(Imlib_Image im, char *file,
Imlib_Load_Error * error_return);
void gib_imlib_free_font(Imlib_Font fn);
void gib_imlib_free_image(Imlib_Image im);
void gib_imlib_image_draw_line(Imlib_Image im, int x1, int y1, int x2, int y2,
char make_updates, int r, int g, int b, int a);
void gib_imlib_image_set_has_alpha(Imlib_Image im, int alpha);
void gib_imlib_free_font(Imlib_Font fn);
Imlib_Image gib_imlib_create_rotated_image(Imlib_Image im, double angle);
void gib_imlib_image_tile(Imlib_Image im);
void gib_imlib_image_blur(Imlib_Image im, int radius);
void gib_imlib_image_sharpen(Imlib_Image im, int radius);
void gib_imlib_image_draw_rectangle(Imlib_Image im, int x, int y, int w,
int h, int r, int g, int b, int a);
void gib_imlib_line_clip_and_draw(Imlib_Image dest, int x0, int y0, int x1,
int y1, int cx, int cy, int cw, int ch,
int r, int g, int b, int a);
void gib_imlib_image_fill_polygon(Imlib_Image im, ImlibPolygon poly, int r,
int g, int b, int a, unsigned char alias,
int cx, int cy, int cw, int ch);
void gib_imlib_image_draw_polygon(Imlib_Image im, ImlibPolygon poly, int r,
int g, int b, int a, unsigned char closed,
unsigned char alias, int cx, int cy, int cw,
int ch);
Imlib_Image gib_imlib_create_image_from_drawable(Drawable d, Pixmap mask,
int x, int y, int width,
int height,
char need_to_grab_x);
void gib_imlib_parse_color(char *col, int *r, int *g, int *b, int *a);
void gib_imlib_parse_fontpath(char *path);
Imlib_Font gib_imlib_load_font(char *name);
void gib_imlib_image_orientate(Imlib_Image im, int orientation);
#ifdef __cplusplus
}
#endif
#endif
|