On iOS devices, in which occasions is it better to draw graphics using Core Graphics than using image files?
What are the advantages of doing so in terms of resources?
|
On iOS devices, in which occasions is it better to draw graphics using Core Graphics than using image files? What are the advantages of doing so in terms of resources? |
|||
|
|
|
Images vs Core Graphics is a blunt distinction. The methods to render offscreen/onscreen graphics are more complex to the point that you need to use Instruments to find out what is really happening. I tried to provide an overview here, but this answer could use some improving from more knowledgeable people. GPU vs CPU renderingGraphics are always rendered onscreen by the GPU. However, they can be generated by the GPU or the CPU, and happen in user code or in a separate process called “the render server”. Here is an overview: CPU, user code:
GPU, render server:
GPU, render server, very slow:
GPU, fast:
Note that caching is only useful if the cache is reused. If it is immediately discarded it hurts performance. For example, a cached animation where contents are simply stretched can be cached and reused, but a cached animation where contents change will have an awful performance. Bitmaps vs drawingImage files are generally faster.
Offscreen drawing requires more work, but lets you achieve more.
Stretchable images, whether read from image files, or generated by drawing, use less memory. Stretching is an unexpensive operation to the GPU. Performance is only a problem if there isn't enough. Use whatever is faster to code unless pressed otherwise. The fastest program is the one that reaches the market first. Some interesting reading:
|
|||||
|
|
In my experience it's always better to use images from a performance point of view, but sometimes you need to draw things manually. |
|||
|
|