Is there any way to identify the modified image with PIL in python? My question is: How can I use PIL to identify modified image. By modified image, I mean any image that is by some way, modified using photoshop, GIMP or similar kind of software.
Update: Let’s ask this in this way also. Is there any way to identify photoshopped image? Any software, tools etc, etc.
You can certainly use all the tools in PIL to figure out if an image has been modified. The problem is that figuring out is a very complicated task, so there is no easy, already implemented, method that you call and it tells you if the image has been manipulated.
You should read some papers on this topic just to see how difficult that is. After that you may (or not) want to implement the ideas presented in those papers using PIL.
Here’s a link with a search for such papers.