Displaying one image object on every slide

I have a bunch of slides with images on them right now and an image object I want to display on every slide(without creating a new image object every time so that I can keep controlling it in my ts file). Is there any way to do this? I’e tried

  <ion-slides>
  <ion-slide *ngFor="let image of images" >
    <img <!----displays and transforms image-->
  </ion-slide>
  </ion-slides>
  <img id="overlayed" src="../imgs/overlayed.png"/>

but while that keeps the same image object, the image isn’t overlayed on the slides, but instead is below the slides. Is there any way for me to position this specific image so that it is in a specific pixel position on the slide without recreating such an image each time a slide is created?