Is it possible to use the filereader api within a web worker to load images i.e. for previews/thumbails, therefore preventing the main ui thread from blocking.

Something like this but wrapping the cpu intensive parts (mainly reading the files contents and scaling the image) inside a web worker

link|improve this question

See here for what is available to workers: whatwg.org/specs/web-apps/current-work/multipage/… – ellisbben Feb 16 at 20:32
feedback

2 Answers

up vote 1 down vote accepted

From a worker it's not possible to access the page's DOM level so you can't create an Image object or a canvas (for the scaling part) so the answer is no since you want to manipulate the image.

It is possible though to load the image files on a web worker via ajax or the FileReaderSync, convert it to a base64 data url string and send it back to the main script, but there is no way to manipulate the image in order to create your thumbnails. (unless you know the file spec for png/jpg/bmp formats and want to hardcode a scaling function working directly on the binary string, doesn't look so good huh?)

link|improve this answer
feedback

The main thread is called UI thread because everything related to the UI directly has to happen there. You can't manipulate DOM in Web Worker but you can manipulate binary of the image file within the Web Worker. After image manipulation, you have to transfer the data to the main thread and let it attach it to the DOM. The browser then will render this image within main thread.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.