-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use 'magick' package when installed #5
Comments
Thanks for the suggestion. If I am reading the 'magick' source correctly, this would still fail to build where ImageMagick is unavailable (i.e., 'magick' does not bundle ImageMagick), but would do so (far) more elegantly. Is that correct? |
Not entirely. The Moreover, on windows and mac the CRAN binary packages ship with a statically linked |
Ah! Even better than I thought. I will look at using this - I also make use of ImageMagick's 'compare', but I see that there is also an interface for that in 'magick'. Thanks again! |
Ok, small problem. When I convert, I want to specify -density, plus possibly +antialias. I can't see a way to do that with 'magick' |
What exactly are you converting to what? There is a If you're converting |
In some situations I need to do something like 'convert -density 100x100 +antialias test.pdf test.png' (but I also need to be able to adjust the density and to remove the +antialias) |
Next problem :) When I do the image_compare() I want the visual diff file that 'compare' produces ... |
I guess I could use image_composite() with appropriate operators to get the visual diff myself, but is there an easier way ? |
Currently one check failing because
convert
is not installed. Maybe trymagick::image_convert
which is available on most platforms. See here for an example.The text was updated successfully, but these errors were encountered: