educational

Image Manipulation Using PHP

I bet that many of you who develop websites have had this problem at least one time: how to resize, rotate and manipulate pics using PHP. I myself had this problem some time ago, and so I searched for the best solution. Among the options I found was a tool called ImageMagick.

ImageMagick is a standalone, command-line program that can be called with parameters to perform a requested change to either a single image, or to a set of images. ImageMagick is by far more complex than any other image processing tool I found, and although there may be other tools, I can recommend this one.

Since all of your image processing can be easily done by this tool, all you have to do is to install it on your Web server and then call it with the proper parameters. If you are using a Linux Web server, there are some configuration issues that you have to take care of, such as specifying full paths (paths from the root folder, not relative paths), and setting ‘umask’ to "0" in order to prevent changing file permissions in a way that will cause you problems in the future.

Here are some examples of how you can use ImageMagick:

• To Make Thumbnails:

<?
// Set the path to where the ImageMagick program is on your server
$path_imagemagick="/usr/X11R6/bin/";

// Set the path and filename to the picture
$path_picture="/www/sitename/pictures/picture1.jpg";

// Set the path and filename to where the thumb will be created
$path_thumb="/www/sitename/thumbs/thumb1.jpg";

// Set the largest dimension of the thumbnail (width for landscape and height for portraits)
$thumbnail_size=120;

// Set umask to 0 in order not to affect the file permissions during the next operation
umask(000);

// Execute the shell command that calls Image Magick with the proper parameters (as set above)
$ok=shell_exec($path_imagemagick."convert -size $thumbnail_size $path_picture -geometry $thumbnail_size $path_thumb");

// If shell_exec above returns 1 this mean that the operation was sucessful.
if ($ok)
{
echo "Thumbnail Created OK";
}

?>

• To Resize Images:
This is done the same way as above, except that the $path_thumb (which is the destination file) will have the same value as $path_picture – and this way the script will resize the original image, rather than create a new image.

• To Rotate Images:
To rotate an image, you must decide how much to rotate it (the number of degrees), and in which direction. Actually, all you have to know is the number of degrees you wish to rotate, since the direction is indicated by the plus and minus sign. So, +90 degrees means to rotate the pic counter clockwise for a quarter of circle (full circle is 360 degrees); -90 meens to rotate it clockwise for a quarter of circle:

<?
// Set the path to where the ImageMagick program is on your server
$path_imagemagick="/usr/X11R6/bin/";

// Set the path and filename to the picture
$path_picture="/www/sitename/pictures/picture1.jpg";

// Set the degrees with whom the picture will be rotated. Positive means counter clockwise and negative clockwise.
$degrees=-90;

// Set umask to 0 in order not to affect the file permissions with the next operation
umask(000);
$ok=shell_exec ($path_imagemagick."convert -rotate $degrees $path_picture $path_picture");

// If shell_exec above returns 1 this mean that the operation was sucessful.
if ($ok)
{
echo "Picture Rotated OK";
}

?>

• Apply A Watermark:

To do this, you will need to have an aditional image that will be used for the watermark.

<?
// Set the path to where the ImageMagick program is on your server
$path_imagemagick="/usr/X11R6/bin/";

// Set the path and filename to the picture
$path_picture="/www/sitename/pictures/picture1.jpg";

// Set the path and filename to the watermark picture
$path_watermark="/www/sitename/images/watermark.jpg";

// Set umask to 0 in order to not affect the file permissions during the next operation
umask(000);
$ok=shell_exec ($path_imagemagick."composite -watermark 15x70 -gravity SouthEast $path_watermark $path_picture
$path_picture");

// If shell_exec above returns 1 this mean that the operation was sucessful.
if ($ok)
{
echo "Picture Watermarked OK";
}

?>

As you can see, ImageMagick is a great tool for dynamically processing images using a PHP-enabled Web server. Try it for yourself, and see how easy automating your image manipulation tasks can be!

Copyright © 2026 Adnet Media. All Rights Reserved. XBIZ is a trademark of Adnet Media.
Reproduction in whole or in part in any form or medium without express written permission is prohibited.

More Articles

opinion

How to Convert Fans Through Scarcity and Exclusivity

Nothing sparks fans’ ongoing desire in the long term like making them feel personally prioritized. It gives them a sense of belonging and sparks a level of loyalty that goes far beyond just loving your work. Forging that degree of connection, however, requires knowing how to employ two key tactics: scarcity and exclusivity.

Sara Stars ·
opinion

How to Reinvest Revenue Back Into Your Creator Brand

Early in their careers, most creators necessarily focus on survival. Money goes toward basic expenses, equipment upgrades and keeping content flowing. Once income becomes more consistent, however, it’s time to begin thinking about growth and sustainability. How can you build something that lasts beyond the next release or trend?

Megan Stokes ·
profile

Stripchat's Jessica on Building Creator Success, One Step at a Time

At most industry events, the spotlight naturally falls on the creators whose personalities light up screens and social feeds. Behind the booths, parties and perfectly timed photo ops, however, there is someone else shaping the experience.

Jackie Backman ·
opinion

Inside the OCC's Debanking Review and Its Impact on the Adult Industry

For years, adult performers, creators, producers and adjacent businesses have routinely had their access to basic financial services curtailed — not because they are inherently higher-risk customers, but because a whole category of lawful work has long been treated as unacceptable.

Corey Silverstein ·
opinion

How to Build Operational Resilience Into Your Payment Ecosystem

Over the past year, we’ve watched adult merchants weather a variety of disruptions and speedbumps. Some even lost entire revenue streams overnight — simply because they relied too heavily on a single cloud provider that suffered an outage, lacked sufficient redundancy and failover, or otherwise fell short when it came to making sure their business was protected in case of unwelcome surprises.

Cathy Beardsley ·
opinion

Building a Stronger Strategy Against Card-Testing Bots

It’s a scenario every high-risk merchant dreads. You wake up one morning, check your dashboard and see a massive spike in transaction volume. For a fleeting moment, you’re excited at the premise that something went viral — but then reality sets in. You find thousands of transactions, all for $0.50 and all declined.

Jonathan Corona ·
opinion

A Creator's Guide to Starting the Year With Strong Financial Habits

Every January brings that familiar rush of new ideas and big goals. Creators feel ready to overhaul their content, commit to new posting schedules and jump on fresh opportunities.

Megan Stokes ·
opinion

Pornnhub's Jade Talks Trust and Community

If you’ve ever interacted with Jade at Pornhub, you already know one thing to be true: Whether you’re coordinating an event, confirming deliverables or simply trying to get an answer quickly, things move more smoothly when she’s involved. Emails get answered. Details are confirmed. Deadlines don’t drift. And through it all, her tone remains warm, friendly and grounded.

Women In Adult ·
opinion

Outlook 2026: Industry Execs Weigh In on Strategy, Monetization and Risk

The adult industry enters 2026 at a moment of concentrated change. Over the past year, the sector’s evolution has accelerated. Creators have become full-scale businesses, managing branding, compliance, distribution and community under intensifying competition. Studios and platforms are refining production and business models in response to pressures ranging from regulatory mandates to shifting consumer preferences.

Jackie Backman ·
opinion

How Platforms Can Tap AI to Moderate Content at Scale

Every day, billions of posts, images and videos are uploaded to platforms like Facebook, Instagram, TikTok and X. As social media has grown, so has the amount of content that must be reviewed — including hate speech, misinformation, deepfakes, violent material and coordinated manipulation campaigns.

Christoph Hermes ·
Show More