Skip to content

Commit 9f4036b

Browse files
committed
[feat] lua - add lua-types to pandoc.image object
1 parent b42543e commit 9f4036b

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---@meta
2+
3+
---@module 'pandoc.image'
4+
pandoc.image = {}
5+
6+
--[[
7+
Returns a table containing the size and resolution of an image; throws an error if the given string is not an image, or if the size of the image cannot be determined.
8+
9+
The resulting table has four entries: width, height, dpi_horz, and dpi_vert.
10+
11+
The opts parameter, when given, should be either a WriterOptions object such as PANDOC_WRITER_OPTIONS, or a table with a dpi entry. It affects the calculation for vector image formats such as SVG.
12+
]]
13+
---@param imagedata string image data (such as returned by `pandoc.mediabag.fetch`)
14+
---@return table
15+
function pandoc.image.size(imagedata) end
16+
17+
--[[
18+
Returns the format of an image as a lowercase string.
19+
20+
Formats recognized by pandoc include `png`, `gif`, `tiff`, `jpeg`, `pdf`, `svg`, `eps`, and` `emf`.
21+
22+
If the format is not recognized, the function returns nil.
23+
]]
24+
---@param imagedata string image data (such as returned by `pandoc.mediabag.fetch`)
25+
---@return string|nil
26+
function pandoc.image.format(imagedata) end
27+

0 commit comments

Comments
 (0)