I'm using a third party php class to talk to UPS and generate a label. The generated label data comes in the Base64 format and I can display it like this.
echo '<img src="data:image/gif;base64,'.$label_data.'" />';
I'm just looking for a way to force this image to be downloaded (as a GIF) instead of just displaying it.
Any idea how this is possible?