TitleMaker is easy Text-to-SVG tool for any Comic Thumbnails.
<dependency>
<groupId>kr.toongether.titlemaker</groupId>
<artifactId>titlemaker</artifactId>
<version>0.0.7</version>
</dependency>repositories {
mavenCentral()
}
dependencies {
implementation("kr.toongether.titlemaker:titlemaker:0.0.7")
}import kr.toongether.titlemaker.TitleMaker
import kr.toongether.titlemaker.Font
fun main() {
val titleMaker = TitleMaker(title="Hello World", font=Font.GANGWONEDUPOWER)
val svg = titleMaker.makeUnion(alignLeft=true)
}import kr.toongether.titlemaker.TitleMaker
import kr.toongether.titlemaker.Font
fun main() {
val titleMaker = TitleMaker(title="Hello World", font=Font.GANGWONEDUPOWER)
val svgs = titleMaker.makeSeparated()
}