Get access to over 100 FireMonkey cross platform samples for Android, IOS, OSX, Windows, and Linux!

AndroidAppmethodComponentDelphiDemoFiremonkeyIOSOSXWindows

Speed Up Your Apps With Bitmap Caching In Delphi XE5 Firemonkey On Android And IOS

| Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOS

Delphi XE5 Firemonkey Image Cache Layout | Delphi 11 10 XE8 XE7 XE Seattle Berlin Tokyo Rio Firemonkey Delphi Android Delphi IOSI have been doing mobile development with Adobe AIR and one of the features that it has is the ability to cache/export/convert an object as a bitmap which greatly increases it’s rendering speed on mobile. I wanted to bring this same functionality over to Delphi XE5 Firemonkey and apply it to my Android and IOS apps. It should also now work in Delphi XE6 Firemonkey and appMethod. I had a developer on oDesk create the TImageCacheLayout component for this purpose. I designed the component, he built it, and then I added some additional functionality. It cost me $600 to have this component built via oDesk. I’d like to see this type of functionality included in Delphi by Embarcadero. Below is the information I wrote up explaining the component and it’s usage. This text is included with the component and you can download and use the component for free at the end of this post.

The purpose of the TImageCacheLayout component is to cache the visible display of a TLayout and it’s child controls as a bitmap to increase rendering speed.

Usage examples:

  • Use TRectable to create objects in Delphi and then animate them at runtime. TImageCacheLayout will automatically turn these objects into a bitmap.
  • Put 5 different TImage components within a TImageCacheLayout. It will combine them into a single bitmap at design time or runtime.
  • Have a group components that are off of the screen inside of a TVertScrollBox. You could use ctCacheAsBitmap to only display them when they become visible.
  • A TTabControl with three tabs and you want to animate the transition between tabs. Set ctCacheAsBitmap to true on all of the non active tabs and only set each one to ctNone after that tab becomes visible.
  • Combine this component with the Flappy Bird Clone Source for increased speed.

Warnings:

  • May not work with components like TWebBrowser or native wrappers of MapView and WebView on IOS and Android.
  • The trade off with this component is that you will probably using more memory because the bitmap will exist in memory.
  • On IOS you could turn all your ctCacheAsBitmap settings to ctNone if you receive a Low Memory warning.

Benchmarks:

  • The demo projects showed a rendering speed increase of 66% on an Android device when using the ctCacheAsBitmap setting over ctNone.
  • ctNone (normal rendering) took 30 ms.
  • ctCacheAsBitmap (cached bitmap) took 10ms.
  • Try out the control and see what settings work best for the best performance in each situation. Have a rendering bottleneck? Try using this control to fix it.

Design time:

There are two different design time functionalities implemented in the right click menu of TImageCacheLayout. They are “Update Cache Image” and “Convert to TImage Bitmap”.

Update Cache Image:

  • You can store a screenshot of the TImageCacheLayout at design time to increase speed at runtime.
  • It will not have to do the initial paint if you use ctCacheAsBitmap or ctExportAsBitmap.
  • The screen ratio is different on different devices. You can experience image stretching with this option.
  • Your deployment file size will increase with this option.
  • You can use ctCacheAsBitmap and ctExportAsBitmap without caching an image at design time.

Convert to TImage Bitmap:

  • Will take a screenshot and convert your TImageCacheLayout item into a bitmap at design time.
  • You will object contents of your TImageCacheLayout and it will be replace by a TImage. You can no longer edit the contents.
  • Your deployment file size will increase with this option.

Runtime:

  • There are three different image cache types (TImageCacheType) which are ctNone, ctCacheAsBitmap, and ctExportAsBitmap.
  • There are four different ways in which the cache (TImageCacheUpdate) will automatically update itself which are cuMouse, cuTouch, cuTouchDelay, and cuManual.
  • There are three different post processing effects (TImageCacheEffect) which an be applied after the bitmap has been created which are cqNormal, cqNoAlphaEdge, and cqSharpen.

TImageCacheType:

  • ctNone:
    -Operates as a normal TLayout.
  • ctCacheAsBitmap:
    – The contents of TImageCacheLayout layout are stored in the CacheImage property the first time it is drawn.
    – The controls contained within the TImageCacheLayout are Visible:=False when this setting is in effect.
    – The controls still exist and can be accessed and updated using the TImageCacheUpdate option.
  • ctExportAsBitmap:
    – The contents of TImageCacheLayout layout are stored in the CacheImage property the first time it is drawn.
    – The controls contained within the TImageCacheLayout removed once it is cached.
    – The controls no longer exist and can not be accessed.

TImageCacheUpdate:

  • cuMouse:
    – TImageCacheType.ctCacheAsBitmap is required.
    – The MouseDown, MouseMove, MouseLeave, and MouseUp events are hooked and allow controls to be interacted with.
    – Once the interaction of the mouse with the controls contained within the TImageCacheLayout is complete it will automatically re-cache itself.
    – Suitable for use on devices with a mouse cursor.
  • cuTouch:
    – TImageCacheType.ctCacheAsBitmap is required.
    – The MouseDown, MouseMove, and MouseUp events are hooked and allow controls to be interacted with.
    – TImageCacheLayout will automatically re-cache itself on the MouseUp event.
    – More suitable for using with graphic only or single interaction controls.
    – Not suitable for interacting with TEdit or TMemo controls.
    – Suitable on touch capable devices with no mouse cursor.
  • cuTouchDelay:
    – TImageCacheType.ctCacheAsBitmap is required.
    – The MouseDown, MouseMove, and MouseUp events are hooked and allow controls to be interacted with.
    – TImageCacheLayout will automatically re-cache itself once a delay has elapsed (default 5 seconds) after the MouseUp event.
    – More suitable for interacting with interface components like TEdit and TMemo than cuTouch.
    – Not suitable for use with child components where no interaction is required.
    – Suitable on touch capable devices with no mouse cursor.
  • cuManual:
    – TImageCacheType.ctCacheAsBitmap is required.
    – No automatic re-caching is done.
    – Suitable if no re-caching is needed.
    – Suitable for implementing your own re-caching system based on keyboard visibility or the visibility of the TImageCacheLayout within the viewable screen.
    – Call ClearCachedImage; to clear the cache image when you need to.

TImageCacheEffect:

  • cqNormal:
    – No post processing.
    – Suitable for graphical child components.
    – Less suitable for text child components.
    – Faster than the other options.
  • cqNoAlphaEdge:
    – Experimental.
    – Each pixel is accessed and checked to see if it is below the opacity threshold of 63 [0..255]. If it is then it is set to completely transparent.
    – Suitable for text child components.
    – Less suitable for graphical child components.
    – Slower than cqNormal.
  • cqSharpen:
    – Experimental.
    – A TSharpenEffect is applied to the bitmap in post processing with an amount of 0.01.
    – Causes artifacts on some components like TPanel.
    – Suitable for text child components.
    – Less suitable for graphical child components.
    – Slower than cqNormal.

Need more functionality? Dive into the CacheLayout.pas file and build what you need.

Build something cool with this component? Share the source with other developers.

Download and check out the free Delphi XE5 Firemonkey TImageCacheLayout component for Android and IOS.

Update: Download the latest version of the TImageCacheLayout component with support for Delphi XE6 Firemonkey.

Have Delphi Firemonkey questions? Ask and get answers on StackOverflow.

Related posts
DelphiDemoFiremonkeyLinuxOSXShowcaseWindows

AutoBlogAI: FireMonkey Client To Leverage LLMs And Generative AI For Blogging

DelphiFiremonkeyShowcaseUtilityWindows

Unleashing Creativity With Song Writer AI: A Deep Dive

DelphiFiremonkeyShowcaseWindows

How To Build Stable Diffusion Text To Image Prompts

AndroidC++BuilderDelphiFiremonkeyIOSOSXWindows

FireMonkey 10.4.2 Features Updated iOS 14, Android 11, And macOS 11 Support Plus Hundreds Of Fixes

Sign up for our Newsletter and
stay informed

19 Comments

Leave a Reply