You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Justin Mclean (JIRA)" <ji...@apache.org> on 2013/12/25 04:45:52 UTC

[jira] [Assigned] (FLEX-33921) BitmapImage don't show up in specific case

     [ https://issues.apache.org/jira/browse/FLEX-33921?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Justin Mclean reassigned FLEX-33921:
------------------------------------

    Assignee: Justin Mclean

> BitmapImage don't show up in specific case
> ------------------------------------------
>
>                 Key: FLEX-33921
>                 URL: https://issues.apache.org/jira/browse/FLEX-33921
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Spark: Image
>    Affects Versions: Adobe Flex SDK 4.6 (Release)
>            Reporter: Jaroslav Pavlicek
>            Assignee: Justin Mclean
>              Labels: easyfix, easytest
>
> BitmapImage doesn't show image when:
> - size specified by procent (width="100%")
> - imageAspectRatio doesn't exactly math display aspect ratio - for example 1.0869565217391304 and 1.0869565217391305
> In my case display width=480, image size is 800x736. 
> in BitmapImage.as in function updateDisplayList there should be some rounding, something like:
> if (Math.ceil(aspectRatio * 1000) != Math.ceil(imageAspectRatio * 1000))
> {
>   invalidateSize();
>   return;
> }
> because two Number doesn't equals exactly, they differs in some last digits:
> 1.0869565217391304 and
> 1.0869565217391305



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)