The TImage component is very common in a lot of FMX applications. Basically, it is a container for MultiResBitmap and lets you render a graphic resource by selecting the most appropriate one for the device running your application. This means the scale factor that's selected to match MultiResBitmap only depends on the scale factor of the form where the TImage instance resides.
The main properties of this component are as follows:
- MultiResBitmap: The value of this property will provide the actual content of the image. As we mentioned previously, this represents a very modern and effective way of handling graphic resources.
- DisableInterpolation: When this property is set to False (the default) and you are in a situation where a bitmap is drawn to a target size greater than its actual size, you automatically get an interpolated version that smooths the picture to make it look better. If you set the value of this property to True, you will probably gain some...