How to remove watermark using PHP? Image with watermark: http://img201.imageshack.us/img201/2771/32377509.jpg

link|improve this question
1  
should you remove the watermark? What does it mean? – xtofl Feb 8 '11 at 19:33
Non-trivial. Use Photoshop, or don't steal other sites images. The watermark is there for a reason. – Byron Whitlock Feb 8 '11 at 19:34
1  
You should first ask yourself why there is a watermark, and if removing it is legal. If it is, the easiest way would be to ask the author of the image to provide you one without the watermark. – MainMa Feb 8 '11 at 19:35
2  
That was an on-topic question IMNSHO - even though it was very scarce on data, and the answer is "can't do that". – Piskvor Feb 8 '11 at 19:37
4  
The best way to do this, would be to lay the headphones on a white piece of paper than take the picture. :):) – Chris Buckler Feb 8 '11 at 19:39
show 1 more comment
feedback

closed as not a real question by jasonbar, xtofl, Gavin Miller, phihag, Rocket Feb 8 '11 at 19:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

The watermark is there for a reason. The same reason why it will be close to impossible for you to remove it.

link|improve this answer
feedback

It would be tough to do this in Photoshop, let alone using GD or something along those lines. If you're looking for image manipulation however, read up on GD:

http://php.net/manual/en/book.image.php

link|improve this answer
feedback

You can't (not reliably or automatically anyway). That's the whole purpose of a watermark: take two images (watermark and base), and combine them. Some information from both is irretrievably lost, and a resulting watermarked image is produced.

You could retouch the resulting image manually, guessing and repainting what probably was in the base image, but there is no way to subtract the watermark from the watermarked image and get the original back.

See a very similar question for an example.

link|improve this answer
feedback

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