-
Notifications
You must be signed in to change notification settings - Fork 300
Blog: Best practices for handling screenshots in your app #2714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
36fba30
5120c67
ea4bb1f
687893a
772d578
a4ea586
619e64d
e5f3659
9e7522e
4961949
2a73d53
0f25e69
98ecb2f
ff5ae05
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,279 @@ | ||||||
| --- | ||||||
| layout: post | ||||||
| title: Best practices for handling screenshots in your app | ||||||
| description: Learn how to efficiently capture, store, and serve webpage screenshots without wasting resources or slowing down your app. | ||||||
| date: 2026-01-30 | ||||||
| cover: /images/blog/screenshots-best-practices/cover.png | ||||||
| timeToRead: 5 | ||||||
| author: atharva | ||||||
| category: tutorial | ||||||
| featured: false | ||||||
| callToAction: true | ||||||
| --- | ||||||
|
|
||||||
| Screenshots are everywhere in modern applications. Link previews in chat apps, visual documentation in developer tools, thumbnail galleries in dashboards, and compliance archives in enterprise software. What seems like a simple feature, "show me what this page looks like", can quickly become a performance bottleneck and maintenance headache if not handled properly. | ||||||
|
|
||||||
| The naive approach of generating a screenshot every time it is needed works fine during development. But in production, with real traffic, that approach falls apart. API rate limits get hit, response times spike, users stare at loading spinners, and costs climb. | ||||||
|
|
||||||
| This guide covers practical patterns for handling screenshots efficiently. Whether you are building link previews, automated reports, or visual testing pipelines, these best practices will help you avoid common pitfalls and build a robust screenshot workflow. | ||||||
|
|
||||||
| # Stop regenerating the same screenshot | ||||||
|
|
||||||
| The most common mistake is treating screenshot generation as a real-time operation. Every time a user requests a preview, the app fires off a new screenshot request, waits for it to render, and serves the result. This works for a handful of requests but scales poorly. | ||||||
|
|
||||||
| The fix is simple: **store screenshots in persistent storage and serve them from there**. | ||||||
|
|
||||||
| Here is how this looks with Appwrite. Wrap the capture and store logic in a reusable function: | ||||||
|
|
||||||
| ```js | ||||||
| import { Client, Avatars, Storage, ID } from "appwrite"; | ||||||
|
|
||||||
| const client = new Client() | ||||||
| .setEndpoint('https://<REGION>.cloud.appwrite.io/v1') | ||||||
| .setProject('<PROJECT_ID>'); | ||||||
|
|
||||||
| const avatars = new Avatars(client); | ||||||
| const storage = new Storage(client); | ||||||
|
|
||||||
| async function captureAndStore(url) { | ||||||
| const screenshotUrl = avatars.getScreenshot({ | ||||||
| url, | ||||||
| viewportWidth: 1200, | ||||||
| viewportHeight: 630, | ||||||
| output: 'webp', | ||||||
| quality: 85 | ||||||
| }); | ||||||
|
|
||||||
| const response = await fetch(screenshotUrl); | ||||||
| const blob = await response.blob(); | ||||||
|
|
||||||
| const file = await storage.createFile({ | ||||||
| bucketId: 'screenshots', | ||||||
| fileId: ID.unique(), | ||||||
| file: new File([blob], 'screenshot.webp', { type: 'image/webp' }) | ||||||
| }); | ||||||
atharvadeosthale marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
|
||||||
| return file.$id; | ||||||
| } | ||||||
| ``` | ||||||
|
|
||||||
| Now you have a reusable function that captures a screenshot and stores it. Subsequent requests can fetch from storage instead of regenerating. | ||||||
|
|
||||||
| # Track screenshots in a table | ||||||
|
|
||||||
| When storing screenshots, you need a way to look them up later. Use a table to map URLs to their stored file IDs: | ||||||
|
|
||||||
| ```js | ||||||
| import { Client, Storage, TablesDB, Avatars, ID, Query } from "appwrite"; | ||||||
|
|
||||||
| const client = new Client() | ||||||
| .setEndpoint('https://<REGION>.cloud.appwrite.io/v1') | ||||||
| .setProject('<PROJECT_ID>'); | ||||||
|
|
||||||
| const storage = new Storage(client); | ||||||
| const tablesDB = new TablesDB(client); | ||||||
| const avatars = new Avatars(client); | ||||||
|
|
||||||
| // captureAndStore from the previous example | ||||||
|
|
||||||
| async function createScreenshot(url) { | ||||||
| const fileId = await captureAndStore(url); | ||||||
|
|
||||||
| await tablesDB.createRow({ | ||||||
| databaseId: 'main', | ||||||
| tableId: 'screenshots', | ||||||
| rowId: ID.unique(), | ||||||
| data: { url, fileId } | ||||||
| }); | ||||||
|
|
||||||
| return fileId; | ||||||
| } | ||||||
|
|
||||||
| async function getOrCreateScreenshot(url) { | ||||||
| const existing = await tablesDB.listRows({ | ||||||
| databaseId: 'main', | ||||||
| tableId: 'screenshots', | ||||||
| queries: [Query.equal('url', [url])] | ||||||
atharvadeosthale marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| }); | ||||||
|
|
||||||
| if (existing.total > 0) { | ||||||
| return existing.rows[0].fileId; | ||||||
| } | ||||||
|
|
||||||
| return createScreenshot(url); | ||||||
| } | ||||||
atharvadeosthale marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| ``` | ||||||
|
|
||||||
| This lets you query by URL directly. Each row automatically gets `$createdAt` and `$updatedAt` timestamps you can use for invalidation. | ||||||
|
|
||||||
| # Implement smart refresh strategies | ||||||
|
|
||||||
| Stored screenshots go stale. A page you captured last week might look completely different today. You need a strategy for keeping screenshots fresh without regenerating them unnecessarily. | ||||||
|
|
||||||
| **Time-based expiration** is the simplest approach. Check the `$updatedAt` timestamp and regenerate when the screenshot is too old: | ||||||
|
|
||||||
| ```js | ||||||
| async function getScreenshot(url, maxAgeHours = 24) { | ||||||
| const existing = await tablesDB.listRows({ | ||||||
| databaseId: 'main', | ||||||
| tableId: 'screenshots', | ||||||
| queries: [Query.equal('url', [url])] | ||||||
| }); | ||||||
|
|
||||||
| if (existing.total > 0) { | ||||||
| const row = existing.rows[0]; | ||||||
| const age = Date.now() - new Date(row.$updatedAt).getTime(); | ||||||
| const maxAge = maxAgeHours * 60 * 60 * 1000; | ||||||
|
|
||||||
| if (age < maxAge) { | ||||||
| return row.fileId; | ||||||
| } | ||||||
|
|
||||||
| // Screenshot expired, regenerate and update the row | ||||||
| const newFileId = await captureAndStore(url); | ||||||
adityaoberai marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| await tablesDB.updateRow({ | ||||||
| databaseId: 'main', | ||||||
| tableId: 'screenshots', | ||||||
| rowId: row.$id, | ||||||
| data: { fileId: newFileId } | ||||||
| }); | ||||||
| return newFileId; | ||||||
| } | ||||||
|
|
||||||
| return createScreenshot(url); | ||||||
| } | ||||||
| ``` | ||||||
|
|
||||||
| **On-demand refresh** works well for user-facing features. Add a "refresh preview" button that regenerates the screenshot when clicked, rather than on a timer. | ||||||
|
|
||||||
| # Choose the right format for your use case | ||||||
|
|
||||||
| Screenshot APIs typically support multiple output formats. Each has trade-offs. | ||||||
|
|
||||||
| | Format | Best for | Considerations | | ||||||
| | ------ | -------- | -------------- | | ||||||
| | WebP | Web delivery, general use | Best size-to-quality ratio, wide browser support | | ||||||
| | PNG | Screenshots with text, transparency | Larger files, lossless quality | | ||||||
| | JPEG | Photographs, gradients | Smaller files, no transparency, some quality loss | | ||||||
|
|
||||||
| For most web applications, **WebP at 80-85% quality** offers the best balance: | ||||||
|
|
||||||
| ```js | ||||||
| const screenshot = avatars.getScreenshot({ | ||||||
| url: 'https://example.com', | ||||||
| output: 'webp', | ||||||
| quality: 85 | ||||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| If you need to support older browsers, generate both WebP and JPEG versions and serve the appropriate one based on the Accept header. | ||||||
|
|
||||||
| # Size screenshots for their purpose | ||||||
|
|
||||||
| A full-page screenshot at 1920x1080 might be 2MB. If you are displaying it as a 300px thumbnail, you are wasting bandwidth and slowing down your page. | ||||||
|
|
||||||
| Generate screenshots at the size you actually need: | ||||||
|
|
||||||
| ```js | ||||||
| // For link preview cards (Open Graph size) | ||||||
| const ogPreview = avatars.getScreenshot({ | ||||||
| url: 'https://example.com', | ||||||
| viewportWidth: 1200, | ||||||
| viewportHeight: 630, | ||||||
| width: 1200, | ||||||
| height: 630 | ||||||
| }); | ||||||
|
|
||||||
| // For thumbnail galleries | ||||||
| const thumbnail = avatars.getScreenshot({ | ||||||
| url: 'https://example.com', | ||||||
| viewportWidth: 1280, | ||||||
| viewportHeight: 720, | ||||||
| width: 400, | ||||||
| height: 225 | ||||||
| }); | ||||||
|
|
||||||
| // For full documentation | ||||||
| const fullPage = avatars.getScreenshot({ | ||||||
| url: 'https://example.com', | ||||||
| fullpage: true, | ||||||
| viewportWidth: 1280 | ||||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| If you need multiple sizes, consider generating at the largest size and using Appwrite Storage's image transformation to serve smaller versions: | ||||||
|
|
||||||
| ```js | ||||||
| // Get a resized version from storage | ||||||
| const thumbnail = storage.getFilePreview({ | ||||||
| bucketId: 'screenshots', | ||||||
| fileId: screenshotFileId, | ||||||
| width: 400, | ||||||
| height: 225, | ||||||
| gravity: 'center', | ||||||
| quality: 80, | ||||||
| output: 'webp' | ||||||
| }); | ||||||
atharvadeosthale marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| ``` | ||||||
|
|
||||||
| # Handle dynamic content correctly | ||||||
|
|
||||||
| Modern web pages are full of dynamic content: animations, lazy-loaded images, JavaScript-rendered components. A screenshot taken too early captures a half-loaded page. | ||||||
|
|
||||||
| Use the `sleep` parameter to wait for the page to fully load before capturing: | ||||||
|
|
||||||
| ```js | ||||||
| // Wait 3 seconds for animations and lazy loading | ||||||
| const screenshot = avatars.getScreenshot({ | ||||||
| url: 'https://example.com', | ||||||
| sleep: 3 | ||||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| For pages with significant client-side rendering, 2-3 seconds is usually sufficient. For simple static pages, you can skip the delay entirely. | ||||||
|
|
||||||
| Some pages require specific browser permissions to render correctly. A mapping application needs geolocation permission, or it shows a permission prompt instead of the map: | ||||||
|
|
||||||
| ```js | ||||||
| const mapScreenshot = avatars.getScreenshot({ | ||||||
| url: 'https://maps.example.com', | ||||||
| permissions: ['geolocation'], | ||||||
| latitude: 40.7128, | ||||||
| longitude: -74.0060 | ||||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| For authenticated pages, use the `headers` parameter to pass authorization tokens or session cookies: | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a server-side security note for auth headers. The sentence can be read as client-side guidance. Please add a short caution to keep tokens server-side to avoid exposing secrets in browser code. 🛡️ Suggested wording-For authenticated pages, use the `headers` parameter to pass authorization tokens or session cookies:
+For authenticated pages, use the `headers` parameter to pass authorization tokens or session cookies. Do this from a trusted backend/service to avoid exposing secrets in client-side code:📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
|
|
||||||
| ```js | ||||||
| const authenticatedScreenshot = avatars.getScreenshot({ | ||||||
| url: 'https://dashboard.example.com', | ||||||
| headers: { | ||||||
| 'Authorization': 'Bearer your-access-token', | ||||||
| 'Cookie': 'session=your-session-id' | ||||||
| } | ||||||
| }); | ||||||
| ``` | ||||||
|
|
||||||
| This lets you capture internal dashboards, admin panels, or any page that requires authentication. | ||||||
|
|
||||||
| # Final thoughts | ||||||
|
|
||||||
| Handling screenshots well comes down to a few key principles: | ||||||
|
|
||||||
| 1. **Store, do not regenerate** - Store screenshots in persistent storage and serve from there | ||||||
| 2. **Size appropriately** - Generate at the dimensions you need, not the largest possible | ||||||
| 3. **Choose the right format** - WebP for most cases, PNG when you need lossless quality | ||||||
| 4. **Handle staleness** - Implement TTL-based or on-demand refresh strategies | ||||||
| 5. **Wait for dynamic content** - Use sleep and permissions to capture fully-loaded pages | ||||||
|
|
||||||
| With these patterns in place, screenshots become a reliable, performant feature rather than a source of production headaches. | ||||||
|
|
||||||
| To get started, check out the [Screenshots API documentation](/docs/products/avatars/screenshots) and try capturing your first screenshot. As always, we would love to see what you build with it. | ||||||
|
|
||||||
| # Further reading | ||||||
|
|
||||||
| - [Screenshots API documentation](/docs/products/avatars/screenshots) | ||||||
| - [Announcing Screenshots API](/blog/post/announcing-screenshots-api) | ||||||
| - [Image transformation with Appwrite Storage](/blog/post/image-transformation-with-appwrite-storage) | ||||||
| - [Appwrite Storage quick start](/docs/products/storage/quick-start) | ||||||
Uh oh!
There was an error while loading. Please reload this page.