Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxSmartImageCodecsRepository Class

Contains references to image format codec classes.

#Declaration

Delphi
TdxSmartImageCodecsRepository = class(
    TObject
)

#Remarks

This codec repository is a global storage for image format implementations that DevExpress products use.

The TdxSmartImageCodecsRepository class has members that allow you to do the following:

  • Identify if a specific codec implementation is registered (Contains).

  • Obtain the total number of registered codecs (Count).

  • Access an individual registered codec by its index (Items).

  • Manage registered codec list (Register and Unregister).

  • Access a specific codec functionality by a filename extension or format ID (GetFormatByExt and GetFormatByID).

  • Identify the format of an image stored in a stream (GetFormatFromStream).

  • Evaluate parameters of a specific image (GetImageInfo).

  • Load an image that has any registered format (Load.

#Inheritance

TObject
TdxSmartImageCodecsRepository
See Also