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
133 # image handling
134 app.add_directive("kernel-image", KernelImage)
205 """Convert a image node for the builder.
207 Different builder prefer different image formats, e.g. *latex* builder
210 This function handles output image formats in dependence of source the
211 format (of the image) and the translator's output format.
335 # image handling
341 Handles the ``image`` child-node with the ``convert_image(...)``.
346 class kernel_image(nodes.image):
347 """Node for ``kernel-image`` directive."""
350 class KernelImage(images.Image):
353 Earns everything from ``.. image::`` directive, except *remote URI* and
354 *glob* pattern. The KernelImage wraps a image node into a
364 result = images.Image.run(self)
368 # wrap image node into a kernel_image node / see visitors
378 Handles the ``image`` child-node with the ``convert_image(...)``.
418 ``image`` node, pointing to the saved markup file. Afterwards, handle the
419 image child-node with the ``convert_image(...)``.
449 img_node = nodes.image(node.rawsource, **node.attributes)
467 value, a figure node with the *caption* is inserted. If not, a image node is