改进图像类型探测功能 - #6613
Conversation
…e header buffer size
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: c7f8cb8a94
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| return next == '>' | ||
| || isXmlWhitespace(next) | ||
| || next == '/' && end + 1 < limit && data[end + 1] == '>'; |
There was a problem hiding this comment.
Accept prefixed SVG roots during sniffing
When SVG loader selection depends on sniffing rather than a .svg extension or image/svg+xml content type, a valid namespaced root such as <svg:svg xmlns:svg="http://www.w3.org/2000/svg"> now falls through to the JavaFX default loader because : is not accepted after the <svg prefix. The previous prefix check would route this case to the SVG loader, so prefixed SVG documents with unknown extensions or generic content types regress to failing/non-SVG loading; please account for prefixed SVG root names instead of treating only >, whitespace, and /> as valid boundaries.
Useful? React with 👍 / 👎.
|
加一个 |
No description provided.