~zorba-coders/zorba/bug-1210410-graphviz

« back to all changes in this revision

Viewing changes to src/com/zorba-xquery/www/modules/image/animation.xq

  • Committer: spungi
  • Date: 2011-07-21 20:51:35 UTC
  • Revision ID: svn-v4:8046edc3-af21-0410-8661-ec7318497eea:modules/image/trunk:11335
XQDoc changes:
- small cleanup. taken out "zorba-" from the namespaces prefix of csv.
- json module: all the errors described in the documentation appear in the right namespace 
- For every module that is NOT in the core we have a sentence saying so.
- For each such function with schema-valid options that uses XML schemas for options , from the following modules:
   the 3 data convertors (html, csv, json), image, xqdoc, imap, smtp
  there is a sentence added "the $option arguments have to be valid elements according to the schema BLAH".
- if a module has has multiple authors, they are collected on the same line with commas

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 : @param $delay specifies how long a given image shows in the animated GIF in 1/100 of a second.
25
25
 : @param $iterations specifies how many times the animation loop should be executed (0 for endless loop).
26
26
 : @return A new image that is an animated GIF composed out of the passed images.
27
 
 : @error IM001 If any of the passed xs:base64Binary is not a valid image.
 
27
 : @error $error:IM001 If any of the passed xs:base64Binary is not a valid image.
28
28
 : @example test/Queries/image/animation_create.xq
29
29
 :)
30
30
declare function anim:create-animated-gif($images as xs:base64Binary+, $delay as xs:unsignedInt, $iterations as xs:unsignedInt) as xs:base64Binary external; 
39
39
 : @param $iterations specifies how many times the animation loop should be executed (0 for endless loop).
40
40
 : @param $number-of-added-frames specifies how many frames shall be added to the passed frames for the morph effect.
41
41
 : @return A new image that is an animated GIF composed out of the passed images.
42
 
 : @error IM001 If any of the passed xs:base64Binary is not a valid image. 
 
42
 : @error $error:IM001 If any of the passed xs:base64Binary is not a valid image. 
43
43
 : @example test/Queries/image/animation_create_morphed.xq
44
44
 :)
45
45
declare function anim:create-morphed-gif($images as xs:base64Binary+, $delay as xs:unsignedInt, $iterations as xs:unsignedInt, $number-of-added-frames as xs:unsignedInt) as xs:base64Binary external;