DmitrMakeev commited on
Commit
4913746
1 Parent(s): 2810d26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +37 -1
app.py CHANGED
@@ -60,7 +60,43 @@ with gr.Blocks(css=css) as myface:
60
  <h4>6. Для новых итерации изображения, выберите другую модель или снова нажмите кнопку "Сгенерировать Magic промт"</h4></div>
61
  """)
62
 
63
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  with gr.Row():
65
  with gr.Column(scale=50):
66
  input_text=gr.Textbox(label="Идея изображения:",lines=2)
 
60
  <h4>6. Для новых итерации изображения, выберите другую модель или снова нажмите кнопку "Сгенерировать Magic промт"</h4></div>
61
  """)
62
 
63
+ with gr.Tab("Tools"):
64
+ with gr.Tab("View"):
65
+ with gr.Row():
66
+ with gr.Column(style="width=50%, height=70%"):
67
+ gr.Pil(label="Crop")
68
+ with gr.Column(style="width=50%, height=70%"):
69
+ gr.Pil(label="Crop")
70
+
71
+
72
+ with gr.Tab("Draw"):
73
+ with gr.Column(style="width=50%, height=70%"):
74
+ gr.Pil(label="Crop")
75
+ with gr.Column(style="width=50%, height=70%"):
76
+ gr.Pil(label="Draw")
77
+
78
+
79
+ gr.ImagePaint(label="Draw")
80
+
81
+ with gr.Tab("Text"):
82
+ with gr.Row():
83
+
84
+ with gr.Column(scale=50):
85
+ gr.Textbox(label="", lines=8, interactive=True)
86
+
87
+
88
+ with gr.Column(scale=50):
89
+ gr.Textbox(label="", lines=8, interactive=True)
90
+
91
+ with gr.Tab("Color Picker"):
92
+ with gr.Row():
93
+
94
+ with gr.Column(scale=50):
95
+ gr.ColorPicker(label="Color", interactive=True)
96
+
97
+
98
+ with gr.Column(scale=50):
99
+ gr.ImagePaint(label="Draw", interactive=True)
100
  with gr.Row():
101
  with gr.Column(scale=50):
102
  input_text=gr.Textbox(label="Идея изображения:",lines=2)