Danack

Results 291 comments of Danack

Gmagick does not do any processing itself - it passes all image processing to GraphicsMagick If you have compiled GraphicsMagick with OpenMP enabled, probably with the --enable-openmp flag set, and...

To be clear, Gmagick doesn't really touch the threads. If you've compiled with OpenMP enabled for GraphicsMagick, then it should 'just work' for Gmagick. There is a function to set...

Instructions for Asgrim: 0) I recommend using Centos VM for dev. Other probably work as well, but there have been some weirdness with unstable libraries in Ubuntu for me. 1)...

Trying to investigate this issue leads to a segfault: ``` $width = 50; $height = 50; $image = new Gmagick("./testGif.gif"); $image = $image->coalesceImages(); do { $frame = $image->current(); $frame->cropThumbnailImage($width, $height);...

If you want SVG images to be converted correctly, I strongly recommend installing and using Inkscape directly. ``` inkscape "input.svg" --export-filename="/tmp/output.png" \ --export-dpi="96" \ --export-background="white" \ --export-background-opacity="255" > inkscape_output.txt 2>&1...

> I don't want it to have a white background Ok. ``` inkscape "input.svg" --export-filename="/tmp/output.png" \ --export-dpi="96" \ --export-background="transparent" \ --export-background-opacity="0" > inkscape_output.txt 2>&1 ``` > rather than scaling a...

I rebased and made some small edits on #2149

Thanks. I committed these as 1ef9c7a76700b3e72844050d75e6ed1b870f9ca7 and 85278ca11d7a1e009af96b74448523e82ad99940 after rebasing.

It's not great that github sponsors isn't available for you. But for other open source devs who are able to use it, imo they should stop with the 'if you...

Forgot to say, this could lead to the deprecation and eventually removal of the args for Injector:execute() + Injector:make(), which would give a small performance benefit due to the fewer...