[TYPO3-core] RFC #16409: Implement fallback solution for box-shadow of module menu and tree frame

Sebastian Fischer sf at marketing-factory.de
Tue Nov 16 08:42:09 CET 2010


On 16.11.2010 06:49, Georg Ringer wrote:
> Hi,
>
> a question about using this syntax:
>
> Am 15.11.2010 23:08, schrieb Steffen Gebert:
>> +	background-image: url("data:image/png;base64,R0lGODlhAgABAIAAAMjIyLOzsyH5BAAAAAAALAAAAAACAAEAAAICRAoAOw==");
>
> is this really the way to go and how to get an image out of that again?
>
> georg
>

You could use some available webservices to reconvert base64 into image.

Or use something like:

header("Content-type: image/png");
$data = "R0lGODlhAgABAIAAAMjIyLOzsyH5BAAAAAAALAAAAAACAAEAAAICRAoAOw==";
echo base64_decode($data);

Greetings
Sebastian


More information about the TYPO3-team-core mailing list