1513 blurhash

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

JSON

Inbox

Definition

Mastodon genera miniaturas de vista previa de colores para los archivos adjuntos. Esto se implementa utilizando una propiedad extra blurhash en los objetos Image. La propiedad es una cadena generada por el algoritmo BlurHash.
ver 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"
    }
  ]
}