1 2 3 4 5 6 7 8 9 10 11 12
| cairo_surface_t *picture;
double w, h;
double f;
picture = cairo_image_surface_create_from_png("Images/Peyto_Lake-Banff_NP-Canada.png");
w = cairo_image_surface_get_width(picture);
h = cairo_image_surface_get_height(picture);
f = MAX((x2-x1)/w, (y2-y1)/h);
cairo_scale(cr, f, f);
cairo_set_source_surface(cr, picture, ((x1+x2)/f-w)/2, ((y1+y2)/f-h)/2);
cairo_rectangle(cr, x1/f, y1/f, (x2-x1)/f, (y2-y1)/f);
cairo_fill(cr); |