* src/image.c (compute_image_size): Multiply width and height values
by scale.
int_value = image_get_dimension (img, QCwidth);
if (int_value >= 0)
{
- desired_width = int_value;
+ desired_width = int_value * scale;
/* :width overrides :max-width. */
max_width = -1;
}
int_value = image_get_dimension (img, QCheight);
if (int_value >= 0)
{
- desired_height = int_value;
+ desired_height = int_value * scale;
/* :height overrides :max-height. */
max_height = -1;
}