Results 4 comments of Hotkey

Fix ImageEditorModule.java ```java import java.io.ByteArrayInputStream; import java.util.Base64; ... private InputStream openBitmapInputStream() throws IOException { InputStream stream; if(mUri.startsWith("data:")) { Base64.Decoder decoder = Base64.getMimeDecoder(); stream = new ByteArrayInputStream(decoder.decode(mUri.substring(mUri.indexOf(",") + 1))); } else...

I found a typo in error bypass command plat => plaf ```java -jar -Dswing.defaultlaf=javax.swing.plaf.nimbus.NimbusLookAndFeel snowflake-v1.0.4.jar``` to bypass this error.

It wouldn't be an issue to iterate through the `.godot/imported` directory and use regex to find .pxo files. However, as this is my first time writing a Godot plugin, I...

I've created a PR to resolve this issue #15 As it's not merged yet, you can use this repo if you need it immediately: [Hot-key/godot_pixelorama_importer](https://github.com/Hot-key/godot_pixelorama_importer/tree/feature/export_image)