@@ -30,7 +30,7 @@ def __init__(self, display):
3030 self .color_num_name .grid (column = 0 , row = 1 , sticky = N + W )
3131 self .color_num_select_box = Combobox (self .root , width = 5 )
3232 self .color_num_select_box .grid (column = 0 , row = 2 , sticky = N + W )
33- self .color_num_select_box ['values' ] = ['2' , '4' , '8' , '16' ]
33+ self .color_num_select_box ['values' ] = ['2' , '4' , '8' , '16' , '32' , '64' , '128' ]
3434 self .color_num_select_box .current (0 )
3535 # pixel size
3636 self .pixel_size_name = Label (self .root ,text = 'Pixel size像素尺寸' )
@@ -58,14 +58,14 @@ def __init__(self, display):
5858 self .saturation_name .grid (column = 0 , row = 5 , sticky = N + W )
5959 self .saturation_select_box = Combobox (self .root , width = 5 )
6060 self .saturation_select_box .grid (column = 0 , row = 6 , sticky = N + W )
61- self .saturation_select_box ['values' ] = ['-200' , '-100' , '0' , '100' , '200' ]
61+ self .saturation_select_box ['values' ] = ['-200' , '-150' , '- 100' , '-50' , ' 0' , '50' , ' 100' , '150 ' , '200' ]
6262 self .saturation_select_box .current (2 )
6363 # contrast
6464 self .contrast_name = Label (self .root ,text = 'Contrast對比' )
6565 self .contrast_name .grid (column = 4 , row = 5 , sticky = N + E )
6666 self .contrast_select_box = Combobox (self .root , width = 5 )
6767 self .contrast_select_box .grid (column = 4 , row = 6 , sticky = N + E )
68- self .contrast_select_box ['values' ] = ['-200' , '-100' , '0' , '100' , '200' ]
68+ self .contrast_select_box ['values' ] = ['-200' , '-150' , '- 100' , '-50' , ' 0' , '50' , ' 100' , '150 ' , '200' ]
6969 self .contrast_select_box .current (2 )
7070
7171 # dithering
0 commit comments