fix(upload_image): 修改图片显示组件默认显示清晰度

This commit is contained in:
2026-04-24 16:53:25 +08:00
parent de127eeef5
commit 0c7fbe5897

View File

@@ -98,14 +98,14 @@ class CustomerImagesNetworking extends StatelessWidget {
Widget build(BuildContext context) { Widget build(BuildContext context) {
String sizeParams = ''; String sizeParams = '';
if (height != null && width != null) { if (height != null && width != null) {
final h = height!.toInt() <= 2048 ? 2048 : height!.toInt(); final h = height!.toInt() <= 1080 ? 1080 : height!.toInt();
final w = width!.toInt() <= 2048 ? 2048 : width!.toInt(); final w = width!.toInt() <= 1080 ? 1080 : width!.toInt();
sizeParams = 'x-oss-process=image/resize,h_$h,w_$w'; sizeParams = 'x-oss-process=image/resize,h_$h,w_$w';
} else if (width != null) { } else if (width != null) {
final w = width!.toInt() <= 2048 ? 2048 : width!.toInt(); final w = width!.toInt() <= 1080 ? 1080 : width!.toInt();
sizeParams = 'x-oss-process=image/resize,h_$w,w_$w'; sizeParams = 'x-oss-process=image/resize,h_$w,w_$w';
} else if (height != null) { } else if (height != null) {
final h = height!.toInt() <= 2048 ? 2048 : height!.toInt(); final h = height!.toInt() <= 1080 ? 1080 : height!.toInt();
sizeParams = 'x-oss-process=image/resize,h_$h,w_$h'; sizeParams = 'x-oss-process=image/resize,h_$h,w_$h';
} }
final separator = imageUrl.contains('?') ? '&' : '?'; final separator = imageUrl.contains('?') ? '&' : '?';