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?)