Reputation: 10310
Is there a way to render graphical objects in console using standard jdk API?
For instance I want to render moving image in console (not via awt/swing).
Upvotes: 1
Views: 582
Reputation: 168825
The console itself can only render characters..
But if you mean you want to render an image from a command line app. (that is later displayed in other apps.) then yes, though the 'moving' part does not make much sense unless you mean an animated GIF.
Upvotes: 1
Reputation: 317
No you cannot. The console renders characters so ASCII-art is your best choice. Also this has been answered before: displaying-images-in-a-console-application
Upvotes: 0