From b459f3cef2db17442f9ea484aac70bdef623ea2a Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sat, 8 Nov 2014 09:25:38 +0100 Subject: [PATCH] negative thickness fixed --- .../jpexs/decompiler/flash/exporters/shape/BitmapExporter.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java index 471d444da..d5f69467f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java @@ -374,9 +374,8 @@ public class BitmapExporter extends ShapeExporterBase { break; } - // todo: negative width??? (wordctr1.swf) if (thickness < 0) { - thickness = 0; + thickness = -thickness; } if (joinStyle == BasicStroke.JOIN_MITER) {