For a particular application, I must inline images in HTML using the <img src='data:image/gif;base64,...' /> technique.
I can generate the base64 of the image of any dimensions in JPEG format, but IE8, there is a 32K ascii character limit on the length of the URL for the source. This limits the amount of image data that can be inlined per img tag. I can simulate an image of any size by tiling images.
Because of the JPEG format, different tiles can require different byte counts to represent depending on the compressibility of that region. So for a consistent tile size, the tiles should be small. Yet, the tiles are noticeably slow to create, so the tiles need to be as big as possible.
I need to find the maximum fixed (square? ratio'd?) tile pixel dimensions at a certain JPEG quality that can be stored in 32K - "data:image/gif;base64,".length count of ascii characters. This involves first discovering the upper bound byte length of the JPEG, and then calculating the upper bound character length in base64.
I understand that there can be metadata in JPEGs that could be crafted to use up our limit before getting to any image information at all. I'd like to know about how meta data changes the resulting size related to the image quality and dimensions, but otherwise, the length of the JPEG headers can be assumed to be some constant. (Right? And how might I discover that constant length, as generated by some benevolent JPEG generator?)
Does anyone know a formula for this upper bound, f(height, width, quality)?
Alternatively, does anyone know the absolute WORST image for JPEG compression (worst, regardless of quality parameter)?