Images
This section provides you with an overview of the Images Module API and guides you through the common tasks when working with images.
The Images Module allows users to create albums and images.
Sitefinity back-end provides you with a user-friendly interface to create albums and images. You can also create them programmatically using the Native or Fluent APIs.
The section contains the following:
-
Managing albums
Describes how to create, query, search, modify and delete albums using Native or Fluent API.
-
Managing images
Describes how to create, query, search, modify and delete images inside an album using Native or Fluent API.
To manage albums and images through the Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Libraries.Model;
using Telerik.Sitefinity.Modules.Libraries;
using Telerik.Sitefinity.Workflow;
To manage albums and images through the Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Libraries.Model;
using Telerik.Sitefinity.Workflow;
See Also