Making a meme generator:
http://codepen.io/Teeke/pen/yJEaRY
The fonts are ragged on larger pictures. Any CSS font smoothing properties I use are rendered in the browser only, and do not save to the exported jpeg.
Font Styling is 58-63 in the JS:
ctxt.shadowColor = '#000';
ctxt.shadowOffsetX = 0;
ctxt.shadowOffsetY = 2;
ctxt.shadowBlur = 3;
ctxt.lineWidth = 2;
Are there any libraries or workarounds I could use? Could I apply a very low opacity greyscale or similar filter to the whole canvas? Javascript does not have as many font smoothing properties as CSS.