SemanticTypography commited on
Commit
9c15805
·
verified ·
1 Parent(s): 29c2411

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -245,7 +245,7 @@ def run_main_app(semantic_concept, word, letter, font_name, num_steps, example=0
245
  with open(image, "r") as f1:
246
  svg_content_final = f1.read()
247
 
248
- yield gr.update(value=f"<div>{svg_content_init}</div>",label="Initial Word",height=333,visible=True),gr.update(visible=False),gr.update(value=f"<div>{svg_content_final}</div>",label="Final Result",height=333,visible=True)
249
 
250
 
251
  with gr.Blocks() as demo:
@@ -297,9 +297,9 @@ with gr.Blocks() as demo:
297
  run = gr.Button('Generate')
298
 
299
  with gr.Column():
300
- result0 = gr.HTML(label="Initial Word") #gr.Image(type="filepath", label="Initial Word",height=333)
301
  result1 = gr.Image(type="filepath", label="Optimization Process",height=100)
302
- result2 = gr.Image(type="filepath", label="Final Result",visible=False,height=333)
303
 
304
 
305
  with gr.Row():
 
245
  with open(image, "r") as f1:
246
  svg_content_final = f1.read()
247
 
248
+ yield gr.update(value=f"<div>{svg_content_init}</div>",label="Initial Word",visible=True),gr.update(visible=False),gr.update(value=f"<div>{svg_content_final}</div>",label="Final Result",visible=True)
249
 
250
 
251
  with gr.Blocks() as demo:
 
297
  run = gr.Button('Generate')
298
 
299
  with gr.Column():
300
+ result0 = gr.HTML("""<style>{width: 333px; height: 333px;}</style>""",label="Initial Word") #gr.Image(type="filepath", label="Initial Word",height=333)
301
  result1 = gr.Image(type="filepath", label="Optimization Process",height=100)
302
+ result2 = gr.HTML(label="Final Result") #gr.Image(type="filepath", label="Final Result",visible=False,height=333)
303
 
304
 
305
  with gr.Row():