Created
July 19, 2021 12:21
-
-
Save yanfeng42/f2874b28d8a677ca48bab7158015fa79 to your computer and use it in GitHub Desktop.
计算 png 图对应的 bitmap 图的大小
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(define (png-size w h) (* w h 4.0 1/1024)) |
Author
yanfeng42
commented
Jul 19, 2021
- png 本身是压缩存储的.
- bitmap 的大小, 会影响 UIImageView 加载时的 内存消耗.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment