fn _flyweight_generate_big_resource(
image_count: usize,
image_width: usize,
image_height: usize
) -> BigResource
Expand description
Generate a big resource, in this case, a text master “image” of the specified height, containing the specified number of smaller images laid out horizontally, using the given width for each image.
If there are 5 images requested, then create a single image that is
5 * width
wide and 1 * height
tall.