Are there any recommended alternatives to GD library for image manipulation in PHP?

GD library is a popular choice for image manipulation in PHP, but if you're looking for alternatives, you can consider using ImageMagick or Imagick. These libraries offer more advanced features and better performance compared to GD.

// Example code using Imagick for image manipulation
$image = new Imagick('input.jpg');
$image->resizeImage(200, 200, Imagick::FILTER_LANCZOS, 1);
$image->writeImage('output.jpg');
$image->destroy();