File: demo_writer.rs

package info (click to toggle)
zxing-cpp 2.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 26,832 kB
  • sloc: cpp: 32,803; ansic: 18,360; php: 1,156; python: 215; makefile: 25; sh: 3
file content (25 lines) | stat: -rw-r--r-- 718 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* Copyright 2024 Axel Waggershauser
*/
// SPDX-License-Identifier: Apache-2.0

use image;
use std::fs;
use zxingcpp::*;

fn main() -> anyhow::Result<()> {
	let text = std::env::args().nth(1).expect("no input text provided");
	let format = std::env::args().nth(2).expect("no format provided");
	let filename = std::env::args().nth(3).expect("no output file name provided");

	let create_barcode = create(BarcodeFormat::from_str(format)?);
	let bc = create_barcode.from_str(text)?;

	if filename.ends_with(".svg") {
		fs::write(filename, bc.to_svg_with(&write().with_hrt(true))?).expect("Unable to write file");
	} else {
		image::GrayImage::from(&bc.to_image_with(&write().scale(4))?).save(filename)?;
	}

	Ok(())
}