Skip to content

Commit 671c0c5

Browse files
feat(ecl-auto): Fixes
1 parent 5e84a62 commit 671c0c5

File tree

1 file changed

+1
-2
lines changed
  • examples/spring-web/src/main/kotlin/io/github/g0dkar/qrcode/springWebExample

1 file changed

+1
-2
lines changed

examples/spring-web/src/main/kotlin/io/github/g0dkar/qrcode/springWebExample/QRCodeController.kt

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ class QRCodeController(
2626
* @param shape Shape of each element of the QRCode. Default: `square`. See [QRCodeShapesEnum].
2727
* @param spacing How many pixels between each cell. Default: 1 for `square`, 5% of the radius for the others.
2828
* @param ecl Error Correction Level. Default: `medium`. See [ErrorCorrectionLevel].
29-
* @param informationDensity **GET param: `id`** - Information Density. Higher values means you can encode more data. Default: minimum of 6, actual value is computed from data + ecl.
30-
* @param forceInformationDensity **GET param: `fid`** - Force the use of the Information Density parameter. Default: `false`, meaning that the `id` parameter will be used as the minimum information density level.
29+
* @param informationDensity **GET param: `id`** - Information Density. Higher values means you can encode more data. Default: 0 (meaning the actual value is computed from data + ecl by the library itself).
3130
* @param fileName File name to use for the downloaded file (applicable only for Web Browsers). Default: `qrcode` (which means the file will be called `qrcode.png`)
3231
*/
3332
@GetMapping("/qrcode", produces = [IMAGE_PNG_VALUE])

0 commit comments

Comments
 (0)