Bitmap.getPngEncodedData improvements, PR #71

This commit is contained in:
Emux
2016-07-18 10:54:23 +03:00
parent 44b40608f6
commit a5679ce214
7 changed files with 61 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
/*
* Copyright 2013 Hannes Janetzek
* Copyright 2016 devemux86
*
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
*
@@ -99,4 +100,9 @@ public class GwtBitmap implements Bitmap {
return true;
}
@Override
public byte[] getPngEncodedData() {
// TODO
return null;
}
}

View File

@@ -55,6 +55,7 @@ public class GwtGdxGraphics extends CanvasAdapter {
@Override
public Bitmap decodeSvgBitmapImpl(InputStream in) {
// TODO
return null;
}