Lines Matching full:image
4 scalable figure and image handling
7 Sphinx extension which implements scalable image handling.
12 The build for image formats depend on image's source format and output's
13 destination format. This extension implement methods to simplify image
19 * ``.. kernel-image``: for image handling / a ``.. image::`` replacement
129 # image handling
130 app.add_directive("kernel-image", KernelImage)
240 """Convert a image node for the builder.
242 Different builder prefer different image formats, e.g. *latex* builder
245 This function handles output image formats in dependence of source the
246 format (of the image) and the translator's output format.
427 # image handling
433 Handles the ``image`` child-node with the ``convert_image(...)``.
438 class kernel_image(nodes.image):
439 """Node for ``kernel-image`` directive."""
442 class KernelImage(images.Image):
445 Earns everything from ``.. image::`` directive, except *remote URI* and
446 *glob* pattern. The KernelImage wraps a image node into a
456 result = images.Image.run(self)
460 # wrap image node into a kernel_image node / see visitors
470 Handles the ``image`` child-node with the ``convert_image(...)``.
510 ``image`` node, pointing to the saved markup file. Afterwards, handle the
511 image child-node with the ``convert_image(...)``.
541 img_node = nodes.image(node.rawsource, **node.attributes)
559 value, a figure node with the *caption* is inserted. If not, a image node is