Flamedek

Results 4 comments of Flamedek

I solved my issue by manually translating the path to use only line-to commands. > original size=100: > M12,18 l10,0 l0,61 l20,0 l0,-20 l20,0 l0,20 l-10,0 l20,15 l20,-15 l-10,0 l0,-61...

There are some pull requests to add this functionality to the project but as it stands they are not 100% robust. The url has to be downloaded and saved to...

You'll probably have to render the pages to intermediate Bitmaps then combine to a single image.

for a file Uri ``` java Uri.fromFile(new File(path)); ``` or for a content Uri (read up on FileProviders and configure appropriately) ``` java FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID, new File(path)); ```