diff --git a/QRgen.nimble b/QRgen.nimble index 390ba43..3da4da2 100644 --- a/QRgen.nimble +++ b/QRgen.nimble @@ -1,6 +1,6 @@ # Package -version = "2.2.1" +version = "3.0.0" author = "aruZeta" description = "A QR code generation library." license = "MIT" diff --git a/README.md b/README.md index 822998d..0e84d13 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

-

@@ -46,7 +46,7 @@ myQR.printTerminal ```

- +

--- @@ -60,7 +60,7 @@ myQR.printSvg ```

- +

--- @@ -72,7 +72,7 @@ myQR.printSvg("#1d2021","#98971a") ```

- +

`"#1d2021"` sets the "light" or "background" color. @@ -87,7 +87,7 @@ myQR.printSvg("#1d2021","#98971a",60) ```

- +

`60` sets the alignment patterns' roundness to 60%. @@ -101,7 +101,7 @@ myQR.printSvg("#1d2021","#98971a",100,100) ```

- +

The first `100` sets the alignment patterns' roundness to 100% @@ -116,7 +116,7 @@ myQR.printSvg("#1d2021","#98971a",100,100,25) ```

- +

The last `25` sets the module's separation to 25%. @@ -136,7 +136,7 @@ myQR.printSvg("#1d2021","#98971a",100,100,25,svgImg=readFile("QRgen-logo.svg")) ```

- +

`svgImg` adds an SVG image embed in the center of generated @@ -185,7 +185,7 @@ myQR.renderImg ```

- +

--- @@ -197,7 +197,7 @@ myQR.renderImg("#1d2021","#98971a") ```

- +

`"#1d2021"` sets the "light" or "background" color. @@ -212,7 +212,7 @@ myQR.renderImg("#1d2021","#98971a",60) ```

- +

`60` sets the alignment patterns' roundness to 60%. @@ -226,7 +226,7 @@ myQR.renderImg("#1d2021","#98971a",100,100) ```

- +

The first `100` sets the alignment patterns' roundness to 100% @@ -241,7 +241,7 @@ myQR.renderImg("#1d2021","#98971a",100,100,25) ```

- +

The last `25` sets the module's separation to 25%. @@ -261,7 +261,7 @@ myQR.renderImg("#1d2021","#98971a",100,100,25,img=readImage("QRgen-logo.png")) ```

- +

`img` embeds an `Image` in the center of the generated QR code, @@ -278,7 +278,7 @@ Note that you can change the resolution of the generated image by setting ## Documentation -Check the [docs](https://aruzeta.github.io/QRgen/develop/QRgen.html) to +Check the [docs](https://aruzeta.github.io/QRgen/main/QRgen.html) to know more about the main API. ## More examples