diff --git a/check_compress_psd.py b/check_compress_psd.py index 02763b5..008fcee 100644 --- a/check_compress_psd.py +++ b/check_compress_psd.py @@ -61,10 +61,10 @@ def parse_psd(path): break if is_activity_main_psd: - if max_width < 1080: - log.append("玩法活动背景过小,宽度不能小于1080") - if max_height < 2700: - log.append("玩法活动背景过小,高度不能小于2700") + if max_width < 1024: + log.append("玩法活动背景过小,宽度不能小于1024") + if max_height < 2560: + log.append("玩法活动背景过小,高度不能小于2560") for item in psd.descendants(): if not item.is_group():