नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Binary.Compress(binary as nullable binary, compressionType as number) as nullable binary
About
Compresses a binary value using the given compression type. The result of this call is a compressed copy of the input. Compression types include:
Example 1
Compress the binary value.
Usage
Binary.Compress(Binary.FromList(List.Repeat({10}, 1000)), Compression.Deflate)
Output
#binary({227, 226, 26, 5, 163, 96, 20, 12, 119, 0, 0})