From 8b3b043967043f7b567e8ea215bbe3e993409810 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 8 Jan 2026 18:01:42 +0800 Subject: [PATCH] fix(oss): Fixed ImageResizeArgs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 适配参数数据类型变更 --- .../OssManagement/Imaging/AbpImagingProcesserContributor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnet-core/modules/oss-management/LINGYUN.Abp.OssManagement.Imaging/LINGYUN/Abp/OssManagement/Imaging/AbpImagingProcesserContributor.cs b/aspnet-core/modules/oss-management/LINGYUN.Abp.OssManagement.Imaging/LINGYUN/Abp/OssManagement/Imaging/AbpImagingProcesserContributor.cs index cdf01d27e..3cffa6d34 100644 --- a/aspnet-core/modules/oss-management/LINGYUN.Abp.OssManagement.Imaging/LINGYUN/Abp/OssManagement/Imaging/AbpImagingProcesserContributor.cs +++ b/aspnet-core/modules/oss-management/LINGYUN.Abp.OssManagement.Imaging/LINGYUN/Abp/OssManagement/Imaging/AbpImagingProcesserContributor.cs @@ -64,8 +64,8 @@ public class AbpImagingProcesserContributor : IOssObjectProcesserContributor !height.IsNullOrWhiteSpace()) { resizeArgs = new ImageResizeArgs( - int.Parse(width), - int.Parse(height)); + uint.Parse(width), + uint.Parse(height)); return true; } resizeArgs = null;