Is it possible to do simple string concatenation to 'join' 2 base 64 encoded images together if the images have the same characteristics (width/height/color depth etc)?
eg
img1 w=100, h=200
img2 w=100, h=200
img1+img2
results in
img3 w=100, h=400
intuitively this feels like a stupid question since presumably the encoding includes headers containing meta data, but i don't know enough about base64 to know any better ;)
So far my preliminary tests have yielded broken results.
Thanks, Eli