appwrite/docs/examples/1.8.x/client-android/java/avatars/get-screenshot.md
2026-02-03 15:48:48 +05:30

1.6 KiB

import io.appwrite.Client;
import io.appwrite.coroutines.CoroutineCallback;
import io.appwrite.services.Avatars;
import io.appwrite.enums.Theme;
import io.appwrite.enums.Timezone;
import io.appwrite.enums.BrowserPermission;
import io.appwrite.enums.ImageFormat;

Client client = new Client(context)
    .setEndpoint("https://<REGION>.cloud.appwrite.io/v1") // Your API Endpoint
    .setProject("<YOUR_PROJECT_ID>"); // Your project ID

Avatars avatars = new Avatars(client);

avatars.getScreenshot(
    "https://example.com", // url 
    Map.of(
        "Authorization", "Bearer token123",
        "X-Custom-Header", "value"
    ), // headers (optional)
    1920, // viewportWidth (optional)
    1080, // viewportHeight (optional)
    2, // scale (optional)
    Theme.LIGHT, // theme (optional)
    "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15", // userAgent (optional)
    true, // fullpage (optional)
    "en-US", // locale (optional)
    Timezone.AFRICA_ABIDJAN, // timezone (optional)
    37.7749, // latitude (optional)
    -122.4194, // longitude (optional)
    100, // accuracy (optional)
    true, // touch (optional)
    BrowserPermission.GEOLOCATION, // permissions (optional)
    3, // sleep (optional)
    800, // width (optional)
    600, // height (optional)
    85, // quality (optional)
    ImageFormat.JPG, // output (optional)
    new CoroutineCallback<>((result, error) -> {
        if (error != null) {
            error.printStackTrace();
            return;
        }

        Log.d("Appwrite", result.toString());
    })
);