Format is part of the data contract
A screenshot service may feed a review UI, archive, document system, diff engine, CMS, or parser. Each consumer has different expectations. Record the chosen format in the job specification and explain why it is suitable.
Avoid converting between formats repeatedly without preserving the original artifact and provenance. Each conversion can change pixels, metadata, or document behavior.
Image formats
PNG keeps raster data lossless and suits sharp UI evidence. JPEG is lossy and can suit photographic previews. WebP is a modern web-oriented format that requires compatibility through the entire processing chain. None of these choices defines when the page is ready.
Test small text, gradients, photography, transparency expectations, and final display size on representative routes.
Document and rendered-DOM outputs
PDF is appropriate when the consumer needs a document rather than an image. Validate page breaks, print styles, fonts, and downstream document handling. Rendered HTML is data: parse it safely and preserve the context that produced it.
A returned link or structured response is not complete success until the application validates expected fields and imports the artifact when stable ownership is required.
Use the individual PNG, JPEG, WebP, and HTML guides for format-specific implementation decisions.