@@ -29,7 +29,7 @@ Upload files with a single curl command from your terminal! `curl --upload-file
2929## Introduction
3030Simple QrCode is an easy to use wrapper for the popular Laravel framework based on the great work provided by [ Bacon/BaconQrCode] ( https://github.com/Bacon/BaconQrCode ) . We created an interface that is familiar and easy to install for Laravel users.
3131
32- ![ Example 1] ( ../ imgs/example-1.png) ![ Example 2] ( ../ imgs/example-2.png)
32+ ![ Example 1] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/example-1.png?raw=true ) ![ Example 2] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/example-2.png?raw=true )
3333
3434<a id =" docs-upgrade " ></a >
3535## Upgrade Guide
@@ -77,7 +77,7 @@ Using the QrCode Generator is very easy. The most basic syntax is:
7777
7878This will make a QrCode that says "Make me into a QrCode!"
7979
80- ![ Example QrCode] ( ../ imgs/make-me-into-a-qrcode.png)
80+ ![ Example QrCode] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/make-me-into-a-qrcode.png?raw=true )
8181
8282#### Generate ` (string $data, string $filename = null) `
8383
@@ -109,7 +109,7 @@ You can change the size of a QrCode by using the `size` method. Simply specify t
109109
110110 QrCode::size(100);
111111
112- ![ 200 Pixels] ( ../ imgs/200-pixels.png) ![ 250 Pixels] ( ../ imgs/250-pixels.png)
112+ ![ 200 Pixels] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/200-pixels.png?raw=true ) ![ 250 Pixels] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/250-pixels.png?raw=true )
113113
114114#### Color ` (int $red, int $green, int $blue, int $alpha = null) `
115115
@@ -120,7 +120,7 @@ All colors must be expressed in RGBA (Red Green Blue Alpha). You can change the
120120 QrCode::color(255, 0, 0); // Red QrCode
121121 QrCode::color(255, 0, 0, 25); //Red QrCode with 25% transparency
122122
123- ![ Red QrCode] ( ../ imgs/red-qrcode.png) ![ Red Transparent QrCode] ( ../ imgs/red-25-transparent.png)
123+ ![ Red QrCode] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/red-qrcode.png?raw=true ) ![ Red Transparent QrCode] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/red-25-transparent.png?raw=true )
124124
125125#### Background Color ` (int $red, int $green, int $blue, int $alpha = null) `
126126
@@ -129,7 +129,7 @@ You can change the background color of a QrCode by calling the `backgroundColor`
129129 QrCode::backgroundColor(255, 0, 0); // Red background QrCode
130130 QrCode::backgroundColor(255, 0, 0, 25); //Red background QrCode with 25% transparency
131131
132- ![ Red Background QrCode] ( ../ imgs/red-background.png) ![ Red Transparent Background QrCode] ( ../ imgs/red-25-transparent-background.png)
132+ ![ Red Background QrCode] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/red-background.png?raw=true ) ![ Red Transparent Background QrCode] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/red-25-transparent-background.png?raw=true )
133133
134134#### Gradient ` $startRed, $startGreen, $startBlue, $endRed, $endGreen, $endBlue, string $type) `
135135
@@ -139,21 +139,21 @@ The following gradient types are supported:
139139
140140| Type | Example |
141141| --- | --- |
142- | ` vertical ` | ![ Veritcal] ( ../ imgs/vertical.png) |
143- | ` horizontal ` | ![ Horizontal] ( ../ imgs/horizontal.png) |
144- | ` diagonal ` | ![ Diagonal] ( ../ imgs/diagonal.png) |
145- | ` inverse_diagonal ` | ![ Invrse Diagonal] ( ../ imgs/inverse_diagonal.png) |
146- | ` radial ` | ![ Radial] ( ../ imgs/radial.png) |
142+ | ` vertical ` | ![ Veritcal] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/vertical.png?raw=true ) |
143+ | ` horizontal ` | ![ Horizontal] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/horizontal.png?raw=true ) |
144+ | ` diagonal ` | ![ Diagonal] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/diagonal.png?raw=true ) |
145+ | ` inverse_diagonal ` | ![ Invrse Diagonal] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/inverse_diagonal.png?raw=true ) |
146+ | ` radial ` | ![ Radial] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/radial.png?raw=true ) |
147147
148148#### EyeColor ` (int $eyeNumber, int $innerRed, int $innerGreen, int $innerBlue, int $outterRed = 0, int $outterGreen = 0, int $outterBlue = 0) `
149149
150150You may change the eye colors by using the ` eyeColor ` method.
151151
152152| Eye Number | Example |
153153| --- | --- |
154- | ` 0 ` | ![ Eye 0] ( ../ imgs/eye-0.png) |
155- | ` 1 ` | ![ Eye 1] ( ../ imgs/eye-1.png) |
156- | ` 2 ` | ![ Eye 2] ( ../ imgs/eye-2.png) |
154+ | ` 0 ` | ![ Eye 0] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/eye-0.png?raw=true ) |
155+ | ` 1 ` | ![ Eye 1] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/eye-1.png?raw=true ) |
156+ | ` 2 ` | ![ Eye 2] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/eye-2.png?raw=true ) |
157157
158158
159159#### Style ` (string $style, float $size = 0.5) `
@@ -162,18 +162,18 @@ The style can be easily swapped out with `square.` `dot,` or `round.` This will
162162
163163| Style | Example |
164164| --- | --- |
165- | ` sqaure ` | ![ Sqaure] ( ../ imgs/200-pixels.png) |
166- | ` dot ` | ![ Dot] ( .. /imgs/dot.png) |
167- | ` round ` | ![ Round] ( ../ imgs/round.png) |
165+ | ` sqaure ` | ![ Sqaure] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/200-pixels.png?raw=true ) |
166+ | ` dot ` | ![ Dot] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs /imgs/dot.png) |
167+ | ` round ` | ![ Round] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/round.png?raw=true ) |
168168
169169#### Eye Style ` (string $style) `
170170
171171The eye within the QrCode supports two different styles, ` sqaure ` and ` circle. `
172172
173173| Style | Example |
174174| --- | --- |
175- | ` sqaure ` | ![ Sqaure] ( ../ imgs/200-pixels.png) |
176- | ` circle ` | ![ Circle] ( ../ imgs/circle-eye.png) |
175+ | ` sqaure ` | ![ Sqaure] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/200-pixels.png?raw=true ) |
176+ | ` circle ` | ![ Circle] ( https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/ imgs/circle-eye.png?raw=true ) |
177177
178178#### Margin ` (int $margin) `
179179
0 commit comments