harishB97 commited on
Commit
d9a58b9
·
verified ·
1 Parent(s): bb719f4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +46 -16
app.py CHANGED
@@ -48,29 +48,59 @@ def display_tree():
48
  yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
49
  )
50
 
51
- # layout = go.Layout(
52
- # paper_bgcolor='white', # Sets the color of the paper where the graph is drawn
53
- # plot_bgcolor='white', # Sets the background color of the plotting area in-between x and y axes
54
- # showlegend=False,
55
- # hovermode='closest',
56
- # margin=dict(b=0, l=0, r=0, t=0),
57
- # xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),
58
- # yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
59
- # )
60
-
61
  # Create the figure
62
  fig = go.Figure(data=[edge_trace, node_trace], layout=layout)
63
  return fig
64
 
65
  def display_image_based_on_dropdown_1(dropdown_value):
66
- # This function should return an image based on the dropdown value
67
- # Replace with actual logic to display the image
68
- return "Image based on dropdown 1 will be displayed here."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
  def display_image_based_on_dropdown_2(dropdown_value):
71
- # This function should return an image based on the dropdown value
72
- # Replace with actual logic to display the image
73
- return "Image based on dropdown 2 will be displayed here."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
 
75
  with gr.Blocks() as demo:
76
  gr.Markdown("## Interactive Tree and Image Display")
 
48
  yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)
49
  )
50
 
 
 
 
 
 
 
 
 
 
 
51
  # Create the figure
52
  fig = go.Figure(data=[edge_trace, node_trace], layout=layout)
53
  return fig
54
 
55
  def display_image_based_on_dropdown_1(dropdown_value):
56
+ # Create a white image
57
+ img = Image.new('RGB', (200, 100), color='white')
58
+ d = ImageDraw.Draw(img)
59
+
60
+ # Specify a font. If you have a .ttf font file you can specify its path
61
+ # fnt = ImageFont.truetype('/path/to/font.ttf', 40)
62
+ # Otherwise, we'll use a default PIL font
63
+ fnt = ImageFont.load_default()
64
+
65
+ # Position the text in the center
66
+ text = "Placeholder"
67
+ textwidth, textheight = d.textsize(text, font=fnt)
68
+ width, height = img.size
69
+ x = (width - textwidth) / 2
70
+ y = (height - textheight) / 2
71
+
72
+ # Draw the text onto the image
73
+ d.text((x,y), text, font=fnt, fill='black')
74
+
75
+ # Save the image to a file in buffer to return
76
+ img.save('/tmp/dummy_image.png')
77
+
78
+ return '/tmp/dummy_image.png'
79
 
80
  def display_image_based_on_dropdown_2(dropdown_value):
81
+ # Create a white image
82
+ img = Image.new('RGB', (200, 100), color='white')
83
+ d = ImageDraw.Draw(img)
84
+
85
+ # Specify a font. If you have a .ttf font file you can specify its path
86
+ # fnt = ImageFont.truetype('/path/to/font.ttf', 40)
87
+ # Otherwise, we'll use a default PIL font
88
+ fnt = ImageFont.load_default()
89
+
90
+ # Position the text in the center
91
+ text = "Placeholder"
92
+ textwidth, textheight = d.textsize(text, font=fnt)
93
+ width, height = img.size
94
+ x = (width - textwidth) / 2
95
+ y = (height - textheight) / 2
96
+
97
+ # Draw the text onto the image
98
+ d.text((x,y), text, font=fnt, fill='black')
99
+
100
+ # Save the image to a file in buffer to return
101
+ img.save('/tmp/dummy_image.png')
102
+
103
+ return '/tmp/dummy_image.png'
104
 
105
  with gr.Blocks() as demo:
106
  gr.Markdown("## Interactive Tree and Image Display")