@webtricks do you think that making an embeddable HTML5 card with post/merit/activity count and rank/DT status where you can just fill in a user ID to render it is doable? I don't think there's much work involved besides setting up a domain and an API which people can call to get base64 image data. The cards can even be plain and simple without decorations if that makes it easier, I don't mind.
Yeah! This is certainly possible to do so. You can create HTTP request with username in API call, server can create card in real time and send back base64 image data as response.
Rendering image in HTML webpage is also possible. I am doing this in my
Bitcointalk Face-off Game. First cards are created on server side using PHP which is then rendered in front-end. Alternatively, you can go for HTML5 card creation too. The work flow for that would be, first server will fetch the data then javascript will create HTML5 card in front-end using the data.
Just to confirm if I understood it correctly, what do you mean by 'embeddable'?
- image that can be shown in html page using
tag, or
- image to be shown in html page immediately after creation, or
-