Results 28 comments of Andrew Shu

I was curious about this, and from [this StackOverflow question](https://stackoverflow.com/questions/72105604/implement-toowned-for-user-defined-types) it sounds like it is not really needed to implement the `ToOwned` trait unless there is a specific use case...

The `Event.to_owned()` method already satisfies that need to get an owned Event, right? I'm having trouble understanding why the `ToOwned` trait should be implemented in addition to that? Reading the...

Okay, I now understand what was meant by this change "pending future Rust releases," presumably referring to impl specialization and [RFC 1210](https://rust-lang.github.io/rfcs/1210-impl-specialization.html). So hypothetically if/when RFC 1210 stabilizes then it...

For now, does `Mogrify.custom(image, "interlace", "line")` work as expected for you? ImageMagick has so many command line options, we need to decide a better way to organize them in this...

What ImageMagick command are you trying to use?

You could try something like https://github.com/route/mogrify/issues/39#issuecomment-287486610 image_operator(image, "convert -size: 1200x1200 #{image_path} \ #{image_to_combine_path} -geometry +0+10 -composite") |> create(in_place: true)

Not currently, but a pull request would be very welcome. I think most ImageMagick commands support writing to standard out.

Merged #62 which adds buffer support to `create/2`. Before release I'd like to: * ~~Cleanup the API so `create/2` implementations return consistent types~~ (Done in #63) * ~~Document the new...

I'm looking into `mogrify` with the `-write -` option to write to stdout, for the `save/2` function. It kind of works except for a bug in the `mogrify` command-line application...

@lucacorti Thanks for opening the ImageMagick issue. I tested the `+write` workaround (https://github.com/talklittle/mogrify/tree/save-buffer-pluswrite), and it works for the buffers, but with a side effect that breaks other functionality and Mogrify...