Sample code for 30+ languages & platforms
Rust

Compress and Decompress Hex String

See more Compression Examples

Imagine we have data represented as a hex string. This example demonstrates how to decode, compress, and re-encode to a smaller hex string representing the compressed data. An even better choice is to re-encode to a more compact encoding such as base64.

Note: This example requires Chilkat v9.5.0.66 or greater.

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let str_hex = "54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A0D0A".to_string();

let compress = chilkat::Compression::new();
compress.set_algorithm("deflate");

let bin_dat = chilkat::BinData::new();
// Load the hex string into a BinData object.
// This decodes the hexidecimal. The decoded bytes will be contained in the BinData.
let _ = bin_dat.append_encoded(&str_hex, "hex");

// Compress the BinData.
let _ = compress.compress_bd(&bin_dat);

// Get the compressed data in hex format:
let compressed_hex = bin_dat.get_encoded("hex").unwrap_or_default();
println!("compressed hex:");
println!("{}", compressed_hex);

// The compressed hex is: 0BC94855282CCD4CCE56482ACA2FCF5348CBAF50C82ACD2D484D51C82F4B2D522801CAE72456552AA4E4A7EBF172850C61E5BC5C00

// Even better, get the compressed data in base64 format:
// (base64url and modbase64 are other valid choices...)
let compressed_base64 = bin_dat.get_encoded("base64").unwrap_or_default();
println!("compressed base64:");
println!("{}", compressed_base64);

// The compressed base64 is: C8lIVSgszUzOVkgqyi/PU0jLr1DIKs0tSE1RyC9LLVIoAcrnJFZVKqTkp+vxcoUMYeW8XAA=

// Now decompress:
let _ = bin_dat.clear();
let _ = bin_dat.append_encoded(&compressed_hex, "hex");
let _ = compress.decompress_bd(&bin_dat);

let decompressed_hex = bin_dat.get_encoded("hex").unwrap_or_default();
println!("decompressed hex:");
println!("{}", decompressed_hex);

// The output is the original hex string:
// 54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A54686520717569636B2062726F776E20666F78206A756D706564206F76657220746865206C617A7920646F672E0D0A0D0A