mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-26 14:05:34 +00:00
Fixed: Flash viewer - linear colorspace radial gradient
This commit is contained in:
@@ -14,6 +14,7 @@ All notable changes to this project will be documented in this file.
|
||||
- [#1660] Thumbnail view context menu Remove
|
||||
- SVG export - bitmap stroke style
|
||||
- Flash viewer - is visible flag
|
||||
- Flash viewer - linear colorspace radial gradient
|
||||
|
||||
## [14.2.1] - 2021-03-13
|
||||
### Added
|
||||
|
||||
@@ -290,7 +290,7 @@ public class BitmapExporter extends ShapeExporterBase {
|
||||
cm = MultipleGradientPaint.CycleMethod.REPEAT;
|
||||
}
|
||||
|
||||
fillPaint = new RadialGradientPaint(new java.awt.Point(0, 0), 16384, ratiosArr, colorsArr, cm);
|
||||
fillPaint = new RadialGradientPaint(new java.awt.Point(0, 0), 16384, new java.awt.Point(0, 0), ratiosArr, colorsArr, cm, cstype, new AffineTransform());
|
||||
fillTransform = matrix.toTransform();
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user