vote up 4 vote down star
1

I'm looking for a Windows library that can draw musical notes on the screen in some way. I'm going to use it to write an app in C#, but a pure Win32-based solution is good enough. Does anybody know of any such library?

Edit: I'm going to update the notes in real-time, and they need not look incredibly fancy.

flag

64% accept rate

3 Answers

vote up 5 vote down check

You will definitely want to look into Lilypond, widely acknowledged as the best choice for musical typesetting. It's open-source and has all kinds of output formats, and is highly scriptable. It would be pretty easy to write your own C# wrapper around it. Example output:

link|flag
Looks nice, but it seems incredibly complex. I guess generating a C# wrapper around it would mean generating a description file, invoking lilypond, and then draw the results. If nothing better shows up, I might do this. – erikkallen Mar 22 at 13:15
Try asking the lilypond-user mailing list. They can probably help you with more specific advice. lists.gnu.org/mailman/listinfo/… – John Feminella Mar 22 at 13:20
LilyPond is indeed well scriptable, but is definitely not real time (also it IS incredibly fancy :)). – thSoft May 8 at 8:29
vote up 1 vote down

Use MusicXML. There is C++ binding.

Rosegarden can export MusicXML to PDF or PS.

link|flag
vote up 0 vote down

You can try to extract relevant code from Rosegarden, although it's very Qt-specific.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.