Author: Tobias Schlitt Date: 2006-01-29 12:15:37 +0100 (Sun, 29 Jan 2006) New Revision: 2078
Log: - Added docs about handlers, since they are private. # Had to use HTML for the list, since phpDocumentor does not recognize nested lists. Modified: packages/ImageConversion/trunk/src/converter.php Modified: packages/ImageConversion/trunk/src/converter.php =================================================================== --- packages/ImageConversion/trunk/src/converter.php 2006-01-29 10:25:49 UTC (rev 2077) +++ packages/ImageConversion/trunk/src/converter.php 2006-01-29 11:15:37 UTC (rev 2078) @@ -15,6 +15,37 @@ * singleton pattern to have just 1 converter in place over the whole * application. * + * As backends 2 handler classes are available, of which at least 1 has to be + * configured during the instantiation of the ezcImageConverter. Both handlers + * utilize different image manipulation tools and are capable of different + * sets of filters: + * + * <ul> + * <li>ezcImageGdHandler + * <ul> + * <li>Uses PHP's GD extension for image manipulation.</li> + * <li>Implements the following filter interfaces + * <ul> + * <li>[EMAIL PROTECTED] ezcImageGeometryFilters}</li> + * <li>[EMAIL PROTECTED] ezcImageColorspaceFilters}</li> + * </ul> + * </li> + * </ul> + * </li> + * <li>ezcImageImagemagickHandler + * <ul> + * <li>Uses the external "convert" program, contained in ImageMagick</li> + * <li>Implements the following interfaces: + * <ul> + * <li>[EMAIL PROTECTED] ezcImageGeometryFilters}</li> + * <li>[EMAIL PROTECTED] ezcImageColorspaceFilters}</li> + * <li>[EMAIL PROTECTED] ezcImageEffectFilters}</li> + * </ul> + * </li> + * </ul> + * </li> + * </ul> + * * A general example, how to use ezcImageConversion to convert images: * <code> * require_once "Base/trunk/src/base.php"; -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
