1513 blurhash

https://w3id.org/class/redaktor/blurhash

JSON

Inbox

Definition

Mastodon génère des vignettes de prévisualisation colorées pour les pièces jointes. Ceci est mis en œuvre en utilisant une propriété supplémentaire blurhash sur les objets Image. Cette propriété est une chaîne de caractères générée par l'algorithme BlurHash.
voir mastodon documentation

Scope Note

ActivityPub Community

Example

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "toot": "http://joinmastodon.org/ns#",
      "blurhash": ":blurhash"
    }
  ],

  "id": "https://example.com/@alice/hello-world",
  "type": "Note",
  "content": "A picture attached!",
  "attachment": [
    {
      "type": "Image",
      "mediaType": "image/png",
      "url": "https://example.com/files/cats.png",
      "blurhash": "UBL_:rOpGG-oBUNG,qRj2so|=eE1w^n4S5NH"
    }
  ]
}