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
This commit is contained in:
Lukas Müllner 2026-03-04 11:07:23 +01:00
parent ddc1572273
commit 8469d556bb

View file

@ -665,9 +665,9 @@ class GarageScreenState extends State<GarageScreen> {
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;