bemayr / young-carers-austria

Young Carers Austria App on behalf of the Austrian Social Ministry
https://www.young-carers-austria.at
MIT License
4 stars 1 forks source link

Improve Preview Image Handling #78

Open bemayr opened 2 years ago

bemayr commented 2 years ago

Problem Description

The current preview images does not resize the images accordingly and does not provide alt-text for a11y reasons.

Idea

Utilizing @11ty/eleventy-img we could automatically preprocess the images and extract the alt-text out of its exif data to generate a shape like:

[
  {
    imageUrl: "<url>",
    thumbnailUrl: "<url>",
    meta: "<meta text>"
  },
  {
    "//": "..."
  }
]

References