How to Resize Image Dynamically in PHP

Today almost every website you visit show content in form of thumbnails. Thumbnails are nothing but images displayed next to the content. Be it News website or a blog, displaying images next to content is key to appeal user. Even our blog shows images as thumbnails on home page.

A prerequisites to show Thumbnail in a webpage is that thumbnail must be small enough. So that many thumbnails can be loaded as fast as possible. Hence almost every website resize the image to create small thumbnails.

So how to do this on the fly? How to resize an Image dynamically in PHP?

There is an extremely useful PHP library called timthumb which comes very handy. It’s just a simple PHP script that you need to download and put in some folder under your website. And then simply call it with appropriate arguments.

  1. Download timthumb.php and put under any folder.
  2. Upload this script timthumb.php though FTP to your web hosting. Put it under a directory /script.
  3. Just call timthumb.php with appropriate arguments, For example:
<img src="/script/timthumb.php?src=/some/path/myimage.png&w=100&h=80" alt="resized image" />
Code language: HTML, XML (xml)

And that’s all!!

One thing worth noting here is that this library will create a folder cache in the directory where timthumb.php script resides. This folder will cache the resized image for better performance.

You can refer following table for different parameters and its meaning.

ParameterValuesMeaning
srcsourceurl to imageTells TimThumb which image to resize
wwidththe width to resize toRemove the width to scale proportionally (will then need the height)
hheightthe height to resize toRemove the height to scale proportionally (will then need the width)
qquality0 – 100Compression quality. The higher the number the nicer the image will look. I wouldn’t recommend going any higher than about 95 else the image will get too large
aalignmentc, t, l, r, b, tl, tr, bl, brCrop alignment. c = center, t = top, b = bottom, r = right, l = left. The positions can be joined to create diagonal positions
zczoom / crop0, 1, 2, 3Change the cropping and scaling settings
ffilterstoo many to mentionLet’s you apply image filters to change the resized picture. For instance you can change brightness/ contrast or even blur the image
ssharpen Apply a sharpen filter to the image, makes scaled down images look a little crisper
cccanvas colourhexadecimal colour value (#ffffff)Change background colour. Most used when changing the zoom and crop settings, which in turn can add borders to the image.
ctcanvas transparencytrue (1)Use transparency and ignore background colour

Hope this is useful for you :)

View Comments

    • If you are new, the PHP.net manual will give you nightmares. Everyone points newbies to it and I believe that is not the best place to start, as the manual is written for people who already understand PHP. For a newbie, it is an incredibly daunting thing, in my opinion.

      Start with David Powers' book PHP Solutions, you can order it from Amazon. I started with this book and used it to self-teach myself PHP. I am now getting to the point where I am learning more than the book can provide, but for the first several years, this book was a godsend, and I use it as a reference guide each time I program. I can not stress how good this book was for me.

      Once you get your feet wet, sign up for an account with StackOverflow.com. It is not quite a forum, but it is absolutely the best place to get help.

      Read the book I mentioned, take and keep notes, and read forums and StackOverflow posts to get an idea how to ask your questions the right way. Many experts will chide you for not asking questions the right way which sucks because being a newbie, how WOULD you know the right way to ask the question? Still, do some research on SO and you'll get a good idea how to ask questions to get you the best results.

      PHP Solutions by David Powers and StackOverflow will be your two BEST friends for learning PHP.

      Cheers!

  • I thought that Timthumb had some nasty vulnerabilities and that is why it has been removed from Wordpress.

  • dear sir,
    I have a problem in my wordpress blog,when i post new things in my blog there are not showing that post in my home page. i have done setting option to show updated post.but there are not showing now, can you sir tell me how to do this. plz sir plz guide me. my blog is http://shrikrishnaprasadam.com/ you can see this blog sir..

    thanks

  • Thumbnails of large image created is being oriented 90 deg couter-clockwise ; this issue doesnt affect smaller images. How to overcome this?

  • I want to code one PHP script which allows me to generate thumbs of given images with specified dimensions and names as per Next-Gen Gallery Plugin of Wordpress.

    I have website for cover pages: http://facebook4free.com/

    Thumb Gallery Page: http://facebook4free.com/category/facebook-cover-pages/abstract-facebook-cover-pages-facebook-cover-pages/

    Main Image Page: http://facebook4free.com/abstract-cover-pages-for-facebook-profile-2/facebook-images/image/1-cover-photo-82140/

    Issue is timeout when I upload images in wordpress plugin. It uploads images in create their thumbs but when I upload more than 10 images it fails. So I want to separately create PHP script which create thumbnails of my FB cover pages with given dimensions and specified name (a pattern).

    Any help would be appreciated.

  • i have some knowledge in php and i want to develop my site in codeigniter i am new to codeigniter then how to start my new site and please guide me how to learn codeigniter. please guide me.

  • 'The resource from this URL is not text:' why it always appear when my code using timthumb?

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago