Encr_Decompress |
Decompresses text that was previously compressed.
Syntax
Encr_Decompress ( switches ; text )
Parameters
switches | reserved for future use, leave empty or set to "-Unused" |
text | the text to decompress |
Returned Result
Data type returned
Text
Result
the decompressed text
OR
“$$ Decompression Error” + an error code, when the decompression failed.
Originated in
Troi Encryptor Plug-in 1.5
Compatibility
FileMaker Pro 16 to FileMaker Pro 2023
Considerations
NOTE: this function can only decompress text that was previously compressed with “Encr_Compress” function (ZLIB algorithm). Currently no other algorithms, like ZIP and Stuffit (.sit) are supported.
Example
Set Field [ result ; Encr_Decompress ( "-Unused" ; "xú3426153∑∞T0ƒd Wÿ" ) ]
will result in the decompressed string: “123456789 123456789 123456789”
Example 2
In a document database you have defined a text field named “letterCompressed” which contains the main part of a letter, compressed. Then you can define a calculation field:
letterContentsCalc calculation Unstored = Encr_Decompress ( "-Unused" ; letterCompressed )
this field will contain the uncompressed version of the contents.
Used in example file
EmailSaf.fmp12
Related function
Encr_Compress |
Related topics
Troi Encryptor Plug-in online help (overview)