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 © 2025 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

WIA Profile: Lainie Speiser

With her fiery red hair and a laugh that practically hugs you, Lainie Speiser is impossible to miss. Having repped some of adult’s biggest stars during her 30-plus years in the business, the veteran publicist is also a treasure trove of tales dating back to the days when print was king and social media not even a glimmer in the industry’s eye.

Women in Adult ·
opinion

Fighting Back Against AI-Fueled Fake Takedown Notices

The digital landscape is increasingly being shaped by artificial intelligence, and while AI offers immense potential, it’s also being weaponized. One disturbing trend that directly impacts adult businesses is AI-powered “DMCA takedown services” generating a flood of fraudulent Digital Millennium Copyright Act (DMCA) notices.

Corey D. Silverstein ·
opinion

Building Seamless Checkout Flows for High-Risk Merchants

For high-risk merchants such as adult businesses, crypto payments are no longer just a backup plan — they’re fast becoming a first choice. More and more businesses are embracing Bitcoin and other digital currencies for consumer transactions.

Jonathan Corona ·
opinion

What the New SCOTUS Ruling Means for AV Laws and Free Speech

On June 27, 2025, the United States Supreme Court handed down its landmark decision in Free Speech Coalition v. Paxton, upholding Texas’ age verification law in the face of a constitutional challenge and setting a new precedent that bolsters similar laws around the country.

Lawrence G. Walters ·
opinion

What You Need to Know Before Relocating Your Adult Business Abroad

Over the last several months, a noticeable trend has emerged: several of our U.S.-based merchants have decided to “pick up shop” and relocate to European countries. On the surface, this sounds idyllic. I imagine some of my favorite clients sipping coffee or wine at sidewalk cafés, embracing a slower pace of life.

Cathy Beardsley ·
profile

WIA Profile: Salima

When Salima first entered the adult space in her mid-20s, becoming a power player wasn’t even on her radar. She was simply looking to learn. Over the years, however, her instinct for strategy, trust in her teams and commitment to creator-first innovation led her from the trade show floor to the executive suite.

Women in Adult ·
opinion

How the Interstate Obscenity Definition Act Could Impact Adult Businesses

Congress is considering a bill that would change the well-settled definition of obscenity and create extensive new risks for the adult industry. The Interstate Obscenity Definition Act, introduced by Sen. Mike Lee, makes a mockery of the First Amendment and should be roundly rejected.

Lawrence G. Walters ·
opinion

What US Sites Need to Know About UK's Online Safety Act

In a high-risk space like the adult industry, overlooking or ignoring ever-changing rules and regulations can cost you dearly. In the United Kingdom, significant change has now arrived in the form of the Online Safety Act — and failure to comply with its requirements could cost merchants millions of dollars in fines.

Cathy Beardsley ·
opinion

Understanding the MATCH List and How to Avoid Getting Blacklisted

Business is booming, sales are steady and your customer base is growing. Everything seems to be running smoothly — until suddenly, Stripe pulls the plug. With one cold, automated email, your payment processing is shut down. No warning, no explanation.

Jonathan Corona ·
profile

WIA Profile: Leah Koons

If you’ve been to an industry event lately, odds are you’ve heard Leah Koons even before you’ve seen her. As Fansly’s director of marketing, Koons helps steer one of the fastest-growing creator platforms on the web.

Women in Adult ·
Show More