feat: use png from sharp

This commit is contained in:
amhsirak
2025-03-20 20:08:34 +05:30
parent 80900ce9e3
commit 3a1a6768f4

View File

@@ -531,7 +531,7 @@ export class RemoteBrowser {
private async optimizeScreenshot(screenshot: Buffer): Promise<Buffer> {
try {
return await sharp(screenshot)
.jpeg({
.png({
quality: Math.round(SCREENCAST_CONFIG.compressionQuality * 100),
progressive: true
})