mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-29 03:37:37 +00:00
Fixed #1839 Sprite frames exported incorrectly and repeating
This commit is contained in:
@@ -446,7 +446,7 @@ public class FrameExporter {
|
||||
}
|
||||
|
||||
int fframe = fframes.get(pos++);
|
||||
BufferedImage result = SWF.frameToImageGet(tim, fframe, fframe, null, 0, tim.displayRect, new Matrix(), null, fusesTransparency ? null : fbackgroundColor, settings.zoom).getBufferedImage();
|
||||
BufferedImage result = SWF.frameToImageGet(tim, fframe, 0, null, 0, tim.displayRect, new Matrix(), null, fusesTransparency ? null : fbackgroundColor, settings.zoom).getBufferedImage();
|
||||
|
||||
if (evl != null) {
|
||||
evl.handleExportedEvent("frame", pos, fframes.size(), tagName);
|
||||
@@ -588,7 +588,6 @@ public class FrameExporter {
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
private static void drawText(float x, float y, Matrix trans, int textColor, Map<Integer, Font> existingFonts, FontTag font, String text, int textHeight, Graphics g) {
|
||||
int fontId = font.getFontId();
|
||||
PDFGraphics g2 = (PDFGraphics) g;
|
||||
|
||||
Reference in New Issue
Block a user