Author: stunami
Date: 2010-04-13 23:11:42 +0200 (Tue, 13 Apr 2010)
New Revision: 29129
Modified:
plugins/sfImageTransformPlugin/trunk/README
plugins/sfImageTransformPlugin/trunk/package.xml.tmpl
Log:
Updating README and package template
Modified: plugins/sfImageTransformPlugin/trunk/README
===================================================================
--- plugins/sfImageTransformPlugin/trunk/README 2010-04-13 20:17:31 UTC (rev
29128)
+++ plugins/sfImageTransformPlugin/trunk/README 2010-04-13 21:11:42 UTC (rev
29129)
@@ -24,16 +24,23 @@
To install the plugin for a symfony project, the usual process is to use the
symfony command line:
-symfony 1.1 and 1.2
-
symfony plugin:install sfImageTransformPlugin
-symfony 1.0
+for symfony 1.0
symfony plugin-install
http://plugins.symfony-project.com/sfImageTransformPlugin
Alternatively, if you don't have PEAR installed, you can download the latest
package attached to this plugin's wiki page and extract it under your project's
plugins/ directory.
+Activate the plugin in your ProjectConfiguration.class.php.
+
+ class ProjectConfiguration extends sfProjectConfiguration
+ {
+ public function setup()
+ {
+ $this->enablePlugins(..., 'sfImageTransformPlugin', ...);
+
+
Clear the cache to enable the autoloading to find the new classes:
php symfony cc
@@ -99,7 +106,7 @@
$img = $scale->execute($img);
- $img->saveAs('image2.gif', 'image/gif');
+ $img->saveAs('image2.gif');
Note: If you install one of the supported MIME detection libraries you do not
have to pass in the image's MIME type. See the section "Enabling MIME
detection" for details.
@@ -114,6 +121,9 @@
Generic
+ * border
+ * callback
+ * resize
* thumbnail
GD
@@ -129,7 +139,7 @@
* negate, noise
* opacity, overlay
* pixelBlur, pixelize
- * rectangle, resize, rotate, roundedCorners
+ * rectangle, rotate, roundedCorners
* scale, scatter, selectiveBlur, sketchy, smooth
* text, transparency
@@ -144,7 +154,7 @@
* mirror
* opacity, overlay
* prettyThumbnail
- * rectangle, resize, rotate
+ * rectangle, rotate
* scale
* text, trim
Modified: plugins/sfImageTransformPlugin/trunk/package.xml.tmpl
===================================================================
--- plugins/sfImageTransformPlugin/trunk/package.xml.tmpl 2010-04-13
20:17:31 UTC (rev 29128)
+++ plugins/sfImageTransformPlugin/trunk/package.xml.tmpl 2010-04-13
21:11:42 UTC (rev 29129)
@@ -45,6 +45,26 @@
<changelog>
<release>
<version>
+ <release>1.4.0</release>
+ <api>1.0.1</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <license uri="http://www.symfony-project.com/license">MIT
license</license>
+ <license>MIT</license>
+ <date>2010-02-21</date>
+ <notes>
+ * Adding support for floodFillPaintImage as this has replaced the
depricated colorFloodfillImage
+ * Fix to property typo
+ * Improvements to computeTargetSize method
+ * Adding new transforms sfImageAlphaMaskGD, sfImageRoundedCornersGD
+ * Fixed bug with PHP5.3 and Fileinfo
+ * Updated docs
+ </notes>
+ </release>
+ <version>
<release>1.3.1</release>
<api>1.0.1</api>
</version>
@@ -57,6 +77,23 @@
<date>2009-12-24</date>
<notes>
* Fixing package
+ * Fix to GD resize simple transform
+ </notes>
+ </release>
+ <release>
+ <version>
+ <release>1.3.1</release>
+ <api>1.0.1</api>
+ </version>
+ <stability>
+ <release>stable</release>
+ <api>stable</api>
+ </stability>
+ <license uri="http://www.symfony-project.com/license">MIT
license</license>
+ <license>MIT</license>
+ <date>2009-12-24</date>
+ <notes>
+ * Fixing package
* Fixing alpha transpareny bug in GD simple resize transform
</notes>
</release>
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.