I would reconsider your design. You should restrict the client to reading and executing (but not writing to) a script that you have written yourself to do the specific task they need. In the script verify that you are operating upon an image file so it can't be used on other files that are not valid images. Do more than just checking the file extension, also check the first several bytes of the file (which for most formats will tell you what it is). File extensions are easily changed.
Never let a user upload their own scripts for execution to your server. Hacking you will be really easy if you do that. If you have "power" users that must be able to do this, create for them their own user account that is sandboxed to their own environment. This way they can't affect other users or your system, and you have non-repudiation on their actions (so if they do something stupid you can hold them accountable), and any security holes they open up will be limited to destroying their files and not yours.