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

[CL 17052085 by zahra nikbakht in ue5-main branch]
2021-08-04 11:18:37 -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);
};