Merge pull request #3043 from martinduparc/patch-3

Fixed small typo
This commit is contained in:
Will Rossiter 2014-04-16 11:24:21 -07:00
commit fd344c3b3e

View File

@ -93,7 +93,7 @@ For output of an image tag with the image automatically resized to 80px width, y
:::php
$Image.SetWidth(80) // returns a image 80px wide, ratio kept the same
$Image.SetHeight(80) // returns a image 80px tall, ration kept the same
$Image.SetHeight(80) // returns a image 80px tall, ratio kept the same
$Image.SetSize(80,80) // returns a 80x80px padded image
$Image.SetRatioSize(80,80) // Returns an image scaled proportional, with its greatest diameter scaled to 80px
$Image.CroppedImage(80,80) // Returns an 80x80 image cropped from the center.