Reputation: 49
How can I display and edit binary images in PHP? For example, how can I edit the image below bit-by-bit in PHP?
(Click image to enlarge.)
Upvotes: 2
Views: 502
Reputation: 21361
The specific function calls that you'll need to use depend largely on what exactly you'd like to do to the image. However, PHP uses the GD library, which covers an extensive range of image manipulation abilities.
Here are some tutorials to help you get started:
Upvotes: 3