UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
IcnsImageWrapper.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "ImageWrapperBase.h"
6
7
12 : public FImageWrapperBase
13{
14public:
15
18
19public:
20
21 //~ FImageWrapper Interface
22
23 virtual bool SetCompressed(const void* InCompressedData, int64 InCompressedSize) override;
24 virtual bool SetRaw(const void* InRawData, int64 InRawSize, const int32 InWidth, const int32 InHeight, const ERGBFormat InFormat, const int32 InBitDepth, const int32 InBytesPerRow = 0) override;
25 virtual void Compress(int32 Quality) override;
26 virtual void Uncompress(const ERGBFormat InFormat, int32 InBitDepth) override;
27
28 virtual bool CanSetRawFormat(const ERGBFormat InFormat, const int32 InBitDepth) const override;
30};
FPlatformTypes::int64 int64
A 64-bit signed integer.
Definition Platform.h:1127
FPlatformTypes::int32 int32
A 32-bit signed integer.
Definition Platform.h:1125
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
ERGBFormat
Definition IImageWrapper.h:76
Definition IcnsImageWrapper.h:13
virtual void Uncompress(const ERGBFormat InFormat, int32 InBitDepth) override
Definition IcnsImageWrapper.cpp:103
virtual ERawImageFormat::Type GetSupportedRawFormat(const ERawImageFormat::Type InFormat) const override
Definition IcnsImageWrapper.cpp:77
virtual bool SetRaw(const void *InRawData, int64 InRawSize, const int32 InWidth, const int32 InHeight, const ERGBFormat InFormat, const int32 InBitDepth, const int32 InBytesPerRow=0) override
Definition IcnsImageWrapper.cpp:83
virtual bool CanSetRawFormat(const ERGBFormat InFormat, const int32 InBitDepth) const override
Definition IcnsImageWrapper.cpp:70
FIcnsImageWrapper()
Definition IcnsImageWrapper.cpp:12
virtual bool SetCompressed(const void *InCompressedData, int64 InCompressedSize) override
Definition IcnsImageWrapper.cpp:20
Definition ImageWrapperBase.h:17
Type
Definition ImageCore.h:57