Category Archives: jQuery Image Resize Plugin

jQuery Image Resize Plugin v2.1

The latest version of jQuery Image Resize plug-in is out and includes the following updates:

  • The plugin doesn’t need both height and width parameters anymore. The plugin caters for just one parameter e.g. if width parameter is supplied, the plugin works out the height and vice versa.
  • Fixed a weird IE6 bug.
  • Chainability – The plugin now returns the jQuery object. So, now you can do stuff like $(".resizeme").aeImageResize({width: 250}).css('color', '#000');
  • More optimised.
  • Minified using Google Clousure (like jQuery).

Download the latest version: https://github.com/adeelejaz/jquery-image-resize/releases
Report any bugs: https://github.com/adeelejaz/jquery-image-resize/issues

Flattr this!

jQuery Resize Plugin – Dynamically resize images

I finally managed to move my development code to Ubuntu and Git. So, lets kick start with the first Git Repository, jquery-image-resize. It includes example and minified version of the script.

Download the latest version:
https://github.com/adeelejaz/jquery-image-resize/releases

I’ll try my best to give support on my blog but if you find any issues, please report them to the Issue Tracker.

Flattr this!

Function to dynamically resize images using jQuery

UPDATE: I have created a jQuery plugin that dynamically resizes the images. It is faster and is optimized better (minified).

I have noticed that there has been quite a bit of interest in my post about dynamically resizing images using jQuery. I have created a function to do this job better. Not only it makes the code cleaner but it also makes it a lot easier to use it.

First, for those people looking for a quick lookup of solution, here is the optimized version of the function followed by a couple of examples to use it:

And now the explanation.. The function takes one argument, a number, which is the maximum height and/or the width of the image. The function automatically decides what is the best way to resize the image as its all calculated from the proportions of the original image.

What follows below is an expanded (non-optimized) version of the function and explanation on what each statement does:

NOTE: I do highly recommend using the optimized version of the function above

Line 1 declares the function “resize” and accepts a variable for maximum height/width.
Line 2 stores the Math.ceil function to a single letter variable for calling up later by m(). It is same as calling Math.ceil() and is done this way for reducing the size of the script (called minifying).
Lines 3 to 5 check if a maximum height/width was specified, if not, the script defaults to a maximum size of 200px.
Line 6 & 7 sets two variables ‘h’ for height and ‘w’ for width to the maximum size. One of these variables will be changed depending up the proportions of the image being resized.
Line 9 starts the jQuery.each function that iterates over each image one by one.
Line 10 stores the image’s height to a variable and is for reducing the size of the script.
Line 11 stores the image’s width to a variable and is for reducing the size of the script.
Line 12 checks if the image height is greater than the image width.
Line 13 only executes when the image’s height is bigger than the width. It calculates the image’s new width with proportion to its original size (which would be less than the height).
Line 14 is basic else statement.
Line 15 only executes when the image’s width is bigger than the height. It calculates the image’s new height with proportion it its original size (which would be less than the width).
Line 17 uses the jQuery’s built-in CSS function to set the new height and width for the image.

Flattr this!

Resize images using jQuery

UPDATE: I have created a plugin that dynamically resizes the images using jQuery. It basically does the same job but is really easy to use and is optimized better (minified).

Recently I needed a script to resize images on the page. I did not want to lose the actual resolution but just wanted to create thumbnails on the go.

I spent some time searching but could not find anything suitable. The options I found were just too much while I needed something simple. At the end, I ended up writing some own code (I’m a coder after all :P).

The script resizes the images without distorting the proportions. First of all, a variable is declared called max_size that is set to the maximum height or width that the picture needs to be resized to. Then using jQuery we match all img elements and using the each function, we go through each one of them resizing them as necessary. The if statement checks which side of the image needs to be kept to the maximum and the other one is calculated proportionally.

In the final line, the new height and width values are assigned using CSS. Neat eh 😉

Flattr this!