123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- /* bitmap_scale.c - Bitmap scaling. */
- /*
- * GRUB -- GRand Unified Bootloader
- * Copyright (C) 2006,2007,2008,2009 Free Software Foundation, Inc.
- *
- * GRUB is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GRUB is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <grub/mm.h>
- #include <grub/misc.h>
- #include <grub/video_fb.h>
- #include <grub/bitmap.h>
- #include <grub/bitmap_scale.h>
- #include <grub/fbutil.h>
- #include <grub/fbfill.h>
- #include <grub/fbblit.h>
- #include <grub/types.h>
- GRUB_EXPORT(grub_video_bitmap_create_scaled);
- /* Prototypes for module-local functions. */
- static grub_err_t scale_nn (struct grub_video_bitmap *dst,
- struct grub_video_bitmap *src);
- static grub_err_t scale_bilinear (struct grub_video_bitmap *dst,
- struct grub_video_bitmap *src);
- /* This function creates a new scaled version of the bitmap SRC. The new
- bitmap has dimensions DST_WIDTH by DST_HEIGHT. The scaling algorithm
- is given by SCALE_METHOD. If an error is encountered, the return code is
- not equal to GRUB_ERR_NONE, and the bitmap DST is either not created, or
- it is destroyed before this function returns.
- Supports only direct color modes which have components separated
- into bytes (e.g., RGBA 8:8:8:8 or BGR 8:8:8 true color).
- But because of this simplifying assumption, the implementation is
- greatly simplified. */
- static grub_err_t
- grub_video_bitmap_create_scaled_internal (struct grub_video_bitmap **dst,
- int dst_width, int dst_height,
- struct grub_video_bitmap *src,
- int scale_method)
- {
- /* Create the new bitmap. */
- grub_err_t ret;
- ret = grub_video_bitmap_create (dst, dst_width, dst_height,
- src->mode_info.blit_format);
- if (ret != GRUB_ERR_NONE)
- return ret; /* Error. */
- (*dst)->transparent = src->transparent;
- switch (scale_method)
- {
- case GRUB_VIDEO_BITMAP_SCALE_METHOD_FASTEST:
- case GRUB_VIDEO_BITMAP_SCALE_METHOD_NEAREST:
- ret = scale_nn (*dst, src);
- break;
- case GRUB_VIDEO_BITMAP_SCALE_METHOD_BEST:
- case GRUB_VIDEO_BITMAP_SCALE_METHOD_BILINEAR:
- ret = scale_bilinear (*dst, src);
- break;
- default:
- ret = grub_error (GRUB_ERR_BAD_ARGUMENT, "Invalid scale method value");
- break;
- }
- if (ret == GRUB_ERR_NONE)
- {
- /* Success: *dst is now a pointer to the scaled bitmap. */
- return GRUB_ERR_NONE;
- }
- else
- {
- /* Destroy the bitmap and return the error code. */
- grub_video_bitmap_destroy (*dst);
- *dst = 0;
- return ret;
- }
- }
- static grub_video_color_t
- map_color (struct grub_video_mode_info *mode_info, grub_video_color_t color)
- {
- grub_uint8_t red, green, blue, alpha;
- red = green = blue = alpha = 0;
- grub_video_unmap_color (color, &red, &green, &blue, &alpha);
- return grub_video_fbblit_map_rgba (mode_info, red, green, blue, alpha);
- }
- grub_err_t
- grub_video_bitmap_create_scaled (struct grub_video_bitmap **dst,
- int dst_width, int dst_height,
- struct grub_video_bitmap *src,
- int scale, grub_video_color_t color)
- {
- int type, method;
- int src_width, src_height, width, height;
- struct grub_video_fbblit_info dst_info;
- struct grub_video_bitmap *tmp = 0;
- grub_err_t ret;
- *dst = 0;
- /* Verify the simplifying assumptions. */
- if (src == 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT,
- "null src bitmap in grub_video_bitmap_create_scaled");
- if (src->mode_info.red_field_pos % 8 != 0
- || src->mode_info.green_field_pos % 8 != 0
- || src->mode_info.blue_field_pos % 8 != 0
- || src->mode_info.reserved_field_pos % 8 != 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT,
- "src format not supported for scale");
- if (src->mode_info.width == 0 || src->mode_info.height == 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT,
- "source bitmap has a zero dimension");
- if (dst_width <= 0 || dst_height <= 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT,
- "requested to scale to a size w/ a zero dimension");
- if (src->mode_info.bytes_per_pixel * 8 != src->mode_info.bpp)
- return grub_error (GRUB_ERR_BAD_ARGUMENT,
- "bitmap to scale has inconsistent Bpp and bpp");
- type = scale & GRUB_VIDEO_BITMAP_SCALE_TYPE_MASK;
- method = scale & GRUB_VIDEO_BITMAP_SCALE_METHOD_MASK;
- src_width = src->mode_info.width;
- src_height = src->mode_info.height;
- if ((src_width == dst_width) && (src_height == dst_height))
- type = GRUB_VIDEO_BITMAP_SCALE_TYPE_CENTER;
- if ((type == GRUB_VIDEO_BITMAP_SCALE_TYPE_NORMAL) ||
- (((type == GRUB_VIDEO_BITMAP_SCALE_TYPE_MINFIT) ||
- (type == GRUB_VIDEO_BITMAP_SCALE_TYPE_MAXFIT)) &&
- (src_width * dst_height == src_height * dst_width)))
- return grub_video_bitmap_create_scaled_internal (dst, dst_width,
- dst_height, src, method);
- ret = grub_video_bitmap_create (dst, dst_width, dst_height,
- src->mode_info.blit_format);
- if (ret != GRUB_ERR_NONE)
- return ret; /* Error. */
- (*dst)->transparent = src->transparent;
- dst_info.mode_info = &(*dst)->mode_info;
- dst_info.data = (*dst)->data;
- color = map_color (dst_info.mode_info, color);
- switch (type)
- {
- case GRUB_VIDEO_BITMAP_SCALE_TYPE_MINFIT:
- case GRUB_VIDEO_BITMAP_SCALE_TYPE_MAXFIT:
- {
- if ((src_width * dst_height > src_height * dst_width) ==
- (type == GRUB_VIDEO_BITMAP_SCALE_TYPE_MAXFIT))
- {
- width = src_width * dst_height / src_height;
- height = dst_height;
- }
- else
- {
- width = dst_width;
- height = src_height * dst_width / src_width;
- }
- ret = grub_video_bitmap_create_scaled_internal (&tmp, width, height,
- src, method);
- if (ret)
- return ret;
- src = tmp;
- src_width = width;
- src_height = height;
- }
- case GRUB_VIDEO_BITMAP_SCALE_TYPE_CENTER:
- {
- int src_x, src_y, dst_x, dst_y;
- struct grub_video_fbblit_info src_info;
- width = (src_width > dst_width) ? dst_width : src_width;
- height = (src_height > dst_height) ? dst_height : src_height;
- src_x = (src_width - width) >> 1;
- src_y = (src_height - height) >> 1;
- dst_x = (dst_width - width) >> 1;
- dst_y = (dst_height - height) >> 1;
- if (dst_y)
- {
- grub_video_fbfill (&dst_info, color, 0, 0, dst_width, dst_y);
- grub_video_fbfill (&dst_info, color, 0, dst_y + height,
- dst_width, dst_height - dst_y - height);
- }
- if (dst_x)
- {
- grub_video_fbfill (&dst_info, color, 0, dst_y, dst_x, height);
- grub_video_fbfill (&dst_info, color, dst_x + width, dst_y,
- dst_width - dst_x - width, height);
- }
- src_info.mode_info = &src->mode_info;
- src_info.data = src->data;
- grub_video_fbblit (&dst_info, &src_info, GRUB_VIDEO_BLIT_REPLACE,
- dst_x, dst_y, width, height, src_x, src_y);
- break;
- }
- case GRUB_VIDEO_BITMAP_SCALE_TYPE_TILING:
- {
- int x, y;
- struct grub_video_fbblit_info src_info;
- src_info.mode_info = &src->mode_info;
- src_info.data = src->data;
- for (y = 0; y < dst_height; y += src_height)
- {
- for (x = 0; x < dst_width; x += src_width)
- {
- int w, h;
- w = src_width;
- if (x + w > dst_width)
- w = dst_width - x;
- h = src_height;
- if (y + h > dst_height)
- h = dst_height - y;
- grub_video_fbblit (&dst_info, &src_info,
- GRUB_VIDEO_BLIT_REPLACE,
- x, y, w, h, 0, 0);
- }
- }
- break;
- }
- default:
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "Invalid scale type value");
- }
- if (tmp)
- grub_video_bitmap_destroy (tmp);
- return 0;
- }
- /* Nearest neighbor bitmap scaling algorithm.
- Copy the bitmap SRC to the bitmap DST, scaling the bitmap to fit the
- dimensions of DST. This function uses the nearest neighbor algorithm to
- interpolate the pixels.
- Supports only direct color modes which have components separated
- into bytes (e.g., RGBA 8:8:8:8 or BGR 8:8:8 true color).
- But because of this simplifying assumption, the implementation is
- greatly simplified. */
- static grub_err_t
- scale_nn (struct grub_video_bitmap *dst, struct grub_video_bitmap *src)
- {
- /* Verify the simplifying assumptions. */
- if (dst == 0 || src == 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "null bitmap in scale_nn");
- if (dst->mode_info.red_field_pos % 8 != 0
- || dst->mode_info.green_field_pos % 8 != 0
- || dst->mode_info.blue_field_pos % 8 != 0
- || dst->mode_info.reserved_field_pos % 8 != 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "dst format not supported");
- if (src->mode_info.red_field_pos % 8 != 0
- || src->mode_info.green_field_pos % 8 != 0
- || src->mode_info.blue_field_pos % 8 != 0
- || src->mode_info.reserved_field_pos % 8 != 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "src format not supported");
- if (dst->mode_info.red_field_pos != src->mode_info.red_field_pos
- || dst->mode_info.red_mask_size != src->mode_info.red_mask_size
- || dst->mode_info.green_field_pos != src->mode_info.green_field_pos
- || dst->mode_info.green_mask_size != src->mode_info.green_mask_size
- || dst->mode_info.blue_field_pos != src->mode_info.blue_field_pos
- || dst->mode_info.blue_mask_size != src->mode_info.blue_mask_size
- || dst->mode_info.reserved_field_pos !=
- src->mode_info.reserved_field_pos
- || dst->mode_info.reserved_mask_size !=
- src->mode_info.reserved_mask_size)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "dst and src not compatible");
- if (dst->mode_info.bytes_per_pixel != src->mode_info.bytes_per_pixel)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "dst and src not compatible");
- if (dst->mode_info.width == 0 || dst->mode_info.height == 0
- || src->mode_info.width == 0 || src->mode_info.height == 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "bitmap has a zero dimension");
- grub_uint8_t *ddata = dst->data;
- grub_uint8_t *sdata = src->data;
- int dw = dst->mode_info.width;
- int dh = dst->mode_info.height;
- int sw = src->mode_info.width;
- int sh = src->mode_info.height;
- int dstride = dst->mode_info.pitch;
- int sstride = src->mode_info.pitch;
- /* bytes_per_pixel is the same for both src and dst. */
- int bytes_per_pixel = dst->mode_info.bytes_per_pixel;
- int dy;
- for (dy = 0; dy < dh; dy++)
- {
- int dx;
- for (dx = 0; dx < dw; dx++)
- {
- grub_uint8_t *dptr;
- grub_uint8_t *sptr;
- int sx;
- int sy;
- int comp;
- /* Compute the source coordinate that the destination coordinate
- maps to. Note: sx/sw = dx/dw => sx = sw*dx/dw. */
- sx = sw * dx / dw;
- sy = sh * dy / dh;
- /* Get the address of the pixels in src and dst. */
- dptr = ddata + dy * dstride + dx * bytes_per_pixel;
- sptr = sdata + sy * sstride + sx * bytes_per_pixel;
- /* Copy the pixel color value. */
- for (comp = 0; comp < bytes_per_pixel; comp++)
- dptr[comp] = sptr[comp];
- }
- }
- return GRUB_ERR_NONE;
- }
- /* Bilinear interpolation image scaling algorithm.
- Copy the bitmap SRC to the bitmap DST, scaling the bitmap to fit the
- dimensions of DST. This function uses the bilinear interpolation algorithm
- to interpolate the pixels.
- Supports only direct color modes which have components separated
- into bytes (e.g., RGBA 8:8:8:8 or BGR 8:8:8 true color).
- But because of this simplifying assumption, the implementation is
- greatly simplified. */
- static grub_err_t
- scale_bilinear (struct grub_video_bitmap *dst, struct grub_video_bitmap *src)
- {
- /* Verify the simplifying assumptions. */
- if (dst == 0 || src == 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "null bitmap in scale func");
- if (dst->mode_info.red_field_pos % 8 != 0
- || dst->mode_info.green_field_pos % 8 != 0
- || dst->mode_info.blue_field_pos % 8 != 0
- || dst->mode_info.reserved_field_pos % 8 != 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "dst format not supported");
- if (src->mode_info.red_field_pos % 8 != 0
- || src->mode_info.green_field_pos % 8 != 0
- || src->mode_info.blue_field_pos % 8 != 0
- || src->mode_info.reserved_field_pos % 8 != 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "src format not supported");
- if (dst->mode_info.red_field_pos != src->mode_info.red_field_pos
- || dst->mode_info.red_mask_size != src->mode_info.red_mask_size
- || dst->mode_info.green_field_pos != src->mode_info.green_field_pos
- || dst->mode_info.green_mask_size != src->mode_info.green_mask_size
- || dst->mode_info.blue_field_pos != src->mode_info.blue_field_pos
- || dst->mode_info.blue_mask_size != src->mode_info.blue_mask_size
- || dst->mode_info.reserved_field_pos !=
- src->mode_info.reserved_field_pos
- || dst->mode_info.reserved_mask_size !=
- src->mode_info.reserved_mask_size)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "dst and src not compatible");
- if (dst->mode_info.bytes_per_pixel != src->mode_info.bytes_per_pixel)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "dst and src not compatible");
- if (dst->mode_info.width == 0 || dst->mode_info.height == 0
- || src->mode_info.width == 0 || src->mode_info.height == 0)
- return grub_error (GRUB_ERR_BAD_ARGUMENT, "bitmap has a zero dimension");
- grub_uint8_t *ddata = dst->data;
- grub_uint8_t *sdata = src->data;
- int dw = dst->mode_info.width;
- int dh = dst->mode_info.height;
- int sw = src->mode_info.width;
- int sh = src->mode_info.height;
- int dstride = dst->mode_info.pitch;
- int sstride = src->mode_info.pitch;
- /* bytes_per_pixel is the same for both src and dst. */
- int bytes_per_pixel = dst->mode_info.bytes_per_pixel;
- int dy;
- for (dy = 0; dy < dh; dy++)
- {
- int dx;
- for (dx = 0; dx < dw; dx++)
- {
- grub_uint8_t *dptr;
- grub_uint8_t *sptr;
- int sx;
- int sy;
- int comp;
- /* Compute the source coordinate that the destination coordinate
- maps to. Note: sx/sw = dx/dw => sx = sw*dx/dw. */
- sx = sw * dx / dw;
- sy = sh * dy / dh;
- /* Get the address of the pixels in src and dst. */
- dptr = ddata + dy * dstride + dx * bytes_per_pixel;
- sptr = sdata + sy * sstride + sx * bytes_per_pixel;
- /* If we have enough space to do so, use bilinear interpolation.
- Otherwise, fall back to nearest neighbor for this pixel. */
- if (sx < sw - 1 && sy < sh - 1)
- {
- /* Do bilinear interpolation. */
- /* Fixed-point .8 numbers representing the fraction of the
- distance in the x (u) and y (v) direction within the
- box of 4 pixels in the source. */
- int u = (256 * sw * dx / dw) - (sx * 256);
- int v = (256 * sh * dy / dh) - (sy * 256);
- for (comp = 0; comp < bytes_per_pixel; comp++)
- {
- /* Get the component's values for the
- four source corner pixels. */
- grub_uint8_t f00 = sptr[comp];
- grub_uint8_t f10 = sptr[comp + bytes_per_pixel];
- grub_uint8_t f01 = sptr[comp + sstride];
- grub_uint8_t f11 = sptr[comp + sstride + bytes_per_pixel];
- /* Do linear interpolations along the top and bottom
- rows of the box. */
- grub_uint8_t f0y = (256 - v) * f00 / 256 + v * f01 / 256;
- grub_uint8_t f1y = (256 - v) * f10 / 256 + v * f11 / 256;
- /* Interpolate vertically. */
- grub_uint8_t fxy = (256 - u) * f0y / 256 + u * f1y / 256;
- dptr[comp] = fxy;
- }
- }
- else
- {
- /* Fall back to nearest neighbor interpolation. */
- /* Copy the pixel color value. */
- for (comp = 0; comp < bytes_per_pixel; comp++)
- dptr[comp] = sptr[comp];
- }
- }
- }
- return GRUB_ERR_NONE;
- }
|