diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-11-20 17:13:09 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-12-04 12:34:44 +0100 |
| commit | 3e61ec7044942ebaeda948c64df762a0250f8954 (patch) | |
| tree | 642c08a6f7b120c2237f5e457074670d0ccf3e86 /src/drivers/Cairo | |
| parent | b9ac6bd728659a7780d7cde024f34607601e8a7f (diff) | |
New member function Fl_Image_Surface::mask(Fl_RGB_Image*)
Diffstat (limited to 'src/drivers/Cairo')
| -rw-r--r-- | src/drivers/Cairo/Fl_Cairo_Graphics_Driver.H | 1 | ||||
| -rw-r--r-- | src/drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.H b/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.H index 8677a920f..e55f051d7 100644 --- a/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.H +++ b/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.H @@ -68,6 +68,7 @@ public: cairo_t *cr() { return cairo_; } PangoLayout *pango_layout() {return pango_layout_;} void set_cairo(cairo_t *c, float f = 0); + static cairo_pattern_t *calc_cairo_mask(const Fl_RGB_Image *rgb); void check_status(void); diff --git a/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx b/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx index cda328c17..40264c757 100644 --- a/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx +++ b/src/drivers/Cairo/Fl_Cairo_Graphics_Driver.cxx @@ -1517,4 +1517,41 @@ void Fl_Cairo_Graphics_Driver::focus_rect(int x, int y, int w, int h) surface_needs_commit(); } + +cairo_pattern_t *Fl_Cairo_Graphics_Driver::calc_cairo_mask(const Fl_RGB_Image *rgb) { + int i, j, d = rgb->d(), w = rgb->data_w(), h = rgb->data_h(), ld = rgb->ld(); + int bytesperrow = cairo_format_stride_for_width(CAIRO_FORMAT_A1, w); + if (!ld) ld = d * w; + unsigned u; + uchar byte, onebit; + // build a CAIRO_FORMAT_A1 surface covering the non-black part of the image + uchar* bits = new uchar[h*bytesperrow]; // to store the surface data + for (i = 0; i < h; i++) { + const uchar* alpha = (const uchar*)*rgb->data() + i * ld; + uchar *p = (uchar*)bits + i * bytesperrow; + byte = 0; + onebit = 1; + for (j = 0; j < w; j++) { + u = *alpha; + u += *(alpha+1); + u += *(alpha+2); + if (u > 0) { // if the pixel is not black + byte |= onebit; // turn on the corresponding bit of the bitmap + } + onebit = onebit << 1; // move the single set bit one position to the left + if (onebit == 0 || j == w-1) { + onebit = 1; + *p++ = byte; // store in bitmap one pack of bits + byte = 0; + } + alpha += d; // point to next rgb pixel + } + } + cairo_surface_t *mask_surf = cairo_image_surface_create_for_data(bits, + CAIRO_FORMAT_A1, w, h, bytesperrow); + cairo_pattern_t *mask_pattern = cairo_pattern_create_for_surface(mask_surf); + cairo_surface_destroy(mask_surf); + return mask_pattern; +} + #endif // USE_PANGO |
