From cec1b19aefc47a0e1163a7402295fee7b7533829 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Mon, 13 Nov 2023 19:43:45 -0500 Subject: Verovio: Make it try to put the whole score into a single SVG --- main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.c b/main.c index d8f8a4d..ac26c07 100644 --- a/main.c +++ b/main.c @@ -29,6 +29,10 @@ static void set_file (GFile *file, gpointer data) { if (read == 0) return; vrvToolkit_loadData(pointer, buf); + // Try to put all of the content on the first page. + //--page-height 50000 + //--adjust-page-height + vrvToolkit_setOptions(pointer, "{\"pageHeight\": 50000, \"adjustPageHeight\": true}"); output = vrvToolkit_renderToSVG(pointer, 1, TRUE); if(output[0] == '\0') return; -- cgit 1.4.1