You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/README.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ use SimpleSoftwareIO\QrCode\Facades\QrCode;
38
38
39
39
Run `composer require simplesoftwareio/simple-qrcode "~4"` to add the package.
40
40
41
-
Laravel will automiatcally pick up and install the package.
41
+
Laravel will automatically pick up and install the package.
42
42
43
43
<aid="docs-ideas"></a>
44
44
## Simple Ideas
@@ -96,7 +96,7 @@ The `generate` method has a second parameter that will accept a filename and pat
96
96
97
97
#### Format `(string $format)`
98
98
99
-
Three formats are currently supported; `png,``eps,` and `svg.` To change the format use the following code:
99
+
Three formats are currently supported; `png,``eps,` and `svg`. To change the format use the following code:
100
100
101
101
QrCode::format('png'); //Will return a png image
102
102
QrCode::format('eps'); //Will return a eps image
@@ -159,21 +159,21 @@ You may change the eye colors by using the `eyeColor` method.
159
159
160
160
#### Style `(string $style, float $size = 0.5)`
161
161
162
-
The style can be easily swapped out with `square.``dot,` or `round.` This will change the blocks within the QrCode. The second parameter will affect the size of the dots or roundness.
162
+
The style can be easily swapped out with `square`,`dot,` or `round`. This will change the blocks within the QrCode. The second parameter will affect the size of the dots or roundness.
@@ -201,7 +201,9 @@ The following are supported options for the `errorCorrection` method:
201
201
202
202
#### Encoding `(string $encoding)`
203
203
204
-
Change the character encoding that is used to build a QrCode. By default `ISO-8859-1` is selected as the encoder. Read more about [character encoding](http://en.wikipedia.org/wiki/Character_encoding) You can change this to any of the following:
204
+
Change the character encoding that is used to build a QrCode. By default `ISO-8859-1` is selected as the encoder. Read more about [character encoding](http://en.wikipedia.org/wiki/Character_encoding).
205
+
206
+
You can change this to any of the following:
205
207
206
208
QrCode::encoding('UTF-8')->generate('Make me a QrCode with special symbols ♠♥!!');
207
209
@@ -346,7 +348,7 @@ This helper makes SMS messages that can be prefilled with the send to address an
346
348
347
349
#### WiFi
348
350
349
-
This helpers makes scannable QrCodes that can connect a phone to a WiFI network:
351
+
This helpers makes scannable QrCodes that can connect a phone to a WiFi network:
350
352
351
353
QrCode::wiFi([
352
354
'encryption' => 'WPA/WEP',
@@ -366,7 +368,7 @@ This helpers makes scannable QrCodes that can connect a phone to a WiFI network:
0 commit comments