struct ContentView: View {
   var body: some View {
      Canvas { context, size in
         let imageFrame = CGRect(x: 160, y: 150, width: 161, height: 216)
         context.draw(Image("spot1"), in: imageFrame)
         
         context.rotate(by: .degrees(20))
         context.draw(Image("spot1"), in: imageFrame)
      }.ignoresSafeArea()
   }
}