-
Notifications
You must be signed in to change notification settings - Fork 375
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
r/demo/profile standard for Avatar image #2598
Comments
Great proposal.
|
Let's please try to avoid having image content directly stored on Gno.land as data. Some people will do it (there is no inherent limitation, as you point out), but it is (1) a poor use of the blockchain's space and (2) prone to abuse. So we should incentivize storing data elsewhere. I like @iuricmp's proposal. However, for ipfs, I'm more tempted to support the ipfs:// schema instead, though. IMO
as schemas for avatars. |
@iuricmp IPFS addresses have a strict string encoding, we don't need to specify the encoding of the cid I believe having the mime type of the data is nice though since this is not stored at ipfs level, only the content bytes, if the mime type is not included, we have to run magic analysis on the data I would vote for a data uri scheme with an extension like so
for example:
but supporting only |
PR #1983 introduced r/demo/profile with many fields including string field
Avatar
for the user's image. The great thing about r/demo/profile is that many Gno.land apps can use it. Maybe a user first adds their avatar from a different app. Now the user joins the app I developed and it needs to display their image. But how to interpret the string field? r/demo/profile should provide a recommendation for how to use theAvatar
field.Here are two options. We can discuss other options in this issue.
AvatarMimeType
where the value is something like "image/png" or "image/jpeg". TheAvatar
field is simply the base64 encoding of the image. (This is preferred by the Berty team since it is more clear and doesn't require parsing the Avatar field.)Avatar
field to suggest that the format should use the data URI scheme, such as"data:image/jpeg;base64,9loflYe3agChS5pK"
. (This is a fallback if you don't like adding a new field as in option 1.)The text was updated successfully, but these errors were encountered: