Fix for images export

This commit is contained in:
Georgy Litvinov 2020-05-20 17:05:40 +02:00
parent 53abcf9ecd
commit 546036a78b
2 changed files with 3 additions and 1 deletions

View file

@ -72,6 +72,7 @@ public class BinaryGraphicsDocument implements OutputFile {
public BinaryGraphicsDocument(BinaryGraphicsDocument bgd) {
this.sFileName = bgd.getFileName();
this.sMimeType = bgd.getMIMEType();
this.blob = bgd.getData();
this.bAcceptedFormat = bgd.isAcceptedFormat();
this.bRecycled = true;
}