
On Tue, 2014-02-11 at 14:12 +0100, su_v wrote:
On 2014-02-11 12:49 +0100, Tavmjong Bah wrote:
On Tue, 2014-02-11 at 03:02 +0100, su_v wrote:
On 2014-02-06 15:44 +0100, Tavmjong Bah wrote:
While mucking about the code I noticed that the same basic code to handle viewBox and preserveAspectRatio appeared in multiple files (8 times?) having originally been pasted directly or copied with some changes. Overtime the code was tweaked here and there.
I have created a new base class to handle viewBox and preserveAspectRatio and modified sp-root, sp-symbol, sp-image, sp-pattern, and marker to use the new class, resulting in a reduction of over 400 lines of code (yeah!). In the process, I've fixed a number of issues with using percentage based x, y, width, and height values.
Please let me know if you find any problems.
Stretched or squeezed bitmap images now (rev >= 13002) render according to the SVG 1.1 spec, but not to how Inkscape users expect it: the bounding box matches the expected dimensions, but the image itself appears to be displayed with 'preserveAspectRatio="xMidYMid"' (default for images in SVG 1.1 if 'preserveAspectRatio' is not specified).
Steps to reproduce:
- launch current trunk (rev >= 13002)
- import bitmap image (embed or link, doesn't matter)
- stretch the image horizontally or vertically by dragging one of the
scale handles 4) release the mouse button
Expected result in Inkscape: The embedded or linked bitmap image is scaled to match the new dimensions.
Actual result with rev >= 13002: The bounding box of the selected image has the expected dimensions, but the actual image content reverts to a preserved aspect ratio, as large as fits into the transformed bbox.
Related reports about the old (non-conformant) behavior:
- Bug #924377 “wrong default value for image preserveAspectRatio” https://bugs.launchpad.net/inkscape/+bug/924377
- Bug #461467 in Inkscape: “Image scale saved incorrectly” https://bugs.launchpad.net/inkscape/+bug/461467
- Bug #616717 “Resized bitmap images are rendered differently by Firefox
or Batik ('preserveAspectRatio' attribute not set)” https://bugs.launchpad.net/inkscape/+bug/616717
I've set 'preserveAspectRatio' to 'none' in importing an image, r13020.
If compatibility with old Inkscape files is important, we could set 'preserveAspectRatio' to 'none' on opening a file (if it is not already set). This would break non-Inkscape generated files.
Bitmap images in PDF files don't render correctly if they are non-uniformly scaled - they don't have the attribute 'preserveAspectRatio="none"' added either (confirmed with r13020).
Tested among others with sample PDF file from (duplicate) report
- Bug #878984 “pdf import problem” https://bugs.launchpad.net/inkscape/+bug/878984 https://launchpadlibrarian.net/83376324/example.pdf
'preserveAspectRatio' is now set to 'none'; r13023.
There is a transformation matrix defined in the code but it just flips the y-axis.
Tav