Is there any way to create and display music notation inside of a codenameone app?

72 Views Asked by At

Is there any way to create and display music notation inside of a codenameone app?

For Java generally there are some libraries like for example JFugue that let you write music inside a program. Maybe also display it, i didn't try that out.

There is lilypond, which would work in a desktop environment if you were able to run it to make the pdf after generating the file itself.

I wrote a small app in Android Studio and had to write my own music notation logic and drew it with the help of png files on a Canvas. That worked okay for small musical examples of a clef and around 2-7 notes.

Now i want to do something similar in Codenameone and display at least a clef and some notes inside the app (maybe as an image) - they have to be generated with some random element while the program runs.

It would also be great to be able to write and show more than a few notes, displaying it somehow and maybe also with the ability to have it as a pdf file later.

Is it possible to use something that already exists?

Thanks a lot!

0

There are 0 best solutions below