Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
11.3
11.4
Statistic
FMM
Blog
Container.Compress
Compresses a container value.
Component |
Version |
macOS |
Windows |
Linux |
Server |
iOS SDK |
Container
|
5.3 |
✅ Yes
|
✅ Yes
|
✅ Yes
|
✅ Yes
|
✅ Yes
|
MBS( "Container.Compress"; ContainerValue )
More
MBS(
"Container.Compress"; /* Compresses a container value. */
$ContainerValue) /* The container value to compress. */
Less
Parameters
Parameter |
Description |
Example |
ContainerValue |
The container value to compress. |
|
Result
Returns container value or error.
Description
Compresses a container value.
Compression is not recommended for file formats which are normally compressed already. This includes PDF, various image formats like PNG and JPEG, video and audio files as well as zip archives.
Compression works very well for text files.
It is recommended to check with Container.GetTotalSize to see if compressed data is smaller. If you compress an already compressed container, the result may be bigger due to the archive header.
Compressed containers can be detected by looking if the type list returned by Container.GetTypes contains an item named ZLIB. You can use Container.GetTypeSize to query the size of compressed data alone.
Not recommended for bigger file sizes. Compression may take long enough that user doesn't like to wait. e.g. 20 seconds for 300 MB.
Examples
Compress container:
Set Field [Container Compression::Compressed; MBS("Container.Compress"; Container Compression::SomeContainer)]
See also
Release notes
Example Databases
Blog Entries
Created 15th September 2015, last changed 21st September 2015
CompileTime
-
Container.DecodeFromBase64
Feedback: Report problem or ask question.