Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.
Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
Extend abcm2ps to support direct generation of PNG, SVG and PDF files
abcCairo is a project to create a Cairo backend for abcm2ps, enabling it to generate output in the formats supported by the Cairo library; PNG, SVG and PDF.
abcm2ps is a command line program written by Jean-François Moine which
converts abc music notation to music sheet in PostScript or SVG format.
It is an extension of Michael Methfessel's abc2ps. This project takes out
the PostScript commands to generate various musical symbols and instead
replaces them with Cairo function calls...
Nearly everytime I developed something on an embedded device I came to the point where I needed a simple 1-bit Bitmap to integrate some symbols. The Problem was that everytime I had to write my images by hand like:
0b0000000
0b0001000
0b0010100
0b0100010
0b1000001
And then i came to the point the images were larger than this example, say 32*32 or more. And thats a torture.
And that's the reason I started this project.
It's a simple and small command line application which let you...