Justin Israel

Results 217 comments of Justin Israel

imagick bindings are pretty thin wrappers over the C api. That means we don't do much business logic. Only type conversions and then calling right into C. So I am...

I took a brief look at this and the ImageMagick docs say that the first time you call OpenCL accelerated operations (retime, ...) the OpenCL initialisation is done and all...

First, can you move the imagick.Initialize() and terminate out of your handler and into the main goroutine for your http server? It is a common mistake. You don't want to...

Its a good idea to focus on ImageMagick here, like you said. The only time I see delegate issues is with wrong library versions or ImageMagick bugs. Or running imagick...

I haven't studied that part of the source, but I assumed it was a field on the wand that stores the error result of the last call using that wand.

Your usage of the library seems pretty minimal and straight-forward. I would be surprised if your custom `clearImagickWand()` is making any difference at all. Is that just a hail-Mary attempt...

The memory is most definitely held in C by ImageMagick. So your pprof will reflect the Go memory looking quite small (am I right?). From what I have seen, continuous...

If you see this in a docker container then I should be able to reproduce it. Can you give me your exact setup including input and output image format. If...

@FluffyDiscord I gave your project a test and what I noticed was that over the course of the 50 loops of converting the batch of 10 images, I would see...