//Use the Flyweight Pattern.

//The Runner class creates a collection of albums and for just two of them displays original photo size and thumbnail size.
FlyweightFactory flyweightFactory = new FlyweightFactory();
Dictionary<string, List<string>> albums = new Dictionary<string, List<string>>();

albums.Add("Garden", new List<string> { "pot.jpg", "spring.jpg" });
albums.Add("Italy", new List<string> { "pasta.jpg", "restaurant.jpg" });
albums.Add("Food", new List<string> { "pasta.jpg", "lemonade.jpg" });
albums.Add("Friends", new List<string> { "restaurant.jpg", "lunch.jpg" });

foreach (KeyValuePair<string, List<string>> album in albums)
{
foreach (string filename in album.Value)
{
flyweightFactory[filename].Load(filename);
}
}

Console.WriteLine("----------------------------------------");
Console.WriteLine("Garden Album:");
Console.WriteLine("----------------------------------------");
foreach (string photoName in albums["Garden"])
{
IFlyweight flyweight = flyweightFactory.Flyweights[photoName];
ConsoleConsole.WriteLine(["Photo: {0}", photoName);
Console.WriteLine(["Original Photo Size: {0} x {1} pixels", flyweight.Width, flyweight.Height);
Console.WriteLine(["Thumbnail Size: {0} pixels", flyweight.GetThumbnailSize());
Console.WriteLine();
}

Console.WriteLine("----------------------------------------");
Console.WriteLine("Food Album:");
Console.WriteLine("----------------------------------------");
foreach (string photoName in albums["Food"])
{
IFlyweight flyweight = flyweightFactory.Flyweights[photoName];
ConsoleConsole.WriteLine(["Photo: {0}", photoName);
Console.WriteLine(["Original Photo Size: {0} x {1} pixels", flyweight.Width, flyweight.Height);
Console.WriteLine(["Thumbnail Size: {0} pixels", flyweight.GetThumbnailSize());
Console.WriteLine();
}