mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-13 12:18:26 +00:00
Fixed: PDF export - not rendering video stream frames
This commit is contained in:
@@ -15,6 +15,7 @@ All notable changes to this project will be documented in this file.
|
||||
- AS3 local registers type propagation
|
||||
- [#2566] Export bounds of sprites and buttons not containg filter offsets
|
||||
- [#2582] Font normalizer setting small texts when no assigned glyph found
|
||||
- PDF export - not rendering video stream frames
|
||||
|
||||
### Changed
|
||||
- [#2575] dumpSWF CLI command only allows single SWF dump (no imports, etc.)
|
||||
|
||||
@@ -404,7 +404,7 @@ public class DefineVideoStreamTag extends DrawableTag implements BoundedTag, Tim
|
||||
return;
|
||||
}
|
||||
//System.out.println("drawed");
|
||||
Graphics2D graphics = (Graphics2D) image.getBufferedImage().getGraphics();
|
||||
Graphics2D graphics = (Graphics2D) image.getGraphics();
|
||||
AffineTransform at = transformation.toTransform();
|
||||
at.preConcatenate(AffineTransform.getScaleInstance(1 / SWF.unitDivisor, 1 / SWF.unitDivisor));
|
||||
graphics.setTransform(at);
|
||||
|
||||
Reference in New Issue
Block a user