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

@ -2,7 +2,7 @@ apply plugin: 'java'
repositories{
mavenCentral()
}
def releaseVersion = "0.5.9"
def releaseVersion = "0.5.10"
def propertyFile = file "src/main/java/w2phtml/project.properties"
Properties properties = new Properties()
propertyFile.withReader { properties.load(it) }
@ -40,6 +40,7 @@ jar {
}
from('src/main/java') {
include '**/*.properties'
include '**/*.rdf'
include '**/*.xml'
exclude '**/*Test.class'
exclude '**/AllTests.class'

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;
}