I want to create a 2nd-level page enabling the user to post-process an image captured before. To get that image to page 2, I want to pass is as some kind of parameter. But the only way I saw was to append it as a string to the URL and that doesn't sound to efficient.
Of course I know about serialisation, but take the Lima 1020 capturing in 38 megapixels: that's almost 500mb RAM and though I'm ot sure if a string can theoretically contian that much data, I seems terribly bad style.
So is there a clean ways to pass the data (by clean I mean: pass it as parameter, without using e. g. static classes)?