PHP Image Resizer

./cache/6e58805ff4763cba92c7e45811fcf4df_w300.jpg

Image resized by width only

src: images/dog.jpg

Array
(
    [w] => 300
)

Image resized by width and height

src: images/dog.jpg

Array
(
    [w] => 300
    [h] => 300
)

Image resized by width and height and custom canvas color

src: images/dog.jpg

Array
(
    [w] => 240
    [h] => 240
    [canvas-color] => #ff0000
)

Image cropped & resized by width and height

src: images/dog.jpg

Array
(
    [w] => 300
    [h] => 300
    [crop] => 1
)

Image scaled by width and height

src: images/dog.jpg

Array
(
    [w] => 300
    [h] => 300
    [scale] => 1
)

Cropped square image

src: images/dog.jpg

Array
(
    [w] => 80
    [h] => 80
    [crop] => 1
)

Image cropped & resized by width and height from a remote location.

src: http://farm4.static.flickr.com/3210/2934973285_fa4761c982.jpg

Array
(
    [w] => 100
    [h] => 100
    [crop] => 1
)