Preserve newlines when importing prompts from PNG metadata - #2574
Open
amiiari wants to merge 1 commit into
Open
Preserve newlines when importing prompts from PNG metadata #2574amiiari wants to merge 1 commit into
amiiari wants to merge 1 commit into
Conversation
QImageReader.text() collapses newlines inside PNG text chunks, so multi-line prompts imported via import_prompt_from_file() were flattened to a single line (issue Acly#2565). Add Image.read_png_text(), which parses tEXt/zTXt/iTXt chunks directly (mirroring the existing manual-write path save_png_w_itxt) and keeps the text byte-for-byte. import_prompt_from_file() now reads PNG metadata through it; non-PNG formats still fall back to Qt. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2565, changes were coded by Claude Opus 4.8!
Problem: QImageReader.text() collapsed newlines inside PNG text chunks then flattened them to a single line.
What this code does now is: