Development build 586e1bd4
Typst文档简体中文版v0.15.1 + dev 586e1bd4

image元素
Question mark
自始可用Go to source

A raster or vector graphic.

You can wrap the image in a figure to give it a number and caption.

Like most elements, images are block-level by default and thus do not integrate themselves into adjacent paragraphs. To force an image to become inline, put it into a box.

Example

#figure( image("molecular.jpg", width: 80%), caption: [ A step in the molecular testing pipeline of our lab. ], )

Clipping

You can wrap an image in a block or box1 with negative inset and clip: true to clip it. Note that the clipped parts are only visually hidden. The full image data is still embedded in the output (except when exporting to PNG). This approach is thus not suitable for redacting parts of an image.

#let lynx = image("lynx.jpg", height: 150pt, fit: "cover") #grid( columns: 2, column-gutter: 1fr, // The full image on the left. lynx, // Two cropped parts on the right: One cropped by 80pt // from the bottom and one cropped by 75pt from the top. stack( spacing: 5pt, block(lynx, clip: true, inset: (bottom: -80pt)), block(lynx, clip: true, inset: (top: -75pt)), ) )
  1. 1A box should only be used if the image shall be displayed inline as part of a paragraph. Otherwise, a block is preferable.

参数
Question mark

source
str or path or bytes
必需参数
Question mark
位置参数
Question mark

A path to an image file or raw bytes making up an image in one of the supported formats.

Bytes can be used to specify raw pixel data in a row-major, left-to-right, top-to-bottom format.

Expand展开示例
#let original = read("diagram.svg") #let changed = original.replace( "#2B80FF", // blue green.to-hex(), ) #image(bytes(original)) #image(bytes(changed))

format
auto or str or dictionary
可用set规则
Question mark
默认值:auto

The image’s format.

By default, the format is detected automatically. Typically, you thus only need to specify this when providing raw bytes as the source (even then, Typst will try to figure out the format automatically, but that’s not always possible).

Supported formats are "png", "jpg", "gif", "svg", "pdf", "webp" as well as raw pixel data.

Note that several restrictions apply when using PDF files as images:

When providing raw pixel data as the source, you must specify a dictionary with the following keys as the format:

The pixel width multiplied by the height multiplied by the channel count for the specified encoding must then match the source data.

Expand展开示例
#image( read( "tetrahedron.svg", encoding: none, ), format: "svg", width: 2cm, ) #image( bytes(range(16).map(x => x * 16)), format: ( encoding: "luma8", width: 4, height: 4, ), width: 2cm, )
VariantDetails
"png"Raster format for illustrations and transparent graphics.
"jpg"Lossy raster format suitable for photos.
"gif"Raster format that is typically used for short animated clips. Typst can load GIFs, but they will become static.
"webp"Raster format that supports both lossy and lossless compression.
"svg"The vector graphics format of the web.
"pdf"High-fidelity document and graphics format, with focus on exact reproduction in print.

width
auto or relative
可用set规则
Question mark
默认值:auto

The width of the image.

height
auto or relative or fraction
可用set规则
Question mark
默认值:auto

The height of the image.

alt
none or str
可用set规则
Question mark
默认值:none

An alternative description of the image.

This text is used by Assistive Technology (AT) like screen readers to describe the image to users with visual impairments.

When the image is wrapped in a figure, use this parameter rather than the figure’s alt parameter to describe the image. The only exception to this rule is when the image and the other contents in the figure form a single semantic unit. In this case, use the figure’s alt parameter to describe the entire composition and do not use this parameter.

You can learn how to write good alternative descriptions in the Accessibility Guide.

page
int
可用set规则
Question mark
默认值:1

The page number that should be embedded as an image. This attribute only has an effect for PDF files.

fit
str
可用set规则
Question mark
默认值:"cover"

How the image should adjust itself to a given area (the area is defined by the width and height fields). Note that fit doesn’t visually change anything if the area’s aspect ratio is the same as the image’s one.

Expand展开示例
#set page(width: 300pt, height: 50pt, margin: 10pt) #image("tiger.jpg", width: 100%, fit: "cover") #image("tiger.jpg", width: 100%, fit: "contain") #image("tiger.jpg", width: 100%, fit: "stretch")
VariantDetails
"cover"The image should completely cover the area (preserves aspect ratio by cropping the image only horizontally or vertically). This is the default.
"contain"The image should be fully contained in the area (preserves aspect ratio; doesn’t crop the image; one dimension can be narrower than specified).
"stretch"The image should be stretched so that it exactly fills the area, even if this means that the image will be distorted (doesn’t preserve aspect ratio and doesn’t crop the image).

scaling
auto or str
可用set规则
Question mark
默认值:auto

A hint to viewers how they should scale the image.

When set to auto, the default is left up to the viewer. For PNG export, Typst will default to smooth scaling, like most PDF and SVG viewers.

Note: The exact look may differ across PDF viewers.

VariantDetails
"smooth"Scale with a smoothing algorithm such as bilinear interpolation.
"pixelated"Scale with nearest neighbor or a similar algorithm to preserve the pixelated look of the image.

icc
auto or str or path or bytes
可用set规则
Question mark
默认值:auto

An ICC profile for the image.

ICC profiles define how to interpret the colors in an image. When set to auto, Typst will try to extract an ICC profile from the image.