Upload and Create Image Thumbnails using CodeIgniter

Upload and Create Image Thumbnails using CodeIgniter

The capability of uploading and create image thumbnails is one of the most important requirements for most web application developers and Codeigniter provides file upload and file resize feature. The Codeigniter Library for image Upload and Resize Image is very easy to use. Here are step-by-step instructions on how to upload and create thumbnails using CodeIgniter. I will show you with this article how to upload and create image thumbnails using CodeIgniter.

Advantages of Upload and Create Image Thumbnails using CodeIgniter:

  • The thumbnail is a small version of the image that used to appear on the web page as a smaller copy.
  • Thumbnail helps to save bandwidth
  • Reduce page load time

The Image Manipulation class of CodeIgniter helps to resize the image and build thumbnails before uploading. Remember the file structure before you start implementing the image upload feature in CodeIgniter.

ALSO SEE: Reduce Image Size Before Upload Using PHP

Config

In the config / autoload.php file, define which helper you want to automatically load on each request. For this example CodeIgniter image upload script, specify automatic loading of the URL helper.

Controller (Upload.php)

Copy and Paste below code in the Upload.php file. The Upload controller handles the image upload and resizes functionality.

do_upload() function is used to perform upload operation using the Upload library.

Set preferences for Image_lib class

  • image_library – The image library to be used for image manipulation.
  • source_image – Absolute path of the source image.
  • new_image – Absolute path where the image copy will be saved.
  • maintain_ratio – Specify whether to maintain the aspect ratio of the original image.
  • width – Set width of the image.
  • height – Set height of the image.

The resize() function is used to resize the original image and create a thumbnail image using the Image_lib library.

View (upload/index.php)

Copy and pastes the below code to create an HTML form to upload the image files. If file upload is successful, the image thumbnail is displayed on the webpage.

jQuery to Preview and Rotate an Image Before Upload using PHP

Conclusion:

Our article script will help you integrate image uploading with resize and thumbnail features into CodeIgniter. You can use it for many purposes for which the image file is required for upload.

Are you want to get implementation help, or modify or extend the functionality of this script? Submit a paid service request

Related posts