Justin Israel
Justin Israel
You can still call `ResizeImage()` and `CropImage()`. Do you specifically need the string expression format?
But that is a private symbol. It isn't part of the public headers: https://www.imagemagick.org/api/MagickCore/transform_8h.html
Ok I found this: https://www.imagemagick.org/api/transform.php#TransformImage > This function and should probably be deprecated in favor of direct calls to CropImageToTiles() or ResizeImage(), as appropriate. So we already expose [ResizeImage](https://godoc.org/gopkg.in/gographics/imagick.v3/imagick#MagickWand.ResizeImage), but...
Here is the signature https://github.com/ImageMagick/ImageMagick/blob/93b707b4a5882ab3d7f8904984684846fe178a97/MagickCore/transform.h#L30 It takes a 3rd parameter for the exception object. You might be able to pass nil and just use the check afterwards. See if any...
Its right there in that header: `#include ` https://github.com/ImageMagick/ImageMagick/blob/master/MagickCore/transform.h Its not a wand api call; It is a core api call, which takes an `Image*`. So that means in order...
No it doesn't require changes to ImageMagick. It just means you have to include "" in Go, and wrap the call to `C.CropImageToTiles`. Once you do that, you would call...
You can't pass the Go type directly to C. So you need to pass the underlying pointer: `unsafe.Pointer(cimage.img)` You can handle the exception by using the existing imagick support for...
No one has submitted any updates to this yet. Feel free to submit a PR!
I've just added `CropImageToTiles` as a method of a `MagickWand`. Can you confirm if this example works for your needs? ```go mw := imagick.NewMagickWand() mw.SetSize(640, 480) if err := mw.ReadImage("logo:");...
Hi. This is very much related to the detailed discussion in #136 . I would recommend giving that a read. But to give you a quick summary, I can reproduce...