Binary.Decompress
통사론
Binary.Decompress(binary as nullable binary, compressionType as number) as nullable binary
소개
지정된 압축 형식을 사용하여 이진 값을 압축 해제합니다. 이 호출의 결과는 압축 해제된 입력 복사본입니다. 압축 유형은 다음과 같습니다.
예제 1
이진 값을 압축 해제합니다.
사용량
Binary.Decompress(#binary({115, 103, 200, 7, 194, 20, 134, 36, 134, 74, 134, 84, 6, 0}), Compression.Deflate)
출력
#binary({71, 0, 111, 0, 111, 0, 100, 0, 98, 0, 121, 0, 101, 0})