Adjust Image Sizes
Since images often need to be sized according to the medium, there are several ways to specify an image size.
In most output formats, the specified width is obeyed unless the image would exceed the content width or height, in which case it scaled to fit while maintaining the original aspect ratio (i.e., responsive scaling).
width and height attributes
The primary way to specify the size of an image is to define the width
and height
attributes on the image macro.
Since these two attributes are so common, they’re mapped as the second and third (unnamed) positional attributes on both image macros.
image::flower.jpg[Flower,640,480]
That’s equivalent to the long-hand version:
image::flower.jpg[alt=Flower,width=640,height=480]
The value of the width and height attributes should be an integer without a unit.
The px unit is implied.
Although the processor may allow it, you should never rely on a % value.
While the % unit was supported in older versions of HTML, it was removed starting in HTML 5.
If you need to specify a % value for PDF or DocBook output, use pdfwidth
or scaledwidth
, respectively.
To scale the image relative to the content area in HTML output, use a role.
While the values of width
and height
can be used to scale the image, these attributes are primarily intended to specify the intrinsic size of the image in CSS pixels.
The width
and height
attributes are mapped to attributes of the same name on the <img>
element in the HTML output.
These attributes are important because they provide a hint to the browser to tell it how much space to reserve for the image during layout to minimize page reflows.
The height
attribute should only be specified if the width
attribute is also specified, and it should respect the aspect ratio of the image.
pdfwidth attribute
AsciiDoc recognizes the following attributes to size images when converting to PDF using Asciidoctor PDF:
-
pdfwidth
- The preferred width of the image in the PDF when converting using Asciidoctor PDF.
The pdfwidth
attribute accepts the following units:
px |
Output device pixels (assumed to be 96 dpi) |
pt (or none) |
Points (1/72 of an inch) |
pc |
Picas (1/6 of an inch) |
cm |
Centimeters |
mm |
Millimeters |
in |
Inches |
% |
Percentage of the content width (area between margins) |
vw |
Percentage of the page width (edge to edge) |
iw |
Percentage of the intrinsic width of the image |
If pdfwidth
is not provided, Asciidoctor PDF also accepts scaledwidth
, or width
(no units, assumed to be pixels), in that order.
See image scaling in Asciidoctor PDF for more details.
scaledwidth attribute
AsciiDoc recognizes the following attributes to size images when converting to PDF using the DocBook toolchain:
-
scaledwidth
- The preferred width of the image when converting to PDF using the DocBook toolchain. (Mutually exclusive withscale
). -
scale
- Scales the original image size by this amount when converting to PDF using the DocBook toolchain. (Mutually exclusive withscaledwidth
).
scaledwidth
sizes images much like pdfwidth
, except it does not accept the vw unit.
The value of scaledwidth
when used with DocBook can have the following units:
px |
Output device pixels (assumed to be 72 dpi) |
pt |
Points (1/72 of an inch) |
pc |
Picas (1/6 of an inch) |
cm |
Centimeters |
mm |
Millimeters |
in |
Inches |
em |
Ems (current font size) |
% (or no units) |
Percentage of the content width (area between margins) |
DocBook also accepts the width
attribute if scaledwidth
is not provided.
Image sizing recap
Backend | Absolute size | Relative to original size | Relative to content width | Relative to page width |
---|---|---|---|---|
html |
width=120 |
Not possible |
role=half-width |
role=half-view-width |
pdfwidth=100mm |
Not possible |
pdfwidth=80% |
pdfwidth=50vw |
|
docbook, pdf |
scaledwidth=100mm |
scale=75 |
scaledwidth=50% |
Not possible |
Here’s an example of how you might bring these attributes together to control the size of an image in various output formats:
image::flower.jpg[Flower,640,480,pdfwidth=50%,scaledwidth=50%]
If the cascading behavior of the sizing attributes does not work for your use case, you might consider a document attribute to set the attribute that is suitable for the backend you are using. Consider the following example:
ifdef::backend-html5[]
:twoinches: width=144
// using a role requires adding a corresponding rule to the CSS
:full-width: role=full-width
:half-width: role=half-width
:half-size: role=half-size
:thumbnail: width=60
endif::[]
ifdef::backend-pdf[]
:twoinches: pdfwidth=2in
// NOTE use pdfwidth=100vw to make the image stretch edge to edge
:full-width: pdfwidth=100%
:half-width: pdfwidth=50%
// NOTE scale is not yet supported by the PDF converter
:half-size: pdfwidth=50%
:thumbnail: pdfwidth=20mm
endif::[]
ifdef::backend-docbook5[]
:twoinches: scaledwidth=2in
:full-width: scaledwidth=100%
:half-width: scaledwidth=50%
:half-size: scale=50
:thumbnail: scaledwidth=20mm
endif::[]
Then you can specify the image to be half the width of the content area using the following syntax:
image::image.jpg[{half-width}]
In addition to providing consistency across your document, this technique will help insulate you from future changes. For a more detailed example, see this thread on the discussion list.