View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0013108 | MMA | Now Playing | public | 2016-02-04 09:11 | 2019-11-11 14:29 |
Reporter | Ludek | Assigned To | |||
Priority | none | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 1.1.3 | ||||
Summary | 0013108: Artwork aspect ratio not respected | ||||
Description | There is only one place in MMA where aspect ratio is respected / preserved. Mostly the image is damaged. See attached screenshots. The red circle is mostly an ellipsis, only on one place it is circle! | ||||
Tags | No tags attached. | ||||
Attached Files | |||||
Fixed in build | |||||
|
It is a requested feature. We wanted to avoid the small black fields for almost square artworks. Actually, the bug is in third screenshot (album tracks). We stretch bitmaps according this method: public static boolean isAlmostSquare(float aspectRatio) { return Config.Library.MAX_ARTWORK_SQUARE_ASPECT < aspectRatio && aspectRatio < 1 / Config.Library.MAX_ARTWORK_SQUARE_ASPECT; } , where Config.Library.MAX_ARTWORK_SQUARE_ASPECT is currently 0.85 and aspectRatio is aspect ratio of artwork. We can certainly adjust the threshold. But it becomes visually inconsistent if we disable it completely. Almost all artworks will have small black fields. It looks weird for 1% of artworks but it looks much better for the rest. |