| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 | README for the Imagecache Actions Drupal module-----------------------------------------------Project page: http://drupal.org/project/imagecache_actionsCurrent and past maintainers for Imagecache Actions:- dman (http://drupal.org/user/33240)- sidneyshan (http://drupal.org/user/652426)- fietserwin (http://drupal.org/user/750928)Release notes for 7.x-1.0-------------------------- If you use custom actions, run update.php.- If you use effects that use files (mask, overlays, underlays, text fonts),  check the way they are specified. From 7.x-1.0 on, you have to specfiy the  location using one of the schemes private://, public://, module:// or  temporary://. If no scheme is specified, the file is searched for as is, thus  relative to the current directory or as an absolute path.- Effects that use the transparency layer (e.g. mask, rounded corners) do not  automatically convert to PNG anymore. Use the "Change file format" for that.- There's no upgrade from D6. You will have to recreate your styles manually.Warning:  Ongoing development in the area of e.g. making the effects more consistent,  adding and/or removing parameters or redefining their meaning, might cause  forward incompatibilities with future versions. Thus, we cannot and do not  guarantee backwards compatibility or automatic upgrade paths for future  versions.Introduction------------The Imagecache Actions module provides a suite of additional image effects thatcan be added to image styles. Image styles let you create derivations of imagesby applying (a series of) effect(s) to it. Think of resizing, desaturating,masking, etc.The additional effects that Imagecache Actions provides include:- Watermark: place a image with transparency anywhere over a source picture.- Overlay: add photo-corners etc to the image- Text overlay: add e.g. a copyright notice to your image.- Color-shifting: colorize images.- Brighten/Darken.- Alpha blending: use a grayscale image to define the transparency layer of an  image.- Canvas manipulation: resize the canvas and add a backgroundcolor or image.- File Format switcher: if you need tranparency in JPGs, make them PNG. If your  PNG thumbnails are 30K each, save them as JPGs.- Rounded corners.- TODO: complete list, check short descrptionsThese effects are grouped in submodules. Just enable the ones you want to use.TODO: list submodules and their sets of effects.Imagecache Actions supports both the GD toolkit from Drupal core and theImagemagick toolkit. However, please note that Imagemagick support is not yetcomplete. Please file an issue if you encounter problems in using Imagemagick.What is imagecache_action not?------------------------------Imagecache Actions does not provide a new UI or new menu items. It hooks intothe already existing image styles system (from Drupal core). Seehttp://drupal.org/documentation/modules/image for more information about workingwith images.A note about the name of this module------------------------------------Image styles are part of Drupal 7 core and are the successor of the Drupal 6imagecache module. In Drupal 6 image styles were called (imagecache) presets andthe separate effects that made up a style were called (imagecache) actions. Inporting to D7, that name has not been changed (yet).Augmenting the Drupal core image module---------------------------------------This module might also provide additional features to the Drupal core imagemodule. Currently no such features are implemented, but they might be in thefuture, think e.g. of adding a "copy image style" feature. This allows to testD8 image module features in real life.Solving errors in the core image handling:- [#1554074]: scale does not work with imagemagick when dimensions are unknown?Which toolkit to use?---------------------Personally, I (fieterwin) prefer the imagemagick toolkit:- It is better in anti-aliasing. Try to rotate an image using both toolkits and  you will see what I mean.- It does not execute in the PHP memory space, so is not restricted by the  memory_limit PHP setting.- The GD toolkit will, at least on my Windows configuration, keep the font file  open after a text operation, so you cannot delete, move or rename it anymore.On the other hand: the GD toolkit is always available (in the correct version),whereas imagemagick is not always present on shared hosting or may be present inan antique version that might give problems.Please also note that effects may give different results depending on thetoolkit used.Dependencies------------- Drupal 7.x- Image module from Drupal coreAt least 1 of the available image toolkits:- GD toolkit from Drupal core- Imagemagick toolkit: http://drupal.org/project/imagemagickInstalling----------As usual.Usage-----After enabling the module:- Assure that the Image module from core is enabled.- Configure your toolkit and its settings at admin/config/media/image-toolkit.- Define image styles at admin/config/media/image-styles and add 1 or more  effects as defined by this module- Use the image styles via e.g. the formatters of image fields.Upgrading from D6-----------------There's no upgrade path defined for sites upgrading from D6 to D7. This meansthat you will have to manually redefine your D6 imagecache presets as D7 imagestyles. Note that actually an upgrade path would have to be defined by theimageacache module, not this imagecache actions module. However, as there is noD7 version of imagecache that provides an upgrade, users may post an upgradefunction to the issue queue and we will incorporate it.Backwards compatibility-----------------------Future releases will not be guaranteed to be backwards compatible. ImplementingImagemagick support e.g. might give unforeseen problems that can only be solvedby changing the details of what an effect does. furhtermore current behavior ofthe image mask effect is to also change the file format to png. This effectshould not do so, and thus will probably be changed in a future release. We willdocument these kind of incompatibilities in the changelog and the release notes.File form fields----------------A number of effects have a file form field where the editor can define a filename to use. This canbe e.g. for overlays, masks or fonts. The file name shouldbe defined using either:1 of the (enabled) scheme's:- public://- private:// Preferred for site specific masks, overlay's, etc, that do not need    to be shared publicly.- module://{module_name}/{resource-name} Introduced by the imagecache_actions    module and preferred for module provided resources, like the button overlay    of the Video Embed Field Overlay module    (http://drupal.org/project/video_embed_field_overlay).- temporary:// Unlikely to be useful, but supported anyway as all schemes are    supported.or a relative (to the current directory, probably Drupal root) or absolute path.Support-------Via the issue queue of this project at Drupal.org.Known problems--------------These are better documented in the issue queue, but might be listed here (aswell).- Underlay does not work in imagemagick if the dimensions of both images are not  equal. As a workaround first add a canvas effect with a fully transparent  background.- Underlay/overlay: keywords in the x and y offset fields do not work.- Underlay does still display a message about Iamgemagick not being supported.- Brightness values outside the -250 .. 250 range are accepted.- Check colorfields that allow a transparency component or allow to be empty to  specify fully tranparent.
 |