Thanks Thomas, it works.
This is my code:
private JSVGCanvas canvas = new JSVGCanvas() {
@Override
public void setRenderingTransform(AffineTransform at) {
if (at.getDeterminant() < ZOOM_IN_LIMIT) {
// Applies the new zoom level
setRenderingTransform(at, true);
} else {
// Redraws the last zoom level
scheduleGVTRendering();
}
}
};
--
View this message in context:
http://old.nabble.com/Zoom-In-Limit-tp27933984p28000013.html
Sent from the Batik - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]