|
Bugzilla – Full Text Bug Listing |
| Summary: | [Build 44.1] ImageMagick offset_pattern_fail.gif image is different | ||
|---|---|---|---|
| Product: | [openSUSE] PUBLIC SUSE Linux Enterprise Server 15 SP6 | Reporter: | Jozef Pupava <jpupava> |
| Component: | Other | Assignee: | Petr Gajdos <pgajdos> |
| Status: | RESOLVED INVALID | QA Contact: | |
| Severity: | Normal | ||
| Priority: | P3 - Medium | CC: | eugenio.paolantonio, jpupava |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| URL: | https://openqa.suse.de/tests/13077109/modules/ImageMagick/steps/222 | ||
| Whiteboard: | |||
| Found By: | openQA | Services Priority: | |
| Business Priority: | Blocker: | Yes | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Attachments: |
generated offset_pattern_fail.gif
reference offset_pattern_fail.gif |
||
|
Description
Jozef Pupava
2023-12-15 10:50:35 UTC
Created attachment 871388 [details]
reference offset_pattern_fail.gif
magick -tile-offset +20+20 -tile pattern:checkerboard \
-size 80x80 xc: -draw 'color 30,20 reset' offset_pattern_fail.gif
This comes from
https://imagemagick.org/Usage/canvas/
The change happened between following versions:
7.0.1.43
7.0.1.44
https://github.com/ImageMagick/ImageMagick/compare/7.1.0-43...7.1.0-44
Offending commit: https://github.com/ImageMagick/ImageMagick/commit/efb742d2dd2951ac1b62b40fac697d8870860e30 Hi Jozef, this is only problem with the version update, or there are other, similar ones? Reading relevant part of https://imagemagick.org/Usage/canvas/ it seems that you are testing a corner case and the doc discourages to use convert this way. The faulty command is followed by recommended one right after: magick -size 80x80 xc: \ -tile-offset +20+20 +size -tile pattern:checkerboard \ -draw 'color 30,20 reset' offset_pattern_good.gif but I assume it is part of your testing already. Despite my feeling I have filled: https://github.com/ImageMagick/ImageMagick/discussions/6996 feel free to participate there. > https://github.com/ImageMagick/ImageMagick/discussions/6996 And there is an answer. In short, the command behaves differently, but the result is wrong both before and after. Purpose of https://imagemagick.org/Usage/canvas/#tile-offset is actually to show how to create https://imagemagick.org/Usage/canvas/offset_pattern_good.gif If there is no other similar regression, we can ignore it I would say. Hi Petr, thank you for the gh discussion, I will review our test and results and let you know. There are no other issues, this test is running also the command generating offset_pattern_fail.gif but it does not match the expected wrong image, it has to be the correct wrong image. :) :) Thanks Jozef |