diff options
| author | Yuki Hoshino <hoshiyuki1964@gmail.com> | 2018-08-08 13:50:59 +0000 |
|---|---|---|
| committer | Yuki Hoshino <hoshiyuki1964@gmail.com> | 2018-08-30 11:31:02 +0000 |
| commit | baebd77a5c5f942120cdc14880b08f0363c46964 (patch) | |
| tree | fbb27570ab3f4a5fcface41d081668cadf7d668a /src/display/drawing-image.cpp | |
| parent | fix for comment https://gitlab.com/inkscape/inkscape/commit/a12d0aecffa31fa7b... (diff) | |
| download | inkscape-baebd77a5c5f942120cdc14880b08f0363c46964.tar.gz inkscape-baebd77a5c5f942120cdc14880b08f0363c46964.zip | |
Fix bug #167900
https://bugs.launchpad.net/inkscape/+bug/167900
- Tiled imported bitmap textures have errors, also exported
By the default extend mode CAIRO_EXTEND_NONE,
draw white on a pattern image edge with CAIRO_FILTER_GOOD.
Draw an image with CAIRO_EXTEND_PAD.
Diffstat (limited to 'src/display/drawing-image.cpp')
| -rw-r--r-- | src/display/drawing-image.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/display/drawing-image.cpp b/src/display/drawing-image.cpp index 2a3777e36..3d3a54bd3 100644 --- a/src/display/drawing-image.cpp +++ b/src/display/drawing-image.cpp @@ -111,6 +111,7 @@ unsigned DrawingImage::_renderItem(DrawingContext &dc, Geom::IntRect const &/*ar dc.translate(_origin); dc.scale(_scale); dc.setSource(_pixbuf->getSurfaceRaw(), 0, 0); + dc.patternSetExtend(CAIRO_EXTEND_PAD); if (_style) { // See: http://www.w3.org/TR/SVG/painting.html#ImageRenderingProperty |
