diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-01-05 21:33:58 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-01-05 21:33:58 +0000 |
commit | 33e963e7af498d2e91dd2cf607cbc93c880d055c (patch) | |
tree | 1f6d2a5bb0d137ec02a2728c9a3e11f3d9d7352f /gdk-pixbuf/gdk-pixbuf-scale.c | |
parent | 2bb20aee8bf9a8c8ed6a8c7fb9360559385c6fda (diff) | |
download | gtk+-33e963e7af498d2e91dd2cf607cbc93c880d055c.tar.gz |
Directory full of pixel data scaling code that will eventually migrate
2000-01-05 Owen Taylor <otaylor@redhat.com>
* gdk-pixbuf/pixops/: Directory full of pixel data scaling
code that will eventually migrate into libart.
* configure.in acconfig.h: Add checks for MMX compiler support
* gdk-pixbuf/gdk-pixbuf.h gdk-pixbuf/gdk-pixbuf-scale.c:
Nice wrapper routines for the code in pixops that operate
on pixbufs instead of raw data.
* gdk-pixbuf/testpixbuf-scale: Test program for scaling
routines.
Diffstat (limited to 'gdk-pixbuf/gdk-pixbuf-scale.c')
-rw-r--r-- | gdk-pixbuf/gdk-pixbuf-scale.c | 214 |
1 files changed, 214 insertions, 0 deletions
diff --git a/gdk-pixbuf/gdk-pixbuf-scale.c b/gdk-pixbuf/gdk-pixbuf-scale.c new file mode 100644 index 0000000000..6e0861f1e2 --- /dev/null +++ b/gdk-pixbuf/gdk-pixbuf-scale.c @@ -0,0 +1,214 @@ +#include "gdk-pixbuf.h" +#include "pixops/pixops.h" +#include "math.h" + +/** + * gdk_pixbuf_scale: + * @src: a #GdkPixbuf + * @dest: the #GdkPixbuf into which to render the results + * @dest_x: + * @dest_y: + * @dest_width: + * @dest_height: + * @offset_x: the offset in the X direction (currently rounded to an integer) + * @offset_y: the offset in the Y direction (currently rounded to an integer) + * @scale_x: the scale factor in the X direction + * @scale_y: the scale factor in the Y direction + * @filter_level: the filter quality for the transformation. + * + * Transforms the image by source image by scaling by @scale_x and @scale_y then + * translating by @offset_x and @offset_y, then renders the rectangle + * (@dest,@dest_y,@dest_width,@dest_height) of the resulting image onto the + * destination drawable replacing the previous contents. + **/ +void +gdk_pixbuf_scale (GdkPixbuf *src, + GdkPixbuf *dest, + int dest_x, + int dest_y, + int dest_width, + int dest_height, + double offset_x, + double offset_y, + double scale_x, + double scale_y, + ArtFilterLevel filter_level) +{ + offset_x = floor(offset_x + 0.5); + offset_y = floor(offset_y + 0.5); + + pixops_scale (dest->art_pixbuf->pixels + dest_y * dest->art_pixbuf->rowstride + dest_x * dest->art_pixbuf->n_channels, + -offset_x, -offset_y, dest_width - offset_x, dest_height - offset_y, + dest->art_pixbuf->rowstride, dest->art_pixbuf->n_channels, dest->art_pixbuf->has_alpha, + src->art_pixbuf->pixels, src->art_pixbuf->width, src->art_pixbuf->height, + src->art_pixbuf->rowstride, src->art_pixbuf->n_channels, src->art_pixbuf->has_alpha, + scale_x, scale_y, filter_level); +} + +/** + * gdk_pixbuf_composite: + * @src: a #GdkPixbuf + * @dest: the #GdkPixbuf into which to render the results + * @dest_x: + * @dest_y: + * @dest_width: + * @dest_height: + * @offset_x: the offset in the X direction (currently rounded to an integer) + * @offset_y: the offset in the Y direction (currently rounded to an integer) + * @scale_x: the scale factor in the X direction + * @scale_y: the scale factor in the Y direction + * @filter_level: the filter quality for the transformation. + * @overall_alpha: overall alpha for source image (0..255) + * + * Transforms the image by source image by scaling by @scale_x and @scale_y then + * translating by @offset_x and @offset_y, then composites the rectangle + * (@dest,@dest_y,@dest_width,@dest_height) of the resulting image onto the + * destination drawable. + **/ +void +gdk_pixbuf_composite (GdkPixbuf *src, + GdkPixbuf *dest, + int dest_x, + int dest_y, + int dest_width, + int dest_height, + double offset_x, + double offset_y, + double scale_x, + double scale_y, + ArtFilterLevel filter_level, + int overall_alpha) +{ + offset_x = floor(offset_x + 0.5); + offset_y = floor(offset_y + 0.5); + pixops_composite (dest->art_pixbuf->pixels + dest_y * dest->art_pixbuf->rowstride + dest_x * dest->art_pixbuf->n_channels, + -offset_x, -offset_y, dest_width - offset_x, dest_height - offset_y, + dest->art_pixbuf->rowstride, dest->art_pixbuf->n_channels, dest->art_pixbuf->has_alpha, + src->art_pixbuf->pixels, src->art_pixbuf->width, src->art_pixbuf->height, + src->art_pixbuf->rowstride, src->art_pixbuf->n_channels, src->art_pixbuf->has_alpha, + scale_x, scale_y, filter_level, overall_alpha); +} + +/** + * gdk_pixbuf_composite_color: + * @src: a #GdkPixbuf + * @dest: the #GdkPixbuf into which to render the results + * @dest_x: + * @dest_y: + * @dest_width: + * @dest_height: + * @offset_x: the offset in the X direction (currently rounded to an integer) + * @offset_y: the offset in the Y direction (currently rounded to an integer) + * @scale_x: the scale factor in the X direction + * @scale_y: the scale factor in the Y direction + * @filter_level: the filter quality for the transformation. + * @overall_alpha: overall alpha for source image (0..255) + * @check_x: the X offset for the checkboard (origin of checkboard is at -@check_x, -@check_y) + * @check_y: the Y offset for the checkboard + * @check_size: the size of checks in the checkboard (must be a power of two) + * @color1: the color of check at upper left + * @color2: the color of the other check + * + * Transforms the image by source image by scaling by @scale_x and @scale_y then + * translating by @offset_x and @offset_y, then composites the rectangle + * (@dest,@dest_y,@dest_width,@dest_height) of the resulting image with + * a checkboard of the colors @color1 and @color2 and renders it onto the + * destination drawable. + **/ +void +gdk_pixbuf_composite_color (GdkPixbuf *src, + GdkPixbuf *dest, + int dest_x, + int dest_y, + int dest_width, + int dest_height, + double offset_x, + double offset_y, + double scale_x, + double scale_y, + ArtFilterLevel filter_level, + int overall_alpha, + int check_x, + int check_y, + int check_size, + art_u32 color1, + art_u32 color2) +{ + offset_x = floor(offset_x + 0.5); + offset_y = floor(offset_y + 0.5); + + pixops_composite_color (dest->art_pixbuf->pixels + dest_y * dest->art_pixbuf->rowstride + dest_x * dest->art_pixbuf->n_channels, + -offset_x, -offset_y, dest_width - offset_x, dest_height - offset_y, + dest->art_pixbuf->rowstride, dest->art_pixbuf->n_channels, dest->art_pixbuf->has_alpha, + src->art_pixbuf->pixels, src->art_pixbuf->width, src->art_pixbuf->height, + src->art_pixbuf->rowstride, src->art_pixbuf->n_channels, src->art_pixbuf->has_alpha, + scale_x, scale_y, filter_level, overall_alpha, check_x, check_y, check_size, color1, color2); +} + +/** + * gdk_pixbuf_scale_simple: + * @src: a #GdkPixbuf + * @dest_width: the width of destination image + * @dest_height: the height of destination image + * @filter_level: the filter quality for the transformation. + * + * Scale the #GdkPixbuf @src to @dest_width x @dest_height and render the result into + * a new #GdkPixbuf. + * + * Return value: the new #GdkPixbuf + **/ +GdkPixbuf * +gdk_pixbuf_scale_simple (GdkPixbuf *src, + int dest_width, + int dest_height, + ArtFilterLevel filter_level) +{ + GdkPixbuf *dest = gdk_pixbuf_new (ART_PIX_RGB, src->art_pixbuf->has_alpha, 8, dest_width, dest_height); + + gdk_pixbuf_scale (src, dest, 0, 0, dest_width, dest_height, 0, 0, + (double)dest_width / src->art_pixbuf->width, + (double)dest_height / src->art_pixbuf->height, + filter_level); + + return dest; +} + +/** + * gdk_pixbuf_composite_color_simple: + * @src: a #GdkPixbuf + * @dest_width: the width of destination image + * @dest_height: the height of destination image + * @filter_level: the filter quality for the transformation. + * @overall_alpha: overall alpha for source image (0..255) + * @check_size: the size of checks in the checkboard (must be a power of two) + * @color1: the color of check at upper left + * @color2: the color of the other check + * + * Scale the #GdkPixbuf @src to @dest_width x @dest_height composite the result with + * a checkboard of colors @color1 and @color2 and render the result into + * a new #GdkPixbuf. + * + * Return value: the new #GdkPixbuf + **/ +GdkPixbuf * +gdk_pixbuf_composite_color_simple (GdkPixbuf *src, + int dest_width, + int dest_height, + ArtFilterLevel filter_level, + int overall_alpha, + int check_size, + art_u32 color1, + art_u32 color2) +{ + GdkPixbuf *dest = gdk_pixbuf_new (ART_PIX_RGB, src->art_pixbuf->has_alpha, 8, dest_width, dest_height); + + gdk_pixbuf_composite_color (src, dest, 0, 0, dest_width, dest_height, 0, 0, + (double)dest_width / src->art_pixbuf->width, + (double)dest_height / src->art_pixbuf->height, + filter_level, overall_alpha, 0, 0, check_size, color1, color2); + + return dest; +} + + + |