Author: damjan Date: Thu Oct 31 05:07:43 2013 New Revision: 1537378 URL: http://svn.apache.org/r1537378 Log: Website updates.
Modified: commons/proper/imaging/trunk/src/site/xdoc/formatsupport.xml commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml commons/proper/imaging/trunk/src/site/xdoc/index.xml commons/proper/imaging/trunk/src/site/xdoc/sampleimages.xml commons/proper/imaging/trunk/src/site/xdoc/whyimaging.xml Modified: commons/proper/imaging/trunk/src/site/xdoc/formatsupport.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/formatsupport.xml?rev=1537378&r1=1537377&r2=1537378&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/formatsupport.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/formatsupport.xml Thu Oct 31 05:07:43 2013 @@ -241,7 +241,7 @@ limitations under the License. <tr> <td>JPEG/JFIF EXIF Metadata</td><td>yes</td><td>yes</td> <td> - Can read and write EXIF data to and from exsiting JPEG/JFIF files WITHOUT modifying image data. + Can read and write EXIF data to and from existing JPEG/JFIF files WITHOUT modifying image data. </td> <td> <a href="http://www.exif.org/">Exif Specs, etc.</a> Modified: commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml?rev=1537378&r1=1537377&r2=1537378&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/gettingstarted.xml Thu Oct 31 05:07:43 2013 @@ -29,7 +29,8 @@ limitations under the License. <li>Commons Imaging requires Java 1.5 or higher.</li> <li>The questions of porting to J2ME and Android have been raised, but not yet pursued.</li> <li>Commons Imaging has no dependencies.</li> - <li>It does not use ImageIO/AWT.</li> + <li>AWT is required. ImageIO is only required to compile and used optionally + as a fallback when reading JPEG thumbnails.</li> </ul> </p> Modified: commons/proper/imaging/trunk/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/index.xml?rev=1537378&r1=1537377&r2=1537378&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/index.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/index.xml Thu Oct 31 05:07:43 2013 @@ -33,8 +33,10 @@ of image info (size, color space, ICC profile, etc.) and metadata. </p> <p> - This library is pure Java. It's slower, consequently, but perfectly portable. - It's easier to use than ImageIO/JAI/Toolkit (Sun/Java's image support), supports + This library is pure Java. Compared to typical image I/O libraries in native code, + it's more portable, and should be more reliable and more secure against corrupt/malicious + images, yet still performs reasonably well. + It's easier to use than ImageIO/JAI/java.awt.Toolkit (Sun/Java's image support), supports more formats (and supports them more correctly). It also provides easy access to metadata. </p> <p> Modified: commons/proper/imaging/trunk/src/site/xdoc/sampleimages.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/sampleimages.xml?rev=1537378&r1=1537377&r2=1537378&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/sampleimages.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/sampleimages.xml Thu Oct 31 05:07:43 2013 @@ -27,14 +27,14 @@ limitations under the License. <p> <ul> <li>The original test image suite that Imaging was developed against cannot be released, since we don't own the rights to many of the more interesting examples.</li> - <li>We are in the process of collecting</li> + <li>We are in the process of generating and collecting more.</li> </ul> </p> <subsection name="Sample Image Sources"> <p> - This list is hardly comprehensive, but it is a good starting point; I'll elaborate when I get the chance. + This list is hardly comprehensive, but it is a good starting point. <a href=""></a> <ul> <li>Phil Harvey's large collection Modified: commons/proper/imaging/trunk/src/site/xdoc/whyimaging.xml URL: http://svn.apache.org/viewvc/commons/proper/imaging/trunk/src/site/xdoc/whyimaging.xml?rev=1537378&r1=1537377&r2=1537378&view=diff ============================================================================== --- commons/proper/imaging/trunk/src/site/xdoc/whyimaging.xml (original) +++ commons/proper/imaging/trunk/src/site/xdoc/whyimaging.xml Thu Oct 31 05:07:43 2013 @@ -55,6 +55,12 @@ limitations under the License. </p> <p> + It can read from and write to files, byte arrays, or any InputStream/OutputStream. Reading InputStreams + only reads data it needs, and caches what has been read, so it's efficient on I/O, and fast on + slow storage and networked files. +</p> + +<p> It supports reading and writing a variety of metadata in a structured way, including EXIF metadata. </p> @@ -83,10 +89,6 @@ limitations under the License. </p> <p> - It is network-friendly. Commons Imaging will only read the data it needs, and caches what is read so that it isn't too heavy on the network. -</p> - -<p> The ColorConversions class offers methods to convert between the following color spaces: CIE-L*CH°, CIE-L*ab, CIE-L*uv, CMY, CMYK, HSL, HSV, Hunter-Lab, RGB, XYZ and Yxy (algorithms courtesy of EasyRGB's). see: <a href="http://www.easyrgb.com/">http://www.easyrgb.com/</a>