Files
o3de/Gems/Atom/Asset/ImageProcessingAtom/Code/Source/ImageLoader/ImageLoaders.h
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

61 lines
2.5 KiB
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project.
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
#include <AzCore/std/string/string.h>
#include <AzCore/IO/SystemFile.h>
#include <AzCore/IO/GenericStreams.h>
#include <Atom/ImageProcessing/ImageObject.h>
namespace ImageProcessingAtom
{
IImageObject* LoadImageFromFile(const AZStd::string& filename);
bool IsExtensionSupported(const char* extension);
const AZStd::string LoadEmbeddedSettingFromFile(const AZStd::string& filename);
// Tiff loader. The loader support uncompressed tiff with with 1~4 channels and 8bit and 16bit uint or 16bits and 32bits float per channel
// QImage also support tiff (tiff plugin), but it only supports 8bits uint
namespace TIFFLoader
{
bool IsExtensionSupported(const char* extension);
// Load a tiff file to an image object.
IImageObject* LoadImageFromTIFF(const AZStd::string& filename);
// Load embedded .exportsettings string from tiff which was exported by deprecated feature of CryTif plugin.
const AZStd::string LoadSettingFromTIFF(const AZStd::string& filename);
};// namespace TIFFLoader
// Image loader through Qt's QImage with image formats supported native and through plugins
namespace QtImageLoader
{
bool IsExtensionSupported(const char* extension);
// Load image file which supported by QtImage to an image object
IImageObject* LoadImageFromFile(const AZStd::string& filename);
};// namespace QtImageLoader
// Load dds files to ImageObject. The QtImageLoader can load dds file but it only can load dds with non-compressed formats.
namespace DdsLoader
{
bool IsExtensionSupported(const char* extension);
IImageObject* LoadImageFromFile(const AZStd::string& filename);
// These functions are for loading legacy O3DE dds files
IImageObject* LoadImageFromFileLegacy(const AZStd::string& filename);
IImageObject* LoadImageFromFileStreamLegacy(AZ::IO::SystemFileStream& fileLoadStream);
IImageObject* LoadAttachedImageFromDdsFileLegacy(const AZStd::string& filename, IImageObjectPtr originImage);
};// namespace DdsLoader
// Load .exr files to an image object
namespace ExrLoader
{
bool IsExtensionSupported(const char* extension);
IImageObject* LoadImageFromFile(const AZStd::string& filename);
};// namespace ExrLoader
}// namespace ImageProcessingAtom