I'm trying to figure out a more efficient way to create a 1px by 1px image (jpg, png and gif) from a single RGB color code, in php.
The example below illustrates one method of doing it but I was hoping for some kind of algorithm that will get me the same output without having to load any libraries or php extensions.
Example:
function rgbToDataUri($r,$g,$b,$type)
{
$im = imageCreateTrueColor(1, 1);
imageFill($im, 0, 0, ImageColorAllocate($im,$r,$g,$b));
ob_start();
switch($type)
{
case 'gif':
imageGif($im);
break;
case 'jpg':
case 'jpeg':
imageJpeg($im);
break;
default:
imagePng($im);
}
$img = ob_get_contents();
ob_end_clean();
return 'data:image/' . $type . ';base64,' . base64_encode($img);
}
echo rgbToDataUri(0,0,0,'gif');
Output:
data:image/gif;base64,R0lGODdhAQABAIAAAAQCBAAAACwAAAAAAQABAAACAkQBADs=
My goals are (in priority order):
- Low memory consumption
- High processor efficiency
- High speed of processing
Requirements include supporting gif, jpg and png. Anywhere from 20 - 50 of these single pixel images will be created with each request (each pixel is independent of the others).
How does one produce the binary for a 1px single color image?

packing without much work. – deceze Feb 16 '12 at 8:16