Following two lines of SVG code produce the same output:
<rect x="-172" y="270" width="154" height="137" rx="14" ry="14" transform="rotate(-90)" />
<rect x="270" y="18" width="137" height="154" rx="14" ry="14" />
I think, in this particular case (90 degree rotation) a conversion could be performed easily, in theory.
Can InkScape recalculate one into another in this particular case?
Following question Removing transforms in SVG files covers automatic removal of transform="translate()"
, but it doesn't work for transform="rotate()"
.