Skip to content

Commit

Permalink
Prepare for the release
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Scholz committed Dec 4, 2023
1 parent 451b8a6 commit e628049
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.adoc
Expand Up @@ -201,12 +201,12 @@ fun main() {
val qrCodeApi = QrCodeFactory.createQrCodeApi()
QrCodeConfig.Builder("https://simonscholz.github.io/")
.qrCodeDotShape(QrCodeDotShape.HEART)
.qrCodeDotStyler(QrCodeDotShape.STAR)
.qrCodeSize(800)
.build()
.run {
qrCodeApi.createQrCodeImage(this)
.toFile(File(qrCodeDir, "/qr-with-HEART-dots-kotlin.png"))
.toFile(File(qrCodeDir, "/qr-with-STAR-dots-kotlin.png"))
}
}
----
Expand Down Expand Up @@ -253,6 +253,8 @@ fun main() {
}
----

Besides just drawing a logo with the `Graphics2D` object, you can also draw whatever you want.

For more advanced examples and Java usage, please have a look at the `kotlin-sample` or `java-sample` modules.

=== Types
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
@@ -1,6 +1,6 @@
GROUP=io.github.simonscholz
POM_ARTIFACT_ID=qr-code-with-logo
VERSION_NAME=0.4.0-SNAPSHOT
VERSION_NAME=0.3.0

POM_NAME=QR Code with logo
POM_DESCRIPTION=Customizable qr code generatation with different colors and shapes and logos using awt
Expand Down

0 comments on commit e628049

Please sign in to comment.