How to stretch an image over the entire page?

I would like to fill a page completely with an image, borderless if possible. It should not be a background image. And no header or footer should be displayed. But the page should be included in the numbering.

I have achieved the extension of the image into the margin with pad(). But I’m not sure if this is the right solution.

How can I now suppress the header and footer on this page only?

#pagebreak()

#pad(
  x: -72pt,
  y: -82pt,
  image("image.jpeg", width: 100%),
)

#pagebreak()

You can create a new page with zero margin and no header or footer.

#page(margin: 0pt, image(width: 100%, height: 100%, "image.png"))