Files
UnrealEngineUWP/Engine/Source/Runtime/ImageWrapper/Public/ImageWrapperHelper.h
zahra nikbakht 8f27bfa7f6 - Custom thumbnail for Widget blueprints #RB patrick.boutot #jira ue-118803
#preflight 610a9c562b002800016b5e53

#ROBOMERGE-SOURCE: CL 17052085 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v850-17047176)

[CL 17052094 by zahra nikbakht in ue5-release-engine-test branch]
2021-08-04 11:18:57 -04:00

14 lines
410 B
C++

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