tox
tox

Reputation: 49

How can I edit a binary image in PHP?

How can I display and edit binary images in PHP? For example, how can I edit the image below bit-by-bit in PHP?

Firefox Logo

(Click image to enlarge.)

Upvotes: 2

Views: 502

Answers (1)

Zach Rattner
Zach Rattner

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

Related Questions