Crates.io | lcs-png-diff-rs |
lib.rs | lcs-png-diff-rs |
version | 0.1.0 |
source | src |
created_at | 2022-05-14 18:07:55.386434 |
updated_at | 2022-05-14 18:07:55.386434 |
description | PNG diff tool with LCS algorithm |
homepage | https://github.com/jianliao/lcs-png-diff-rs |
repository | https://github.com/jianliao/lcs-png-diff-rs |
max_upload_size | |
id | 586731 |
size | 49,517 |
Generate diff bitmap(PNG) by the Longest Common Subsequence algorithm. This project is inspired by LCS-IMAGE-DIFF. But it combined LCS-IMAGE-DIFF and its dependency algorithm crate LCS-DIFF into one.
lcs-png-diff \
-b path/to/before.png \
-a path/to/after.png \
-d path/to/diff/result.png
lcs-png-diff \
-j path/to/pair.json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": [
{
"type": "object",
"properties": {
"before": {
"type": "string"
},
"after": {
"type": "string"
},
"result": {
"type": "string"
}
},
"required": [
"before",
"after"
]
}
]
}
result
property is optional. If omitted, the result png file will be generated in the exact location of the before png file with the base name appended "_result". For example:
[
{
"before": "tests/fixtures/pricing.png",
"after": "tests/fixtures/pricing_after.png"
},
{
"before": "tests/fixtures/slider.png",
"after": "tests/fixtures/slider_after.png"
},
{
"before": "tests/fixtures/text-area.png",
"after": "tests/fixtures/text-area_after.png"
}
]
Using the above JSON content as batch operation input will generate three files named pricing_result.png, slider_result.png, and text-area_result.png in relative path tests/fixtures/fixtures/
.
cargo criterion
The MIT License (MIT)
Copyright (c) 2022 @jianliao
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.