Enter your email address:


C Books Guide and List
C++ Books Guide and List
Best Java Books

What is the most efficient way to resize large images in PHP?

0 votes
What's the most efficient way to resize large images in PHP?
asked by denis Sr Member (2,740 points)

1 Answer

0 votes

People say that ImageMagick is much faster. At best just compare both libraries and measure that.

  1. Prepare 1000 typical images.
  2. Write two scripts -- one for GD, one for ImageMagick.
  3. Run both of them a few times.
  4. Compare results (total execution time, CPU and I/O usage, result image quality).

Something which the best everyone else, could not be the best for you.

Also, in my opinion, ImageMagick has much better API interface

answered by sagar Expert (12,340 points)

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer