#969 fixed rendering of SVG with viewbox offset

This commit is contained in:
Thibault Deckers 2024-04-08 21:45:14 +02:00
parent 9e806bc5ee
commit e9b86f9d77
2 changed files with 5 additions and 0 deletions

View file

@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
## <a id="v1.10.8"></a>[v1.10.8] - 2024-04-01 ## <a id="v1.10.8"></a>[v1.10.8] - 2024-04-01
### Fixed
- rendering of SVG with viewbox offset
### Added ### Added
- Collection: support for Fairphone burst pattern - Collection: support for Fairphone burst pattern

View file

@ -82,6 +82,7 @@ class SvgRegionFetcher internal constructor(
(regionRect.right + bleedX) / xf, (regionRect.right + bleedX) / xf,
(regionRect.bottom + bleedY) / yf, (regionRect.bottom + bleedY) / yf,
) )
effectiveRect.offset(viewBox.left, viewBox.top)
val renderOptions = RenderOptions() val renderOptions = RenderOptions()
renderOptions.viewBox(effectiveRect.left, effectiveRect.top, effectiveRect.width(), effectiveRect.height()) renderOptions.viewBox(effectiveRect.left, effectiveRect.top, effectiveRect.width(), effectiveRect.height())