---
title: "Is ImageMagick Installed on My Server?"
description: "This article answers the important question: Is ImageMagick installed on my server? As of February 25, 2020, the servers for WordPress Hosting customers have the PHP extensions that allows the use of..."
url: https://www.inmotionhosting.com/support/website/is-imagemagick-installed-on-the-servers/
date: 2011-08-26
modified: 2023-07-07
author: "Carrie Smaha"
categories: ["Website"]
type: post
lang: en
---

# Is ImageMagick Installed on My Server?

![Is ImageMagick Installed on My Server? Hero Image](https://www.inmotionhosting.com/support/wp-content/uploads/2023/07/Is-ImageMagick-installed-on-my-server-1024x538.png)

This article answers the important question: **Is ImageMagick installed on my server?**

As of February 25, 2020, the servers for [WordPress Hosting](https://www.inmotionhosting.com/wordpress-hosting) customers have the PHP extensions that allows the use of imagick from PHP code.

ImageMagick allows you to dynamically create and edit images on the server. It will need to be ran from the command line as none of the API’s are installed. ImageMagick is already available for utilization on the servers. It is located at:

- **/usr/bin/convert**
- **/usr/bin/mogrify**

ImageMagick homepage –[https://www.imagemagick.com/](https://www.imagemagick.com/)

**Example:**
The following are examples to demonstrate that ImageMagick is installed and functioning. If you have a file named image.jpg in your public_html, the following command ran from the command line will resize the image and name the new image to resize_image.jpg:

- **Servers with SSH access:** convert image.jpg -resize 64x64 resize_image.jpg
- **Using ImageMagick without SSH access: You can setup a cron job with the following command:** /usr/bin/convert public_html/image.jpg -resize 64x64 public_html/resize_image.jpg
- **Using ImageMagick without SSH accesss: You can run the following command from a php script:** exec('/usr/bin/convert /home/USERNAME/public_html/image.jpg -resize 64x64 /home/USERNAME/public_html/resize_image.jpg'); ***Please note that in this example you will need to replace USERNAME with your actual username.******You will also need to make sure that the folder you are writing resize_image.jpg to has write permissions.***
