mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 22:56:33 +02:00
Recognize img width/height auto
This commit is contained in:
@@ -241,9 +241,10 @@ public class HtmlHelper {
|
||||
|
||||
String awidth = img.attr("width");
|
||||
String aheight = img.attr("height");
|
||||
if (!TextUtils.isEmpty(awidth))
|
||||
|
||||
if (!TextUtils.isEmpty(awidth) && !"auto".equals(awidth.toLowerCase()))
|
||||
width = Integer.parseInt(awidth);
|
||||
if (!TextUtils.isEmpty(aheight))
|
||||
if (!TextUtils.isEmpty(aheight) && !"auto".equals(aheight.toLowerCase()))
|
||||
height = Integer.parseInt(aheight);
|
||||
|
||||
if (width != 0 || height != 0) {
|
||||
|
||||
Reference in New Issue
Block a user