Andrei Dobrescu
Andrei Dobrescu
I'm no expert, but as far as I researched, there is no standard Android SDK way to decode progressive JPEG. Standard Java has ImageIO API that supports it, however those...
hello, I am also interested in android compatibility. I want to modify this library, to replace awt with android specific code. 1. I can work on this repo on another...
@BobbyRuby hello, Sorry to dissapoint, but porting to android is a quite difficult task and needs some time. You can find awt references in many places. Classes like awt.Color, Point,...
@andreasrosdal @BobbyRuby Well, we could use [`windwardadmin/android-awt`](https://github.com/windwardadmin/android-awt) which is based on [appengine-awt](https://github.com/witwall/appengine-awt). I forked it into [`this repo - andob/android-awt`](https://github.com/andob/android-awt) and converted it to gradle. I tested with my old...
@andreasrosdal Yes. My repo contains java.awt.* and javax.imageio.* classes. You just have to import both libraries (OpenPDF and the one from my repo). When OpenPDF will try to access awt...
@andreasrosdal [done](https://github.com/LibrePDF/OpenPDF/wiki/Android-support)
@udittmer Please update ``android-awt`` to its latest version, ``1.0.1`` ``` implementation 'com.github.andob:android-awt:1.0.1' ``` And add these rules to your ``proguard-rules.pro`` file ``` -dontwarn org.bouncycastle.** -dontwarn java.lang.invoke.** ```
@udittmer well I couldn't replicate your exact error If I import ``OpenPDF`` and ``android-awt:1.0.0`` and then build with proguard I got the following errors:  There are some missing classes...
@andrelabonte Any new plans on development of this component? Right now the only fully featured data table view is implemented in [this third party library](https://github.com/evrencoskun/TableView).