README.txt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. README
  2. ------
  3. README for the Image effect text module.
  4. Author Erwin Derksen (fietserwin: https://drupal.org/user/750928)
  5. Dependencies
  6. ------------
  7. Hard dependencies:
  8. - Imagecache actions.
  9. - Image (Drupal core).
  10. Soft dependencies/recommended modules:
  11. - Imagemagick (preferred toolkit, https://drupal.org/project/imagemagick).
  12. - PHP filter (Drupal core, if yuo want to use PHP to create the text to render).
  13. - System stream wrapper (https://drupal.org/project/system_stream_wrapper)
  14. - Remote stream wrapper (https://drupal.org/project/remote_stream_wrapper)
  15. The latter 2 provide additional stream wrappers. Especially the system stream
  16. wrapper is very handy as it provides, among others, a module:// and theme://
  17. wrapper.
  18. Toolkit
  19. -------
  20. Personally, I prefer the imagemagick toolkit:
  21. - It is better in anti-aliasing, try to rotate an image using both toolkits and
  22. you will see what I mean.
  23. - It does not execute in the PHP memory space, so is not restricted by the
  24. memory_limit PHP setting.
  25. - The GD toolkit will, at least on my Windows configuration, keep the font file
  26. open after a text operation, so you cannot delete, move or rename it anymore.
  27. - This module does a better job with Imagemagick (see below).
  28. Installing
  29. ----------
  30. As usual. After enabling the module you can add texts to images. This image
  31. effect works with both the GD and imagemagick toolkit, though results differ
  32. depending on the toolkit you use.
  33. More information about the effect data options
  34. ----------------------------------------------
  35. Font
  36. ----
  37. This module comes with some free fonts so you can easily test this effect.
  38. Please read their respective licences.
  39. For real use, you normally want to use your own font as dictated by the website
  40. design. The font types supported depend on the toolkit in use, but at least ttf
  41. files will always work. This option accepts either:
  42. - 1 of the (enabled) scheme's:
  43. * public://
  44. * private:// Preferred for site specific masks, overlays, etc, that do not
  45. need to be shared publicly.
  46. * temporary:// Unlikely to be useful, but supported anyway as all schemes are
  47. supported.
  48. * module:// Introduced by the system stream wrapper module and preferred for
  49. module provided resources.
  50. * theme:// idem.
  51. * profile:// idem.
  52. * library:// idem.
  53. - A relative path (relative to the current directory, probably Drupal root).
  54. - An absolute path.
  55. - A system or toolkit font specification. E.g. on my Windows system 'arial.ttf'
  56. worked with both GD and Imagemagick. A warning will be issued but that may be
  57. ignored when it works as expected.
  58. Text position
  59. -------------
  60. The text position defines the point in the image where you want to place (align)
  61. your text. It starts at the top left corner of the image with position 0,0 and
  62. the positive directions are to the right and down.
  63. The definition of the vertical position differs per toolkit. For GD it is the
  64. position of the font baseline, while for Imagemagick it is the bottom of the
  65. bounding box, i.e the descender or beard line in typography terminology.
  66. Text alignment
  67. --------------
  68. You can align your text with regard to the text position. Possible horizontal
  69. alignments are left (default), center and right. Vertical alignments are top,
  70. center and bottom (default).
  71. Note: Given
  72. - the way that GD uses the vertical text position (as baseline),
  73. - and the way this module implements (vertical) alignment (translating the
  74. (vertical) position using the calculated bounding box),
  75. vertical alignment with the GD toolkit is a bit off. You will have to compensate
  76. for this yourself.
  77. Rotation
  78. --------
  79. The text can be rotated before being overlaid on the image. The value is in
  80. degrees. Positive values are rotated clockwise, So 90 degrees is straight down.
  81. negative values counter clockwise.
  82. In Imagemagick the text is rotated around the text position. Thus centered text
  83. is rotated around its own center. GD, on the other hand, always rotates around
  84. the left bottom (baseline) position, regardless the text alignment. So using
  85. rotation with a non default alignment (left bottom) will give surprising
  86. results.
  87. Text source
  88. -----------
  89. The text to place on the image may come from different sources:
  90. - Text (with token replacement): the text to place on the image has to be
  91. entered on the image effect form. Use this e.g. for a copyright notice.
  92. notes:
  93. * Token replacement: you can use all global tokens, the file tokens, and
  94. tokens from entities referring to the image via an image field. Example: if
  95. you know that the image style is only used for article nodes, you can use
  96. [node:field-image:alt] to get the alt text of the image. Note: this specific
  97. example requires the entity_token module.
  98. * New lines: you can add a new line by adding \n to your text. To get a
  99. literal \n, use \\n.
  100. - PHP: the text to place on the image comes from a piece of PHP code that should
  101. return the text to place on the image. Only users with the 'use PHP for
  102. settings' permission are allowed to use this source. This permission and the
  103. evaluation of the PHP code come from the PHP filter module which is part of
  104. Drupal core and thus needs to be enabled, also during image generation.
  105. To add new lines to your text add them literally to the string you return,
  106. normally by using "\n" in your PHP code.
  107. - Image Alt or Title: to alleviate the need to enable the PHP filter module, 2
  108. commonly used sources for dynamic texts are directly available without any
  109. coding: the alt and title properties of an image field linked to the image at
  110. hand.
  111. Notes:
  112. - When using token replacement or the image alt or title, multiple image fields,
  113. possibly in different languages, may be referring to the image that is being
  114. processed. This module will take the first image field it finds to extract the
  115. alt and title. If the field in itself is multi-lingual, thus not a synced
  116. field, the current language will be taken, which is the language of the user
  117. that happens to request this image derivative first.
  118. - This module will not automatically break text based on available space.
  119. - Due to the way that GD text box positioning works it is quite difficult to
  120. correctly position multiple lines of text with GD. If you have a working
  121. solution please post a patch. (Probably involves exploding the text in
  122. separate lines and then positioning each line separately.)
  123. PHP snippets to determine the text
  124. ----------------------------------
  125. Given the correct permission, you can write your own PHP snippet to compute the
  126. text to display. To ease this task, this module makes some information regarding
  127. the image being processed available in a number of variables: $image,
  128. $image_context, $image_style, and $image_effect_id. These variables are readily
  129. available in your snippet.
  130. $image is an object containing the following properties:
  131. - source: string, the source of the image, e.g. public://photo.jpg
  132. - info: array, example data:
  133. - width (int) 180
  134. - height (int) 180
  135. - extension (string) png
  136. - mime_type (string) image/png
  137. - file_size (int) 4417
  138. - toolkit: string, imagemagick or GD
  139. $image_context is an associative array containing:
  140. - effect_data: array, the data of this image effect, example data for the text
  141. effect:
  142. - size (string) 12
  143. - xpos (string) center
  144. - ypos (string) center
  145. - halign (string) left
  146. - valign (string) bottom
  147. - RGB Array [1]
  148. - HEX (string) 000000
  149. - alpha (string) 100
  150. - angle (string) 0
  151. - fontfile (string:46) module://image_effects_text/Komika_display.ttf
  152. - text_source (string) text
  153. - text (string) Hello World!
  154. - php (string) return 'Hello World!'
  155. - managed_file: object|null. A managed file object containing these properties:
  156. - fid (string) 2
  157. - uid (string) 1
  158. - filename (string) photo.jpg
  159. - uri (string) public://photo.jpg
  160. - filemime (string) image/jpeg
  161. - filesize (string) 445751
  162. - status (string) 1
  163. - timestamp (string) 1327525851
  164. - metatags Array [0]
  165. - rdf_mapping Array [0]
  166. - referring_entities: array|null. A nested array with (fully loaded) entities
  167. referring to the current image. The 1st level of entries is keyed by the field
  168. name, the 2nd by entity type, and the 3rd by entity id. Example data:
  169. - field_photo Array [1]
  170. - node Array [1]
  171. - 12 Object of: stdClass
  172. - nid (string) 12
  173. - vid (string) 12
  174. - type (string) page
  175. - author ...
  176. - timestamp ...
  177. - ...
  178. - entity: object|null, the 1st entity in referring_entities. This is for easy
  179. access to the referring entity if it may be assumed that only 1 entity is
  180. referring to the current image.
  181. - image_field: array|null, the 1st image field in entity that is referring to
  182. the current image. This is for easy access to the image field data if it may
  183. be assumed that only 1 image field is referring to the current image. Example
  184. data:
  185. - fid (int) 2
  186. - alt (string) ...
  187. - title (string) ...
  188. - ...
  189. $image_style is an associative array containing the current image style being
  190. processed. It ocntians a.o.:
  191. - isid: the unique image style id
  192. - name: machine name.
  193. - label: Human readable name.
  194. - effects: An array with the effects of this image style, ordered in the way
  195. they should be applied.
  196. $image_effect_id is an int containng the unique id of the current image effect
  197. being applied. This can be used to look the current image effect up in the
  198. $image_style array.
  199. Of course there are many other possible useful globals. Think of:
  200. - base_url
  201. - base_path
  202. - base_root
  203. - is_https
  204. - user
  205. - language
  206. and of course $_SERVER and $_GET.
  207. Using these information you can access entity data as follows:
  208. Specific case (1 entity, of known entity_type, referring to the image):
  209. <?php
  210. if (!$image_context['entity']) {
  211. return 'No referring entity';
  212. }
  213. $entity_type = 'node';
  214. $field_name = 'my_field';
  215. $entity = $image_context['entity'];
  216. $field = field_get_items($entity_type, $entity, $field_name);
  217. if ($field) {
  218. return isset($field[0]['value']) ? $field[0]['value'] : 'No field value';
  219. }
  220. ?>
  221. Or the more general case (not knowing the referring type, or multiple entities
  222. that may be referring to the image):
  223. <?php
  224. if (!$image_context['referring_entities']) {
  225. return 'No referring entities';
  226. }
  227. $referring_entities = $image_context['referring_entities'];
  228. foreach ($referring_entities as $field_name => $field_referring_entities) {
  229. foreach ($field_referring_entities as $entity_type => $entities) {
  230. foreach ($entities as $entity_id => $entity) {
  231. $field = field_get_items($entity_type, $entity, $field_name);
  232. // ...
  233. }
  234. }
  235. }
  236. ?>
  237. TODO
  238. ----
  239. - Vertical alignment: add baseline as vertical alignment and make both toolkits
  240. behave the same for any given vertical alignment.
  241. - Rotation and alignment. Imagemagick seems to be more correct. Can GD made to
  242. do the same?
  243. - Language and alt/title: what if the first user to pass by and that generates
  244. the image is in a language that has no alt/title?
  245. - Check for existence of imagettftext() and fail properly.
  246. To quote http://www.imagemagick.org/Usage/text/#draw:
  247. As of IM version 6.2.4, the "-draw text" operation no longer understands the use
  248. of '\n' as meaning newline, or the use of percent '%' image information escapes.
  249. (See Drawing a Percent Bug). These abilities, and problems, however remain
  250. available in the new IM v6 operator "-annotate". See the Annotate Text Drawing
  251. Operator below.