Skip to content

Commit 955fca2

Browse files
changed defaults to compressed + rgb
rgb + compressed has the largest section of data that is writable. fixed a bug in which even after writing every byte it doesn't stop travelling the image. added error checking to prevent catastrophic failure when converting the data back into readable text.
1 parent a0eed68 commit 955fca2

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ cython_debug/
157157
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160-
#.idea
160+
.idea
161161
*.pt
162162
*.pth
163163
*.ckpt

scripts/stealth_pnginfo.py

+16-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
def add_stealth_pnginfo(params: ImageSaveParams):
1313
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')
1515
stealth_pnginfo_compressed = shared.opts.data.get("stealth_pnginfo_compression", True)
1616
if not stealth_pnginfo_enabled:
1717
return
@@ -38,9 +38,11 @@ def add_data(params, mode='alpha', compressed=False):
3838
width, height = params.image.size
3939
pixels = params.image.load()
4040
index = 0
41+
end_write = False
4142
for x in range(width):
4243
for y in range(height):
4344
if index >= len(binary_data):
45+
end_write = True
4446
break
4547
values = pixels[x, y]
4648
if mode == 'alpha':
@@ -58,13 +60,14 @@ def add_data(params, mode='alpha', compressed=False):
5860
b = (b & ~1) | int(binary_data[index + 2])
5961
index += 3
6062
pixels[x, y] = (r, g, b, a) if mode == 'alpha' else (r, g, b)
63+
if end_write:
64+
break
6165

6266

6367
def read_info_from_image_stealth(image):
6468
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+
6871
# trying to read stealth pnginfo
6972
width, height = image.size
7073
pixels = image.load()
@@ -159,16 +162,17 @@ def read_info_from_image_stealth(image):
159162
break
160163
if read_end:
161164
break
162-
print(f"compressed = {compressed}, mode = {mode}")
163165
if sig_confirmed and binary_data != '':
164166
# Convert binary string to UTF-8 encoded text
165167
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
172176
return geninfo, items
173177

174178

@@ -200,7 +204,7 @@ def on_ui_settings():
200204
"", "Stealth PNGinfo Prompt Override", section=section)) # I don't think this does anything,
201205
# it is not referenced anywhere else
202206
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},
204208
section=section))
205209
shared.opts.add_option("stealth_pnginfo_compression", shared.OptionInfo(
206210
True, "Stealth PNGinfo compression", gr.Checkbox, {"interactive": True}, section=section))

0 commit comments

Comments
 (0)