6.7.0 - Alpha4 - 修复 images.concat 纵向拼接时宽度值计算错误

This commit is contained in:
SuperMonster003
2025-09-10 11:29:47 +08:00
parent 627224e26b
commit 60d42105e1
2 changed files with 3 additions and 2 deletions

View File

@@ -185,7 +185,7 @@ public class Images {
width = imgA.getWidth() + imgB.getWidth();
height = Math.max(imgA.getHeight(), imgB.getHeight());
} else {
width = Math.max(imgA.getWidth(), imgB.getHeight());
width = Math.max(imgA.getWidth(), imgB.getWidth());
height = imgA.getHeight() + imgB.getHeight();
}
Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);