Issue #311 FLA Export BitmapFill fix

This commit is contained in:
Jindra Petk
2013-08-24 16:01:43 +02:00
parent eb07a8b93a
commit d7071d003a

View File

@@ -296,6 +296,11 @@ public class XFLConverter {
if (bitmapCh instanceof ImageTag) {
ImageTag it = (ImageTag) bitmapCh;
ret += "bitmap" + bitmapCh.getCharacterId() + "." + it.getImageFormat();
}else{
if(bitmapCh!=null){
Logger.getLogger(XFLConverter.class.getName()).log(Level.SEVERE, "Suspicious bitmapfill:"+bitmapCh.getClass().getSimpleName());
}
return "<SolidColor color=\"#ffffff\" />";
}
ret += "\"";