Compress String Data
PureCompressStringDataCompresses a string using zlib compression.
Type: Pure (no side effects)
Category: Fortuna|Save/Load & Data
Keywords: save/load & data
Inputs
| Name | Type | Default | Description |
|---|---|---|---|
| Input | FString | — | Input parameter |
Outputs
| Name | Type | Description |
|---|---|---|
| CompressedData | TArray<uint8> | CompressedData output |
| OriginalSize | int | OriginalSize output |
Example Use Cases
Example 1
Compress save data before writing to disk.
Example 2
Reduce network payload for large data transfers.