I'm making a HTML/Javascript tool that does something with images. Frankly, I just use HTML because Java or C++ GUI is way too complicated and not worth the effort.
The tool just displays an image and then displays percentual and absolute coordinates as you hover the image:
My aim is to create a little GUI for "Last images" allowing to quickly display recent image. And because the application is client-only, I can't use any kind of server storage. There's a localStorage
object, but to me, it seems like a bad idea to store several MB of images in it.
What do you think? Should I use localStorage
for that? Or is there an alternative? Or maybe the server cooperation is totally necessary?