+ screen = Screen((620, 350))
+
+ font = pygame.font.Font(None, 25)
+ instructions = ["Imago manual mode", "",
+ "To set the grid position, click on the corners of the grid. Once you mark",
+ "all four corners, the grid will appear. To adjust it, just click on the new",
+ "position and the nearest corner will move there. Once you are content",
+ "with the alignment, press any key on your keyboard or close the window.",
+ "", "", "",
+ "Press any key to continue."]
+ y = 10
+ for i in instructions:
+ text1 = font.render(i, True, [128, 255, 128])
+ screen._screen.blit(text1, [10, y])
+ y += 25
+
+ pygame.display.flip()
+
+ display_instr()
+
+ pygame.display.set_mode(im.size)