The Version table provides details related to the release that this issue/RFE will be addressed.
Unresolved : Release in which this issue/RFE will be addressed. Resolved: Release in which this issue/RFE has been resolved. Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.
Canvas Text implementation requires some work
- Implement maxWidth
- Alignment does not work with transformed text
- Incorrect default font
- Transformation has no affect on text
- Transformation does not affect text bounds
Comments
verified in b13
21-06-2012
Screenshot of toys canvastest.CanvasTextAlign with provided patch. Showing text transformation, maxWidth, and alignment.
Implemented maxWidth scale
now graphicsContext.fillText(text, x, y, maxWidth);
will scale text along x so that it does not exceed maxWidth.
11-05-2012
The default font chosen is the FX Font.getDefault() not the HTML Canvas spec, which uses 10px sans-serif as default. Since we want FX experience over HTML Canvas (See Jasper)