11
11
12
12
def add_stealth_pnginfo (params : ImageSaveParams ):
13
13
stealth_pnginfo_enabled = shared .opts .data .get ("stealth_pnginfo" , True )
14
- stealth_pnginfo_mode = shared .opts .data .get ('stealth_pnginfo_mode' , 'alpha ' )
14
+ stealth_pnginfo_mode = shared .opts .data .get ('stealth_pnginfo_mode' , 'rgb ' )
15
15
stealth_pnginfo_compressed = shared .opts .data .get ("stealth_pnginfo_compression" , True )
16
16
if not stealth_pnginfo_enabled :
17
17
return
@@ -38,9 +38,11 @@ def add_data(params, mode='alpha', compressed=False):
38
38
width , height = params .image .size
39
39
pixels = params .image .load ()
40
40
index = 0
41
+ end_write = False
41
42
for x in range (width ):
42
43
for y in range (height ):
43
44
if index >= len (binary_data ):
45
+ end_write = True
44
46
break
45
47
values = pixels [x , y ]
46
48
if mode == 'alpha' :
@@ -58,13 +60,14 @@ def add_data(params, mode='alpha', compressed=False):
58
60
b = (b & ~ 1 ) | int (binary_data [index + 2 ])
59
61
index += 3
60
62
pixels [x , y ] = (r , g , b , a ) if mode == 'alpha' else (r , g , b )
63
+ if end_write :
64
+ break
61
65
62
66
63
67
def read_info_from_image_stealth (image ):
64
68
geninfo , items = original_read_info_from_image (image )
65
- possible_sigs = {'stealth_pnginfo' , 'stealth_pngcomp' , 'stealth_rgbinfo' , 'stealth_rgbcomp' }
66
- # if image.mode != 'RGBA':
67
- # return geninfo, items
69
+ # possible_sigs = {'stealth_pnginfo', 'stealth_pngcomp', 'stealth_rgbinfo', 'stealth_rgbcomp'}
70
+
68
71
# trying to read stealth pnginfo
69
72
width , height = image .size
70
73
pixels = image .load ()
@@ -159,16 +162,17 @@ def read_info_from_image_stealth(image):
159
162
break
160
163
if read_end :
161
164
break
162
- print (f"compressed = { compressed } , mode = { mode } " )
163
165
if sig_confirmed and binary_data != '' :
164
166
# Convert binary string to UTF-8 encoded text
165
167
byte_data = bytearray (int (binary_data [i :i + 8 ], 2 ) for i in range (0 , len (binary_data ), 8 ))
166
- if compressed :
167
- decoded_data = gzip .decompress (bytes (byte_data )).decode ('utf-8' )
168
- else :
169
- decoded_data = byte_data .decode ('utf-8' , errors = 'ignore' )
170
- geninfo = decoded_data
171
- print (geninfo )
168
+ try :
169
+ if compressed :
170
+ decoded_data = gzip .decompress (bytes (byte_data )).decode ('utf-8' )
171
+ else :
172
+ decoded_data = byte_data .decode ('utf-8' , errors = 'ignore' )
173
+ geninfo = decoded_data
174
+ except :
175
+ pass
172
176
return geninfo , items
173
177
174
178
@@ -200,7 +204,7 @@ def on_ui_settings():
200
204
"" , "Stealth PNGinfo Prompt Override" , section = section )) # I don't think this does anything,
201
205
# it is not referenced anywhere else
202
206
shared .opts .add_option ("stealth_pnginfo_mode" , shared .OptionInfo (
203
- "alpha " , "Stealth PNGinfo mode" , gr .Dropdown , {"choices" : ["alpha" , "rgb" ], "interactive" : True },
207
+ "rgb " , "Stealth PNGinfo mode" , gr .Dropdown , {"choices" : ["alpha" , "rgb" ], "interactive" : True },
204
208
section = section ))
205
209
shared .opts .add_option ("stealth_pnginfo_compression" , shared .OptionInfo (
206
210
True , "Stealth PNGinfo compression" , gr .Checkbox , {"interactive" : True }, section = section ))
0 commit comments