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
161
181static inline int gp_pixmap_gamma_set(gp_pixmap *self, float gamma)
182{
183 gp_correction_desc desc = {
185 .gamma = gamma,
186 };
187
188 return gp_pixmap_correction_set(self, &desc);
189}
190
208static inline int gp_pixmap_srgb_set(gp_pixmap *self)
209{
210 gp_correction_desc desc = {
212 };
213
214 return gp_pixmap_correction_set(self, &desc);
215}
216
227
235
255 gp_pixel_type type, void *pixels,
256 enum gp_pixmap_init_flags flags);
257
277 gp_pixel_type type, void *pixels,
278 enum gp_pixmap_init_flags flags)
279{
280 gp_pixmap *ret = malloc(sizeof(gp_pixmap));
281
282 if (!ret)
283 return NULL;
284
285 return gp_pixmap_init(ret, w, h, type, pixels, flags);
286}
287
305
317
328
347 gp_coord x, gp_coord y, gp_size w, gp_size h);
348
367 gp_coord x, gp_coord y, gp_size w, gp_size h);
368
369
370/*
371 * Converts pixmap to a different pixel type.
372 * Returns a newly allocated pixmap.
373 *
374 * This is naive implementation that doesn't do any ditherings or error
375 * diffusions.
376 */
377gp_pixmap *gp_pixmap_convert_alloc(const gp_pixmap *src,
378 gp_pixel_type dst_pixel_type);
379
380/*
381 * Converts pixmap to a different pixel type.
382 *
383 * This is naive implementation that doesn't do any ditherings or error
384 * diffusions.
385 */
386gp_pixmap *gp_pixmap_convert(const gp_pixmap *src, gp_pixmap *dst);
387
394
404
414
423static inline int gp_pixmap_rotation_equal(const gp_pixmap *c1,
424 const gp_pixmap *c2)
425{
426 return c1->axes_swap == c2->axes_swap &&
427 c1->x_swap == c2->x_swap &&
428 c1->y_swap == c2->y_swap;
429}
430
439static inline void gp_pixmap_rotation_set(gp_pixmap *self, int axes_swap,
440 int x_swap, int y_swap)
441{
442 self->axes_swap = axes_swap;
443 self->x_swap = x_swap;
444 self->y_swap = y_swap;
445}
446
453static inline void gp_pixmap_rotation_copy(const gp_pixmap *src,
454 gp_pixmap *dst)
455{
456 dst->axes_swap = src->axes_swap;
457 dst->x_swap = src->x_swap;
458 dst->y_swap = src->y_swap;
459}
460
467static inline gp_size gp_pixmap_w(const gp_pixmap *self)
468{
469 if (self->axes_swap)
470 return self->h;
471 else
472 return self->w;
473}
474
481static inline gp_size gp_pixmap_h(const gp_pixmap *self)
482{
483 if (self->axes_swap)
484 return self->w;
485 else
486 return self->h;
487}
488
489/*
490 * Compare two pixmaps. Returns true only if all of types, sizes and
491 * bitmap data match. Takes transformations into account.
492 *
493 * For now ignores gamma tables.
494 *
495 * Currently rather slow (getpixel).
496 * TODO: speed up for same rotation and same bit-offset data (per-row memcpy).
497 */
498
499int gp_pixmap_equal(const gp_pixmap *pixmap1, const gp_pixmap *pixmap2);
500
501#endif /* CORE_GP_PIXMAP_H */
502
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:453
static int gp_pixmap_rotation_equal(const gp_pixmap *c1, const gp_pixmap *c2)
Compares rotation flags for two pixmaps.
Definition gp_pixmap.h:423
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:439
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:309
@ GP_PIXMAP_COPY_PIXELS
Definition gp_pixmap.h:311
@ GP_PIXMAP_COPY_ROTATION
Definition gp_pixmap.h:313
@ GP_PIXMAP_COPY_GAMMA
Definition gp_pixmap.h:315
gp_pixmap_init_flags
A pixmap init flags.
Definition gp_pixmap.h:231
@ GP_PIXMAP_FREE_PIXELS
Definition gp_pixmap.h:233
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:467
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:481
gp_pixmap * gp_pixmap_copy(const gp_pixmap *src, enum gp_pixmap_copy_flags flags)
Copies a pixmap.
@ GP_CORRECTION_TYPE_GAMMA
Classical gamma correction.
@ GP_CORRECTION_TYPE_SRGB
Standard RGB.
static int gp_pixmap_srgb_set(gp_pixmap *self)
Sets a sRGB correction for the pixmap.
Definition gp_pixmap.h:208
gp_pixmap * gp_pixmap_alloc(gp_size w, gp_size h, gp_pixel_type type)
Allocates a pixmap.
static int gp_pixmap_gamma_set(gp_pixmap *self, float gamma)
Sets a gamma correction for the pixmap.
Definition gp_pixmap.h:181
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:276
int gp_pixmap_correction_set(gp_pixmap *self, gp_correction_desc *corr_desc)
Sets a correction for the pixmap.
void gp_pixmap_free(gp_pixmap *self)
Frees a pixmap.
A correction description.
gp_correction_type corr_type
Correction type.
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