We deliver solutions that
accelerate the value of Azure.

Silverlight’s Big Image Problem (and What You Can Do About It)

Contact Us Today

Quick: Can you spot the problem with these three lines of code?

BitmapImage bi = new BitmapImage();

bi.SetSource(stream);

TheImage.Source = bi;

These statements create an image from a stream of PNG or JPG image bits and display the image by assigning it to a XAML Image object named TheImage. It’s boilerplate code used to display images read from the local file system or obtained from a service. And while there’s nothing inherently wrong with the code itself, you’ll want to think carefully before including it in any Silverlight application.

I call it “Silverlight’s Big Image Problem.” Not the kind of image problem a movie star might suffer, but an inherent memory-consumption problem when dealing with large bitmap images in Silverlight.

The problem manifests itself when you handle large images in large numbers. The My Pictures Viewer that I blogged about yesterday is a case in point. When a user running the application selects a folder containing one or more image files, the viewer displays clickable thumbnail versions of the images. The problem is that because Silverlight’s BitmapImage class consumes massive amounts of memory (up to 40 or 50 MB per image for a typical 2 to 3 MB digital photo), you simply can’t have too many instances extant at once. But to create a thumbnail, you first need a BitmapImage that wraps the entire image. You might create a thumbnail by assigning the BitmapImage to an Image object that measures just 100 by 100 pixels, but if the original image measures 4,000 by 4,000 pixels, it’s the latter figure you pay the price for.

To demonstrate, I wrote a simple test harness that you can easily duplicate yourself. I began with an app that pops up an OpenFileDialog and lets the user select an image file from his or her hard disk. Once the image file is selected, the application generates a thumbnail version of the image and adds it to the scene. Then it generates another thumbnail, and then another, and so on and so forth until Silverlight throws an out-of-memory exception. Here is the helper method that I initially used to generate the thumbnails:

private Image CreateThumbnailImage(Stream stream, int width)

{

    BitmapImage bi = new BitmapImage();

    bi.SetSource(stream);

    double cx = width;

    double cy = bi.PixelHeight * (cx / bi.PixelWidth);

    Image image = new Image();

    image.Width = cx;

    image.Height = cy;

    image.Source = bi;

    return image;

}

And here’s what happened when I ran the application and selected a 3,648 x 2,736 JPG with a file size of 2.1 MB:

Out of Memory

So get this. The application created 26 thumbnails, each measuring a mere 100 x 75 pixels. But attempting to create a 27th thumbnail produced an out-of-memory exception. When the exception occurred, Task Manager showed that the process’s working set size had grown from 30 MB to nearly 1.5 GB! It seems crazy on the surface, because a full-color 100 x 75 image should only require about 30K of memory. But it makes a lot more sense when you realize that underlying each thumbnail is a gigantic BitmapImage that retains the full fidelity of the 3,648 x 2,736 original.

The obvious question is what do you do about it? Is there a way to efficiently create thumbnail images from streams of image bits in Silverlight? It’s a question that pops up time and again in discussion forums and on message boards. And the short answer is yes, there is a way. But the answer probably isn’t the one you expect.

Developers commonly attempt a solution along these lines:

private Image CreateThumbnailImage(Stream stream, int width)

{

    BitmapImage bi = new BitmapImage();

    bi.SetSource(stream);

    double cx = width;

    double cy = bi.PixelHeight * (cx / bi.PixelWidth);

    Image image = new Image();

    image.Source = bi;

    WriteableBitmap wb = new WriteableBitmap((int)cx, (int)cy);

    ScaleTransform transform = new ScaleTransform();

    transform.ScaleX = cx / bi.PixelWidth;

    transform.ScaleY = cy / bi.PixelHeight;

    wb.Render(image, transform);

    wb.Invalidate();

    Image thumbnail = new Image();

    thumbnail.Width = cx;

    thumbnail.Height = cy;

    thumbnail.Source = wb;

    return thumbnail;

}

The basic idea is that instead of creating a thumbnail by assigning a large BitmapImage to a small Image, you use WriteableBitmap.Render with a ScaleTransform to create a thumbnail, and then assign the WriteableBitmap to an Image. Meanwhile, the BitmapImage and the Image it was temporarily assigned to—the one passed to WriteableBitmap.Render—go out of scope and are eventually picked up by the garbage collector.

It works well in theory, but not so well in practice, thanks to an undocumented behavior of WriteableBitmap. In fact, when I plugged the revised CreateThumbnailImage method into my test harness, the application ran out of memory just as quickly as before.

The problem, it turns out, is that when you call WriteableBitmap.Render, WriteableBitmap apparently retains a reference to the XAML object passed in the first parameter. (I was stumped, too, until Jeffrey Richter and I did a little detective work and discovered what was happening under the hood. Jeffrey’s my go-to guy for CLR issues, and I’m not sure I would have ever figured this out without him asking the right questions and suggesting solutions.) When CreateThumbnailImage returns an Image holding a reference to a WriteableBitmap, and the WriteableBitmap holds a reference to an Image, and the Image holds a reference to a BitmapImage, none of these objects gets garbage-collected. It seems that WriteableBitmap does nothing to solve the problem, especially given that there’s no public method or property you can use to force the WriteableBitmap to release the reference.

But all is not lost. You can make a copy of the WriteableBitmap and assign it to the Image you return. And since you didn’t call Render on the copy, it doesn’t hold a reference to an Image that prevents the garbage collector from cleaning up the BitmapImage. Here is the fixed and final version of CreateThumbnailImage—this time, one that accomplishes what we set out to do:

private Image CreateThumbnailImage(Stream stream, int width)

{

    BitmapImage bi = new BitmapImage();

    bi.SetSource(stream);

    double cx = width;

    double cy = bi.PixelHeight * (cx / bi.PixelWidth);

    Image image = new Image();

    image.Source = bi;

    WriteableBitmap wb1 = new WriteableBitmap((int)cx, (int)cy);

    ScaleTransform transform = new ScaleTransform();

    transform.ScaleX = cx / bi.PixelWidth;

    transform.ScaleY = cy / bi.PixelHeight;

    wb1.Render(image, transform);

    wb1.Invalidate();

    WriteableBitmap wb2 = new WriteableBitmap((int)cx, (int)cy);

    for (int i = 0; i < wb2.Pixels.Length; i++)

        wb2.Pixels[i] = wb1.Pixels[i];

    wb2.Invalidate();

    Image thumbnail = new Image();

    thumbnail.Width = cx;

    thumbnail.Height = cy;

    thumbnail.Source = wb2;

    return thumbnail;

}

When I plugged this implementation into my test harness, it successfully created hundreds of thumbnails (and could have created hundreds, perhaps thousands, more) without significantly increasing the working set size—and without throwing out-of-memory exceptions.

The moral is that you should be very careful about how you use BitmapImage in Silverlight. Even one of them can swell the working set size dramatically, but a couple dozen of them wrapping digital photographs is more than most PCs can handle. With a little care, however, you can scale down the impact of BitmapImage so that memory consumption is proportional to the sizes of the images you’re displaying rather than the sizes of the original, unreduced images. And that, in the end, is a handy arrow to have in your arsenal.

PUT MICROSOFT AZURE TO WORK
We tackle the ongoing challenges of running in Azure.

We were one of the first Microsoft Cloud Solution Providers (CSPs), we are Cloud OS Network (COSN) certified with many production environments on the Microsoft Cloud Platform including Azure Certified for Hybrid deployments leveraging private and public clouds.

We know how to make Azure work for you.


Architected to
meet your needs.

Deployed
flawlessly.

Operated reliably
24x7x365.

We build solutions to address your individual business objectives with an eye to sustained technology innovation.

We manage the entire lifecycle from start to finish to ensure no surprises and allow you to focus on your business.

We only engineer and deploy environments which can be managed and maintained for you by our team of experts 24x7x365.

20 years of experience makes us a trusted partner you can count on.

We have developed a core methodology to ensure we accurately capture your needs and translate them into the best solution possible. This process gives you the peace of mind that your cloud investment will be aligned with the return you seek. We can be counted on to bring our industry experience and real-world best practices to operate Azure environments.

Our methodology involves 4 steps:

Assess > Migrate > Re-Platform > Operate

Moving into the cloud is not a one time event. With every customer engagement, we deliver a structured approach as follows:

Assess:

Migrate:

Re-platform:

Operate:

Rely on our team to map your existing environment to a corresponding Azure cloud.

Easily move from your existing environment to a public or private Azure cloud.

Understand how to transform your applications to better take advantage of Azure capabilities.

Our team actively manages all maintenance and optimization to keep your environment running at its best.

Put Azure to Work

We know how to make Azure work for you.

LEARN MORE

Azure Environments Managed by Atmosera

We help you determine how best to run your applications in the deployment best suited for their unique requirements.

PUBLIC

HYBRID

PRIVATE

Run your business on the fastest growing public cloud.

Run your apps in the environment best suited for their requirements.

Run your business using a private and hosted Azure cloud.

Global Reach

More data centers than AWS & Google cloud combined

50

+$15B

6

Regions with 140 countries

Invested by Microsoft

Regions for US Government

The Power of Microsoft’s
Hybrid Platform

Azure Certified for
Hybrid Cloud

Microsoft is the only hyperscaler to offer a true hybrid solution with the flexibility to run applications using private or public clouds — and the ability to move between them.

Atmosera has the skills and expertise necessary to help you architect, deploy and operate integrated hybrid cloud solutions based on Microsoft’s Azure stack and microservices.

Atmosera has developed core competencies and intellectual property to take full advantage of all Azure has to offer.

All Atmosera Azure services receive the “Azure Certified for Hybrid Cloud” designation which confirms it passed Microsoft’s rigorous validation process under the Cloud OS Network (COSN) program. Customers benefit from knowing that their solution was carefully planned and executed using best practices and proven methods.

Not Sure How to Get Started?

Atmosera Azure pre-configured solutions can help.

We find many customers are not sure how to get started.
We developed a series of pre-configured solutions around specific use cases common for many customers.
You can take advantage of thoroughly tested and optimized solutions and accelerate the return on your cloud investment.

We deliver solutions that accelerate the value of Azure.

Ready to experience the full power of Microsoft Azure?

Start Today

Blog Home

Stay Connected

Upcoming Events

All Events