Open aljrico opened 3 years ago
I think compose args are usually specific to the composite operator
being used. I don't think -geometry
is a composite parameter.
Ok, that one is not correct. Where can I find documentation on what to put on compose_args
and how to use it? If I'm not mistaken, I understand magick
pretends to wrap the ImageMagick
and I would do better familiarising myself with that first. But it would be nice if the R library and its documentation were self-contained.
Having said that, I do appreciate the immense effort that has been put into this library. I consider it a true gem and the provided documentation is fun and easy to understand. Thank you for doing this.
I just can't find it in the documentation.
I've tried silly things as
magick::image_composite(img, compose_args = c("geometry", "13", "17"))
ormagick::image_composite(img, compose_args = "-geometry -13-17")
But nothing works. So how should this parameter be used? Am I missing something obvious?