(Element e, float[] vb, float w, float h,
SVGAnimatedPreserveAspectRatio aPAR, BridgeContext ctx) {
// 'preserveAspectRatio' attribute
try {
SVGPreserveAspectRatio pAR = aPAR.getAnimVal();
short align = pAR.getAlign();
boolean meet = pAR.getMeetOrSlice() ==
SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET;
return getPreserveAspectRatioTransform(vb, align, meet, w, h);
} catch (LiveAttributeException ex) {
throw new BridgeException(ctx, ex);
}