Image in a group?

hello

how can i add i image to a group? in my case “Gas”

sitemap:

Frame	label="Zählerstände"
	{
		Group item=Gas				label="Gas"				icon="gasuhr" 
		Group item=Strom			label="Strom"			icon="gasuhr"
	}

item;

// Gasuhr
Group Gas
Number Gaszaehler               "Zählerstand [%.1f m³]"         <gasuhr>            { http="<[http://192.168.1.15:60000:JSONPATH($.Wert)]"}
// Gasuhr Dummys
Number Gas_m3                   "Zählerstand [%.2f kWh]"        <gasuhr>    (Gas)
Number Gas_Verbrauch_Aktuell    "Verbrauch aktuell [%.0f W]"    <gasuhr>    (Gas)
Number Gas_Verbrauch_Tag        "Verbrauch heute [%.2f Wh]"     <gasuhr>    (Gas)
Number Gas_Kosten_Tag           "Kosten heute [%.2f €]"         <gasuhr>    (Gas)

now i want a image in my group.

this here isnt possible
item:

Image (Gas) url="http://192.168.1.2:3003/render/dashboard-solo/db/gaszaehler?from=now/d&to=now/d&theme=light&panelId=3&width=1000&height=500" refresh="10000"

and if i do that:
sitemap:

Frame	label="Zählerstände"
	{
		Group item=Gas				label="Gas"				icon="gasuhr"
		Image url="http://192.168.1.2:3003/render/dashboard-solo/db/gaszaehler?from=now/d&to=now/d&theme=light&panelId=3&width=1000&height=500" refresh=10000
		Group item=Strom			label="Strom"			icon="gasuhr"
	}

i ve the image on the mainscreen. but i want the image in the group-screen.

I am not aware that you can use an image as an item, but you can certainly use it in a sitemap:

https://docs.openhab.org/configuration/sitemaps.html#element-type-image

If you are using groups in your sitemap, you have no control over what is displayed (other than group membership) or the sequence in which the items from this group are displayed; if you want that level of control you have to make a frame and list all items from this group individually.