From 8469d556bbc67ed8ac203275cd25ad8774f89069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCllner?= Date: Wed, 4 Mar 2026 11:07:23 +0100 Subject: [PATCH] chore(images): align capture source quality with TPB upload pipeline - Increase camera capture input for detail photo updates (1600px, quality 90) - Keep final constraints enforced in storage service (1080px max, <=500KB) - Improve visual quality before compression while preserving storage limits --- lib/screens/garage_screen.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/screens/garage_screen.dart b/lib/screens/garage_screen.dart index eddbfaf..49c1eb0 100644 --- a/lib/screens/garage_screen.dart +++ b/lib/screens/garage_screen.dart @@ -665,9 +665,9 @@ class GarageScreenState extends State { final picker = ImagePicker(); final xFile = await picker.pickImage( source: ImageSource.camera, - maxWidth: 800, - maxHeight: 800, - imageQuality: 60, + maxWidth: 1600, + maxHeight: 1600, + imageQuality: 90, ); if (xFile == null) return;