diff --git a/pixie.nimble b/pixie.nimble index 85a8301..0da9a12 100644 --- a/pixie.nimble +++ b/pixie.nimble @@ -1,4 +1,4 @@ -version = "3.1.1" +version = "3.1.2" author = "Andre von Houck and Ryan Oldenburg" description = "Full-featured 2d graphics library for Nim." license = "MIT" diff --git a/src/pixie/paths.nim b/src/pixie/paths.nim index 1e37fbe..34b745b 100644 --- a/src/pixie/paths.nim +++ b/src/pixie/paths.nim @@ -1601,11 +1601,16 @@ proc fillShapes( bounds = computeBounds(segments).snapToPixels() startX = max(0, bounds.x.int) startY = max(0, bounds.y.int) + pathWidth = + if startX < image.width: + min(bounds.w.int, image.width - startX) + else: + 0 pathHeight = min(image.height, (bounds.y + bounds.h).int) partitioning = partitionSegments(segments, startY, pathHeight - startY) var - coverages = newSeq[uint8](bounds.w.int) + coverages = newSeq[uint8](pathWidth) hits = newSeq[(float32, int16)](partitioning.maxEntryCount) numHits: int aa: bool @@ -1659,11 +1664,16 @@ proc fillShapes( bounds = computeBounds(segments).snapToPixels() startX = max(0, bounds.x.int) startY = max(0, bounds.y.int) + pathWidth = + if startX < mask.width: + min(bounds.w.int, mask.width - startX) + else: + 0 pathHeight = min(mask.height, (bounds.y + bounds.h).int) partitioning = partitionSegments(segments, startY, pathHeight) var - coverages = newSeq[uint8](bounds.w.int) + coverages = newSeq[uint8](pathWidth) hits = newSeq[(float32, int16)](partitioning.maxEntryCount) numHits: int aa: bool diff --git a/tests/paths/path0pxCover.png b/tests/paths/path0pxCover.png new file mode 100644 index 0000000..f95358d Binary files /dev/null and b/tests/paths/path0pxCover.png differ diff --git a/tests/paths/path1pxCover.png b/tests/paths/path1pxCover.png new file mode 100644 index 0000000..49a575c Binary files /dev/null and b/tests/paths/path1pxCover.png differ diff --git a/tests/paths/pathStroke1Big.png b/tests/paths/pathStroke1Big.png new file mode 100644 index 0000000..a77d43e Binary files /dev/null and b/tests/paths/pathStroke1Big.png differ diff --git a/tests/paths/pathStroke1BigMask.png b/tests/paths/pathStroke1BigMask.png new file mode 100644 index 0000000..a4b62d4 Binary files /dev/null and b/tests/paths/pathStroke1BigMask.png differ diff --git a/tests/test_paths.nim b/tests/test_paths.nim index 8c81a5a..e6ee881 100644 --- a/tests/test_paths.nim +++ b/tests/test_paths.nim @@ -634,3 +634,34 @@ block: image.strokePath(path, paint, strokeWidth = 10) image.writeFile("tests/paths/opacityStroke.png") + +block: + let + image = newImage(100, 100) + pathStr = "M0 0 L200 200" + color = rgba(255, 0, 0, 255) + image.strokePath(pathStr, color, strokeWidth = 10) + image.writeFile("tests/paths/pathStroke1Big.png") + +block: + let + image = newMask(100, 100) + pathStr = "M0 0 L200 200" + image.strokePath(pathStr, strokeWidth = 10) + image.writeFile("tests/paths/pathStroke1BigMask.png") + +block: + let + image = newImage(100, 100) + pathStr = "M99 99 L999 99 L999 100 L99 100 Z" + color = rgba(255, 0, 0, 255) + image.fillPath(pathStr, color) + image.writeFile("tests/paths/path1pxCover.png") + +block: + let + image = newImage(100, 100) + pathStr = "M100 100 L999 100 L999 101 L100 101 Z" + color = rgba(255, 0, 0, 255) + image.fillPath(pathStr, color) + image.writeFile("tests/paths/path0pxCover.png")