6.7.0 - Alpha4 - 修复 images.concat 纵向拼接时宽度值计算错误
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user