2 * Copyright (C) 2023 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
20 * @brief An interface to load special image files into a texture for display.
22 * Special image files are images that are more than just a link or path to an
23 * image file, such as generated or embedded images - like album covers
24 * embedded in music files or thumbnails generated from video files.
26 class ISpecialImageFileLoader
29 virtual bool CanLoad(const std::string
& specialType
) const = 0;
30 virtual std::unique_ptr
<CTexture
> Load(const std::string
& specialType
,
31 const std::string
& filePath
,
32 unsigned int preferredWidth
,
33 unsigned int preferredHeight
) const = 0;
34 virtual ~ISpecialImageFileLoader() = default;
37 } // namespace IMAGE_FILES