I want it to draw on my Andoird tablet, and send the canvas’s content in real-time(if possible) to a 3D software on my PC. My first idea was to write a Krita script that sends the drawing as a byte array to my PC via Python’s sockets API. However, it turns out that the Android version is not capable of running Python scripts.
My next idea is to write a small Android app, which checks if a file gets modified (In this case if a file is overwritten because it’s re-exported), and if so, send it to the software with the same method. This will probably work, but with this approach, I need to give up the real-time update.
Is there any better approach to solving this problem?