Conversation
Review Summary by QodoUnify resize behavior, centralize errors, and add e2e tests
WalkthroughsDescription• Unified resize behavior using DynamicImage::resize_exact instead of explicit RGBA branch • Introduced typed internal ToolkitError enum with centralized wasm boundary conversion • Changed default quality from 0.8 to 0.7 to match TypeScript wrapper • Refactored format parsing to use ASCII-insensitive matching without allocation • Added three e2e-style Rust tests covering resize pipeline and error handling Diagramflowchart LR
A["Resize Logic"] -->|"Unified via resize_exact"| B["DynamicImage"]
C["Error Handling"] -->|"Typed ToolkitError"| D["JsValue Conversion"]
E["Format Parsing"] -->|"ASCII-insensitive"| F["ImageFormat"]
G["Tests"] -->|"E2E Coverage"| H["Pipeline Validation"]
File Changes1. src/lib.rs
|
Code Review by Qodo
✅ 1.
|
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.
Summary
Key Changes
src/lib.rsby usingDynamicImage::resize_exact/resize(removed explicit RGBA resize branch).0.7to match the TypeScript wrapper default.to_lowercaseallocation.ToolkitError) and centralized wasm boundary conversion toJsValue.Breaking Changes
Validation
cargo testnpm run buildRelease Checklist (if applicable)
package.jsonversion is correctCHANGELOG.mdupdateddevelop -> mainmerge readyv2.1.0)Notes
ts-wrapper/resizeImage.tsbranching (webp lossy/fallback, option sanitization, error paths).