diff --git a/components/it-standards/LifecyclePicture.tsx b/components/it-standards/LifecyclePicture.tsx
index aca78107a4f5ed5a5eedb377b1abd393f95d2857..d0f011eac2cd5c505f21297da7271af942edc451 100644
--- a/components/it-standards/LifecyclePicture.tsx
+++ b/components/it-standards/LifecyclePicture.tsx
@@ -4,6 +4,10 @@ import useImgPath from 'shared/use-img-path'
 
 const { getImgPath } = useImgPath()
 
+const imageLoader = ({ src, width, quality }) => {
+    return `${src}?w=${width}&q=${quality || 75}`
+}
+
 export default function LifecyclePicture(lifecyclephase:Tag) {
     /* beim tag 'status' soll das zugehĂśrige Lebenszyklus-Bild ausgegeben werden */
     const imagePath = `/img/standards/lifecycle/${lifecyclephase.value}.svg`
@@ -11,6 +15,7 @@ export default function LifecyclePicture(lifecyclephase:Tag) {
         <div className="border border-gray-300 rounded-lg overflow-hidden py-2">
             {/* Die Next.js Image-Komponente verwendet das "src" Attribut */}
             <Image
+                loader={imageLoader}
                 src={getImgPath(imagePath)}
                 alt={`Bild fĂźr Tag ${lifecyclephase.value}`}
                 width={500} // Breite des Bildes