Home

Awesome

Cover

Language Pod License

Features

Usage

/* Create AImage with URL */
let image = AImage(url: Bundle.main.url(forResource: "test", withExtension: "gif")!)

/* Create AImageView */
let imageview = AImageView(frame:CGRect(x: 0.0, y: 50.0, width: 380.0, height: 212.0))

/* Add AImage to AImageView */
imageview.add(image: image!)

/* Start displaying animated image */
imageview.play = true

...
...

/* Stop displaying animated image */
imageview.play = false

Benchmark

Compared with Gifu and Apple's example code.

Test1: Display view.gif

LibraryCPUMemory
Apple's Example Code<img src="https://wangjwchn.github.io/image/apple-view-cpu.png" width = "1000" height = "150" /><img src="https://wangjwchn.github.io/image/apple-view-mem.png" width = "600" height = "120" />
Gifu<img src="https://wangjwchn.github.io/image/gifu-view-cpu.png" width = "1000" height = "150" /><img src="https://wangjwchn.github.io/image/gifu-view-mem.png" width = "600" height = "120" />
AImage<img src="https://wangjwchn.github.io/image/aimage-view-cpu.png" width = "1000" height = "150" /><img src="https://wangjwchn.github.io/image/aimage-view-mem.png" width = "600" height = "120" />

Test2: Display earth.gif

LibraryCPUMemory
Apple's Example Code<img src="https://wangjwchn.github.io/image/apple-earch-cpu.png" width = "1000" height = "150" /><img src="https://wangjwchn.github.io/image/apple-earth-mem.png" width = "600" height = "120" />
Gifu<img src="https://wangjwchn.github.io/image/gifu-earth-cpu.png" width = "1000" height = "150" /><img src="https://wangjwchn.github.io/image/gifu-earth-mem.png" width = "600" height = "120" />
AImage<img src="https://wangjwchn.github.io/image/aimage-earth-cpu.png" width = "1000" height = "150" /><img src="https://wangjwchn.github.io/image/aimage-earth-mem.png" width = "600" height = "120" />

Measurement Factors:

Principles

Old Version

Version of swift 2.3 can be found in here.

Licence

AImage is released under the MIT license. See LICENSE for details.