diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2011-04-12 14:17:47 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2011-04-12 14:17:47 +0000 |
commit | 307453997ef030ec4dfa1e876feaf0b8b8125bab (patch) | |
tree | ab2054693ba95e9ac8f6e3478b4d0175d893329f /Master/texmf-dist/doc/luatex/base/fdata_img.lua | |
parent | d95b11a25d3d9e17cc4afb9c8713ef4037567527 (diff) |
check in luatex 0.66.0
git-svn-id: svn://tug.org/texlive/trunk@22059 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/luatex/base/fdata_img.lua')
-rw-r--r-- | Master/texmf-dist/doc/luatex/base/fdata_img.lua | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/luatex/base/fdata_img.lua b/Master/texmf-dist/doc/luatex/base/fdata_img.lua new file mode 100644 index 00000000000..03b8259ea96 --- /dev/null +++ b/Master/texmf-dist/doc/luatex/base/fdata_img.lua @@ -0,0 +1,156 @@ +-- $Id: fdata_img.lua 4106 2011-04-10 12:51:54Z hhenkel $ + +local fdata_img = { + ["functions"] = { + ["boxes"] = { + ["arguments"] = {}, + ["returnvalues"] = { + { + ["name"] = "boxes", + ["optional"] = false, + ["type"] = "table", + }, + }, + ["shortdesc"] = "Returns a list of supported image bounding box names.", + ["type"] = "function", + }, + ["copy"] = { + ["arguments"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["returnvalues"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["shortdesc"] = "Copy an image.", + ["type"] = "function", + }, + ["immediatewrite"] = { + ["arguments"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["returnvalues"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["shortdesc"] = "Write the image to the PDF file immediately.", + ["type"] = "function", + }, + ["keys"] = { + ["arguments"] = {}, + ["returnvalues"] = { + { + ["name"] = "keys", + ["optional"] = false, + ["type"] = "table", + }, + }, + ["shortdesc"] = "Returns a table with possible image table keys, including retrieved information.", + ["type"] = "function", + }, + ["new"] = { + ["arguments"] = { + { + ["name"] = "var", + ["optional"] = true, + ["type"] = "table", + }, + }, + ["returnvalues"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["shortdesc"] = "This function creates an \\quote {image} object. Allowed fields\ + in the table: \\aliteral{filename} (required), \\aliteral{width},\ + \\aliteral{depth}, \\aliteral{height}, \\aliteral{attr}, \\aliteral{page}, \\aliteral{pagebox}, \\aliteral{colorspace}).", + ["type"] = "function", + }, + ["node"] = { + ["arguments"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["returnvalues"] = { + { + ["name"] = "n", + ["optional"] = false, + ["type"] = "node", + }, + }, + ["shortdesc"] = "Returns the node associated with an image.", + ["type"] = "function", + }, + ["scan"] = { + ["arguments"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["returnvalues"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["shortdesc"] = "Processes an image file and stores the retrieved information in the image object.", + ["type"] = "function", + }, + ["types"] = { + ["arguments"] = {}, + ["returnvalues"] = { + { + ["name"] = "types", + ["optional"] = false, + ["type"] = "table", + }, + }, + ["shortdesc"] = "Returns a list of supported image types.", + ["type"] = "function", + }, + ["write"] = { + ["arguments"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["returnvalues"] = { + { + ["name"] = "var", + ["optional"] = false, + ["type"] = "image", + }, + }, + ["shortdesc"] = "Write the image to the PDF file.", + ["type"] = "function", + }, + }, + ["methods"] = { + }, +} + +return fdata_img |