Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've read that it is not possible to use getImageData on an image loaded from a different domain. Any trick to overcome this?

Thanks

share|improve this question
2  
That's an important security feature, and if there were a "trick" to get around it the security of the Internet would be severely, if not completely, compromised. – Pointy Jul 18 '10 at 15:24

2 Answers

You can make a proxy script on your domain that forwards the image from the other domain.

share|improve this answer
do you have an example or a url or a preferred way that you could share? – Skylar Saveland Jun 6 '11 at 5:36

Well,If you know something about python,Try python -m SimpleHTTPServer in your teminal, change your testing html file name into index.html and enter local:8000 to start your test

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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