rotatinggiffilesize

Could Rotating GIFs Improve Performance?

GIFs are funny.

Take a look at the following beautiful gradients in GIF format:

Horizontal Gif Gradient Vertical Gif GradientThe vertical GIF gradient weighs in at 12.6KB, whilst the horizontal GIF gradient weighs in at 63.9KB. (I have wpsmush running on here, but those are the sizes pre-upload. The larger image lost 2.08KB, whilst the smaller lost 37B).

Ramadan bodybuilding and diet program hair loss weight training bar 1m55 – an overview.

Why is this the case?

“GIFs follow a compression algorithm that removes horizontal redundancy. So by introducing extra vertical details or noise, we’ve increased the file size of the GIF.” – Lara Callender Hogan

These images are dramatically different sizes because the GIF format offers significantly better compression in one direction.

So what if we were committed to displaying horizontal GIF based gradients, but wanted the performance of vertical GIF based gradients?

We’re in real hypothetical territory here, and I’m a big fan of the terrible bodge:

Horizontal Gif GradientSee what I did there? The bodge here is using CSS to rotate a horizontal gradient, giving us the vertical gradient we desire:

<img src="horizontal.gif" style="transform: rotate(90deg);"/>

And this bodge removes 80.28% of the filesize.

To put it another way – You can (possibly) reduce page weight by saving a copy of a GIF rotated 90 degrees, and rotating it back with CSS.

Real World Example

The following space-jump GIF is 889.85KB:

spacejump88985k

While saved at a 90 degree rotation this same GIF is 809.72KB:

spacejump80972Rotating this back to the original orientation:

<img src="horizontal.gif "style="transform: rotate(270deg);"/>

spacejump80972Just under a 9% saving (click – it’s the same file). Not bad for such a silly technique. It is a double edged sword however, so don’t rush to rotate everything:

theocean860 theocean950Rotating this ocean takes it from 860KB to 950KB, so it’s not always a good idea.

To look into this more broadly, I ran a Buzzfeed article through Gifsicle, rotating each gif.

GameofthronesThis took the article from a whopping 19.3MB to a svelte 18.7MB. Picking the winners from these lists doesn’t get us down further. Not big money to us, but not a saving for Buzzfeed or Giphy to sneer at either.

Running With This

To apply this at some scale we could start with the following.

  1. Batch Convert GIFS.
  2. Test for size.
  3. Upload smallest of each pair.
  4. Handle your now ruined CSS.

You can use a processor like imagemagick to create rotated copies of your .gif images:

convert example.gif  -rotate  90  example_90deg.gif

Then, perform a test to compare the original gifs and their rotated versions pairwise. We want to work with the smaller file of the two.

Now, if the src attribute of an <img> tag ends with ‘_90deg.gif‘ (or similar), we’ll want to rotate it back to ‘normal’. We can do that with the following rule:

[src$="_90deg.gif"] {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg); }

Upload these files and ensure your HTML is pointing to the the correct rotated versions. This will certainly play havoc with your current CSS setup, especially with specified image dimensions.

Seriously?

It’s all good saving a few bytes on the upload, but what if it’s at the expense of battery life and render time? Every site is different, and this is too fiddly a method to be of actual use, but I’d love to hear your thoughts. I don’t believe 2D transformations are slow or resource heavy, so the tradeoff there is probably sound.

Although layout is more or less done before the images load in, I must admit that it looks really weird watching images load from left to right, rather than top to bottom.

If your website purely deals in non-animated GIF based gradients (which it shouldn’t), then I’d strongly recommend adopting this method!

This idea popped into my head a while after reading Designing For Performance. Excellent book!

4 thoughts on “Could Rotating GIFs Improve Performance?”

Leave a Reply

Your email address will not be published. Required fields are marked *