#[cfg(feature = "bmp")]
fn main() {
let qr_code = qr_code::QrCode::new(b"Hello").unwrap();
let bmp = qr_code.to_bmp();
bmp.write(std::fs::File::create("test_data/test.bmp").unwrap())
.unwrap();
}
#[cfg(feature = "bmp")]
fn main() {
let qr_code = qr_code::QrCode::new(b"Hello").unwrap();
let bmp = qr_code.to_bmp();
bmp.write(std::fs::File::create("test_data/test.bmp").unwrap())
.unwrap();
}