Binary.Compress
통사론
Binary.Compress(binary as nullable binary, compressionType as number) as nullable binary
소개
지정된 압축 형식을 사용하여 이진 값을 압축합니다. 이 호출의 결과는 입력의 압축된 복사본입니다. 압축 유형은 다음과 같습니다.
예제 1
이진 값을 압축합니다.
사용량
Binary.Compress(Binary.FromList(List.Repeat({10}, 1000)), Compression.Deflate)
출력
#binary({227, 226, 26, 5, 163, 96, 20, 12, 119, 0, 0})