Install ImageMagick on Debian: Difference between revisions

From Leechfinger
Jump to navigationJump to search
Qais (talk | contribs)
Created page with "== Install ImageMagick on Debian == Imagemagick is a very useful free and open-source image editing tool. Imagemagick can read and write images in a variety of formats like GIF, JPEG, PNG, and TIFF. We can also use ImageMagick to resize, flip, mirror, rotate, distort, and transform images, adjust image colors, and many more. == Need a compiler == We will be compiling from source, thus, we need build essentials. <syntaxhighlight lang="bash" line> # apt install make build..."
 
Qais (talk | contribs)
Line 7: Line 7:
# apt install make build-essential automake
# apt install make build-essential automake
</syntaxhighlight>
</syntaxhighlight>
== Install PHP and modules ==
Please read [[:Installing PHP]]
[[Category:Graphics]]
[[Category:Graphics]]

Revision as of 23:53, 17 May 2024

Install ImageMagick on Debian

Imagemagick is a very useful free and open-source image editing tool. Imagemagick can read and write images in a variety of formats like GIF, JPEG, PNG, and TIFF. We can also use ImageMagick to resize, flip, mirror, rotate, distort, and transform images, adjust image colors, and many more.

Need a compiler

We will be compiling from source, thus, we need build essentials.

# apt install make build-essential automake

Install PHP and modules

Please read Installing PHP