qrcode_png

Struct QrCode

Source
pub struct QrCode { /* private fields */ }
Expand description

Define QR code

Implementations§

Source§

impl QrCode

Source

pub fn new<T: AsRef<[u8]>>( content: T, ecl: QrCodeEcc, ) -> Result<Self, DataTooLong>

Create a QR code

Examples found in repository?
examples/qrcode.rs (line 4)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
fn main() {
    let mut qrcode = QrCode::new(b"Hello Rust !", QrCodeEcc::Medium).unwrap();

    qrcode.zoom(10).margin(10);

    // -------- Bitmap
    let buf = qrcode.generate(Color::Bitmap(false, true)).unwrap();
    std::fs::write("./qrcode.bitmap.png", buf).unwrap();

    // -------- Grayscale
    let buf = qrcode.generate(Color::Grayscale(0, 255)).unwrap();
    std::fs::write("./qrcode.grayscale.png", buf).unwrap();

    // -------- RGB
    let buf = qrcode
        .generate(Color::Rgb([3, 169, 244], [113, 140, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgb.png", buf).unwrap();

    // -------- RGBA
    let buf = qrcode
        .generate(Color::Rgba([137, 89, 168, 255], [255, 255, 255, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgba.png", buf).unwrap();
}
Source

pub fn zoom(&mut self, zoom: u32) -> &mut Self

Enlarge the QR code according to the original scale, Default value: 1

Examples found in repository?
examples/qrcode.rs (line 6)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
fn main() {
    let mut qrcode = QrCode::new(b"Hello Rust !", QrCodeEcc::Medium).unwrap();

    qrcode.zoom(10).margin(10);

    // -------- Bitmap
    let buf = qrcode.generate(Color::Bitmap(false, true)).unwrap();
    std::fs::write("./qrcode.bitmap.png", buf).unwrap();

    // -------- Grayscale
    let buf = qrcode.generate(Color::Grayscale(0, 255)).unwrap();
    std::fs::write("./qrcode.grayscale.png", buf).unwrap();

    // -------- RGB
    let buf = qrcode
        .generate(Color::Rgb([3, 169, 244], [113, 140, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgb.png", buf).unwrap();

    // -------- RGBA
    let buf = qrcode
        .generate(Color::Rgba([137, 89, 168, 255], [255, 255, 255, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgba.png", buf).unwrap();
}
Source

pub fn margin(&mut self, margin: u32) -> &mut Self

Set the distance between the QR code and the edge of the picture

Examples found in repository?
examples/qrcode.rs (line 6)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
fn main() {
    let mut qrcode = QrCode::new(b"Hello Rust !", QrCodeEcc::Medium).unwrap();

    qrcode.zoom(10).margin(10);

    // -------- Bitmap
    let buf = qrcode.generate(Color::Bitmap(false, true)).unwrap();
    std::fs::write("./qrcode.bitmap.png", buf).unwrap();

    // -------- Grayscale
    let buf = qrcode.generate(Color::Grayscale(0, 255)).unwrap();
    std::fs::write("./qrcode.grayscale.png", buf).unwrap();

    // -------- RGB
    let buf = qrcode
        .generate(Color::Rgb([3, 169, 244], [113, 140, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgb.png", buf).unwrap();

    // -------- RGBA
    let buf = qrcode
        .generate(Color::Rgba([137, 89, 168, 255], [255, 255, 255, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgba.png", buf).unwrap();
}
Source

pub fn generate(&self, color: Color) -> Result<Vec<u8>, EncodingError>

Get png data of QR code

Examples found in repository?
examples/qrcode.rs (line 9)
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
fn main() {
    let mut qrcode = QrCode::new(b"Hello Rust !", QrCodeEcc::Medium).unwrap();

    qrcode.zoom(10).margin(10);

    // -------- Bitmap
    let buf = qrcode.generate(Color::Bitmap(false, true)).unwrap();
    std::fs::write("./qrcode.bitmap.png", buf).unwrap();

    // -------- Grayscale
    let buf = qrcode.generate(Color::Grayscale(0, 255)).unwrap();
    std::fs::write("./qrcode.grayscale.png", buf).unwrap();

    // -------- RGB
    let buf = qrcode
        .generate(Color::Rgb([3, 169, 244], [113, 140, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgb.png", buf).unwrap();

    // -------- RGBA
    let buf = qrcode
        .generate(Color::Rgba([137, 89, 168, 255], [255, 255, 255, 0]))
        .unwrap();
    std::fs::write("./qrcode.rgba.png", buf).unwrap();
}

Trait Implementations§

Source§

impl Clone for QrCode

Source§

fn clone(&self) -> QrCode

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl Freeze for QrCode

§

impl RefUnwindSafe for QrCode

§

impl Send for QrCode

§

impl Sync for QrCode

§

impl Unpin for QrCode

§

impl UnwindSafe for QrCode

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.