diff --git a/docs/manual/OptionalTasks/image.html b/docs/manual/OptionalTasks/image.html index 014a29182..716797821 100644 --- a/docs/manual/OptionalTasks/image.html +++ b/docs/manual/OptionalTasks/image.html @@ -146,7 +146,7 @@ ImageOperation can handle nested Rotate, Draw, Rectangle, Text and Scale objects
++ <image destdir="samples/low" overwrite="yes"> + <fileset dir="samples/full"> + <include name="**/*.jpg"/> + </fileset> + <scale width="160" height="160" proportions="fit"/> + </image> +
Create thumbnails of my images and make sure they all fit within the 160x160 size whether the +image is portrait or landscape.
+<image srcdir="src" includes="*.png"> - <scale keepproportions="true" width="40"/> + <scale proportions="width" width="40"/> </image>
Creates a thumbnail for all PNG-files in src in the size of 40 pixel keeping the proportions @@ -195,7 +206,7 @@ and stores the src.
<image srcdir="src" destdir="dest" includes="*.png"> - <scale keepproportions="true" width="40"/> + <scale proportions="width" width="40"/> </image>
Same as above but stores the result in dest.