1513 blurhash

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

JSON

Inbox

Definition

Mastodon erzeugt farbig-verlaufende Vorschaubilder für Anhänge. Dies wird durch die zusätzliche Eigenschaft blurhash bei Image-Objekten realisiert. Die Eigenschaft ist eine Zeichenkette, die durch den BlurHash-Algorithmus erzeugt wird.
siehe 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"
    }
  ]
}