Files
charles bloom 6c53b91dc6 fix ImageWrapperHelper identifying jpeg as grayscale
ImageWrapperHelper is deprecated, do not use

#rb fabian.giesen
#rnx

[CL 28727914 by charles bloom in ue5-main branch]
2023-10-12 16:43:38 -04:00

21 lines
688 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Containers/StringFwd.h"
#include "CoreMinimal.h"
#include "IImageWrapper.h"
// ImageWrapperHelper is deprecated, use IImageWrapperModule instead
class ImageWrapperHelper
{
public:
// deprecated, use IImageWrapperModule::GetExtension() instead
static IMAGEWRAPPER_API FStringView GetFormatExtension(EImageFormat InImageFormat, bool bIncludeDot=false);
// deprecated, use IImageWrapperModule::GetImageFormatFromExtension instead
static IMAGEWRAPPER_API EImageFormat GetImageFormat(FStringView StringExtention);
static IMAGEWRAPPER_API const FStringView GetImageFilesFilterString(bool bIncludeAllFiles);
};