()
| 4 | |
| 5 | |
| 6 | def input_par(): |
| 7 | print("Enter the text to insert in image: ") |
| 8 | text = str(input()) |
| 9 | print("Enter the desired size of the text: ") |
| 10 | size = int(input()) |
| 11 | print("Enter the color for the text(r, g, b): ") |
| 12 | color_value = [int(i) for i in input().split(" ")] |
| 13 | return text, size, color_value |
| 14 | pass |
| 15 | |
| 16 | |
| 17 | def main(): |