GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_pixmap.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later
2/*
3 * Copyright (C) 2009-2011 Jiri "BlueBear" Dluhos
4 * <jiri.bluebear.dluhos@gmail.com>
5 *
6 * Copyright (C) 2009-2024 Cyril Hrubis <metan@ucw.cz>
7 */
8
15#ifndef CORE_GP_PIXMAP_H
16#define CORE_GP_PIXMAP_H
17
18#include <stdint.h>
19#include <unistd.h>
20
21#include <core/gp_common.h>
22#include <core/gp_types.h>
23#include <core/gp_pixel.h>
25
33struct gp_pixmap {
35 uint8_t *pixels;
42 uint32_t bytes_per_row;
44 uint32_t w;
46 uint32_t h;
56 uint8_t offset;
57
64
71
79 uint8_t axes_swap:1;
87 uint8_t x_swap:1;
95 uint8_t y_swap:1;
96
98 uint8_t free_pixels:1;
99};
100
109#define GP_PIXEL_ADDR(pixmap, x, y) ((pixmap)->pixels \
110 + (y) * (pixmap)->bytes_per_row \
111 + ((x + (pixmap)->offset) * gp_pixel_size((pixmap)->pixel_type)) / 8)
112
113#define GP_CALC_ROW_SIZE(pixel_type, width) \
114 ((gp_pixel_size(pixel_type) * width) / 8 + \
115 !!((gp_pixel_size(pixel_type) * width) % 8))
116
117/* Performs a series of sanity checks on pixmap, aborting if any fails. */
118#define GP_CHECK_PIXMAP(pixmap) do { \
119 GP_CHECK(pixmap, "NULL passed as pixmap"); \
120 GP_CHECK(pixmap->pixels || pixmap->w == 0 || pixmap->h == 0, "invalid pixmap: pixels NULL on nonzero w h"); \
121} while (0)
122
127#define GP_PIXEL_IS_CLIPPED(pixmap, x, y) \
128 ((x) < 0 || x >= (typeof(x)) pixmap->w \
129 || (y) < 0 || y >= (typeof(y)) pixmap->h) \
130
146
162 float gamma);
163
174
182
202 gp_pixel_type type, void *pixels,
203 enum gp_pixmap_init_flags flags);
204
224 gp_pixel_type type, void *pixels,
225 enum gp_pixmap_init_flags flags)
226{
227 gp_pixmap *ret = malloc(sizeof(gp_pixmap));
228
229 if (!ret)
230 return NULL;
231
232 return gp_pixmap_init(ret, w, h, type, pixels, flags);
233}
234
252
262
273
292 gp_coord x, gp_coord y, gp_size w, gp_size h);
293
312 gp_coord x, gp_coord y, gp_size w, gp_size h);
313
314/*
315 * Converts pixmap to a different pixel type.
316 * Returns a newly allocated pixmap.
317 *
318 * This is naive implementation that doesn't do any ditherings or error
319 * diffusions.
320 */
321gp_pixmap *gp_pixmap_convert_alloc(const gp_pixmap *src,
322 gp_pixel_type dst_pixel_type);
323
324/*
325 * Converts pixmap to a different pixel type.
326 *
327 * This is naive implementation that doesn't do any ditherings or error
328 * diffusions.
329 */
330gp_pixmap *gp_pixmap_convert(const gp_pixmap *src, gp_pixmap *dst);
331
338
348
358
367static inline int gp_pixmap_rotation_equal(const gp_pixmap *c1,
368 const gp_pixmap *c2)
369{
370 return c1->axes_swap == c2->axes_swap &&
371 c1->x_swap == c2->x_swap &&
372 c1->y_swap == c2->y_swap;
373}
374
383static inline void gp_pixmap_rotation_set(gp_pixmap *self, int axes_swap,
384 int x_swap, int y_swap)
385{
386 self->axes_swap = axes_swap;
387 self->x_swap = x_swap;
388 self->y_swap = y_swap;
389}
390
397static inline void gp_pixmap_rotation_copy(const gp_pixmap *src,
398 gp_pixmap *dst)
399{
400 dst->axes_swap = src->axes_swap;
401 dst->x_swap = src->x_swap;
402 dst->y_swap = src->y_swap;
403}
404
411static inline gp_size gp_pixmap_w(const gp_pixmap *self)
412{
413 if (self->axes_swap)
414 return self->h;
415 else
416 return self->w;
417}
418
425static inline gp_size gp_pixmap_h(const gp_pixmap *self)
426{
427 if (self->axes_swap)
428 return self->w;
429 else
430 return self->h;
431}
432
433/*
434 * Compare two pixmaps. Returns true only if all of types, sizes and
435 * bitmap data match. Takes transformations into account.
436 *
437 * For now ignores gamma tables.
438 *
439 * Currently rather slow (getpixel).
440 * TODO: speed up for same rotation and same bit-offset data (per-row memcpy).
441 */
442
443int gp_pixmap_equal(const gp_pixmap *pixmap1, const gp_pixmap *pixmap2);
444
445#endif /* CORE_GP_PIXMAP_H */
446
Common macros.
A common types.
int gp_coord
Integer type for coordinates i.e. x, y, ...
Definition gp_types.h:19
unsigned int gp_size
Integer type for sizes i.e. w, h, ...
Definition gp_types.h:24
Gamma and sRGB corrections.
gp_pixel_type
List of all pixel types.
A pixel description.
int gp_pixmap_resize(gp_pixmap *self, gp_size w, gp_size h)
Resizes pixmap.
gp_pixmap * gp_pixmap_init(gp_pixmap *pixmap, gp_size w, gp_size h, gp_pixel_type type, void *pixels, enum gp_pixmap_init_flags flags)
Initializes allocated pixmap structure.
void gp_pixmap_rotate_ccw(gp_pixmap *self)
Rotates pixmap flags counter clock wise.
static void gp_pixmap_rotation_copy(const gp_pixmap *src, gp_pixmap *dst)
Copies rotation flags from one pixmap to another.
Definition gp_pixmap.h:397
static int gp_pixmap_rotation_equal(const gp_pixmap *c1, const gp_pixmap *c2)
Compares rotation flags for two pixmaps.
Definition gp_pixmap.h:367
static void gp_pixmap_rotation_set(gp_pixmap *self, int axes_swap, int x_swap, int y_swap)
Sets pixmap rotation flags.
Definition gp_pixmap.h:383
void gp_pixmap_print_info(const gp_pixmap *self)
Prints pixmap information into stdout.
void gp_pixmap_rotate_cw(gp_pixmap *self)
Rotates pixmap flags clockwise.
gp_pixmap_copy_flags
A pixmap copy flags.
Definition gp_pixmap.h:256
@ GP_COPY_WITH_PIXELS
Definition gp_pixmap.h:258
@ GP_COPY_WITH_ROTATION
Definition gp_pixmap.h:260
gp_pixmap_init_flags
A pixmap init flags.
Definition gp_pixmap.h:178
@ GP_PIXMAP_FREE_PIXELS
Definition gp_pixmap.h:180
gp_pixmap * gp_sub_pixmap_alloc(const gp_pixmap *src, gp_coord x, gp_coord y, gp_size w, gp_size h)
Allocate and initalize a subpixmap.
static gp_size gp_pixmap_w(const gp_pixmap *self)
Returns pixmap width taking axes swap into account.
Definition gp_pixmap.h:411
gp_pixmap * gp_sub_pixmap(const gp_pixmap *src, gp_pixmap *subpixmap, gp_coord x, gp_coord y, gp_size w, gp_size h)
Initializes a subpixmap.
static gp_size gp_pixmap_h(const gp_pixmap *self)
Returns pixmap height taking axes swap into account.
Definition gp_pixmap.h:425
gp_pixmap * gp_pixmap_copy(const gp_pixmap *src, enum gp_pixmap_copy_flags flags)
Copies a pixmap.
gp_correction_type
A list of supported correction types.
int gp_pixmap_gamma_set(gp_pixmap *self, gp_correction_type corr_type, float gamma)
Sets a correction for the pixmap.
gp_pixmap * gp_pixmap_alloc(gp_size w, gp_size h, gp_pixel_type type)
Allocates a pixmap.
static gp_pixmap * gp_pixmap_from_data(gp_size w, gp_size h, gp_pixel_type type, void *pixels, enum gp_pixmap_init_flags flags)
Creates a pixmap from a buffer allocated by malloc().
Definition gp_pixmap.h:223
void gp_pixmap_free(gp_pixmap *self)
Frees a pixmap.
A correction tables for all pixel channels.
A pixmap buffer.
Definition gp_pixmap.h:33
uint32_t h
Pixmap height in pixels.
Definition gp_pixmap.h:46
uint8_t * pixels
A pointer to image pixels.
Definition gp_pixmap.h:35
uint8_t x_swap
Mirrors image x axis for drawing.
Definition gp_pixmap.h:87
uint8_t free_pixels
If set pixels are freed on gp_pixmap_free.
Definition gp_pixmap.h:98
uint8_t y_swap
Mirrors image y axis for drawing.
Definition gp_pixmap.h:95
enum gp_pixel_type pixel_type
A pixel format.
Definition gp_pixmap.h:63
uint32_t bytes_per_row
Number of bytes per row.
Definition gp_pixmap.h:42
gp_gamma * gamma
A pointer to a gamma correction table.
Definition gp_pixmap.h:70
uint32_t w
Pixmap width in pixels.
Definition gp_pixmap.h:44
uint8_t offset
An offset to apply before the start of the pixel row.
Definition gp_pixmap.h:56
uint8_t axes_swap
Swaps image x and y axes for drawing.
Definition gp_pixmap.h:79