Decompress String Data
PureDecompressStringDataDecompresses a zlib-compressed byte array back to a string.
Type: Pure (no side effects)
Category: Fortuna|Save/Load & Data
Keywords: save/load & data
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| CompressedData | TArray<uint8> | — | CompressedData parameter |
| OriginalSize | int | — | OriginalSize parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| Output | FString | Output output |
| bSuccess | bool | bSuccess output |
Example Use Cases
Example 1
Decompress save data after reading from disk.
Example 2
Decompress received network data.