Search found 10 matches

by cancerberosgx
2019-08-14T07:09:52-07:00
Forum: Developers
Topic: Documentation sources and command online playground initiative
Replies: 3
Views: 39807

Re: Documentation sources and command online playground initiative

The authoritative website source is @ https://github.com/ImageMagick/Website. We have a script that generates the ImageMagick website @ https://imagemagick.org from the authoritative website source. https://www.imagemagick.org/Usage is a contributed website that we do not maintain. Anthony does, a ...
by cancerberosgx
2019-08-14T07:06:16-07:00
Forum: Developers
Topic: fftw library alternative
Replies: 1
Views: 34891

fftw library alternative

Hello, Does any body knows of an alternative library to fftw (MIT/apache like license)? Preferable that works out of the box like a drop-in replacement ? In any case, any suggestions or idea if porting another library to replace it implies a lot of work? I will start with https://software.intel.com/...
by cancerberosgx
2019-08-13T17:16:07-07:00
Forum: Users
Topic: ImageMagick Orchestrator
Replies: 4
Views: 8150

Re: ImageMagick Orchestrator

I have begun seeking a means to manage or configure ImageMagick though some kind of orchestrator rather than through bash and was wondering does such a thing exist already? I also think shell scripts are not the right language for complex things. In my JavaScript IM library https://github.com/cance...
by cancerberosgx
2019-08-13T16:56:23-07:00
Forum: Developers
Topic: What is DPC ? Do i need this feature?
Replies: 4
Views: 43506

Re: What is DPC ? Do i need this feature?

Thanks! previous was the output of ./configure but then when I run `convert -version` it doesn't say anything about DPC so I guess that caused my confusion.
by cancerberosgx
2019-08-13T14:02:28-07:00
Forum: Developers
Topic: What is DPC ? Do i need this feature?
Replies: 4
Views: 43506

Re: What is DPC ? Do i need this feature?

I think DPC in that context is Distributed Pixel Cache. See http://www.imagemagick.org/script/architecture.php That feature flag is set in configure, after checking for socket support. I can't see what configure option will stop this from happening. I'm not sure... in configure.ac it just checks fo...
by cancerberosgx
2019-08-13T11:27:45-07:00
Forum: Users
Topic: Browser realtime transformations
Replies: 6
Views: 9289

Re: Browser realtime transformations

fmw42 wrote: 2019-08-13T10:33:45-07:00 Please do not double post. Remove one or the other.
I couldn't find a way to remove the other post. I'm sorry, probably missing something basic... If it's really important I prefer the other one to be removed and keep this one since it has more details / feedback, thanks
by cancerberosgx
2019-08-13T10:46:29-07:00
Forum: Users
Topic: Creating character sheets using IM
Replies: 16
Views: 24092

Re: Creating character sheets using IM

It's not exactly what you are asking, but often is easy to transform letter by letter and then join them, if needed. In many cases having them separately is more useful. Checkout this live example:https://cancerberosgx.github.io/demos/magica/playground/#state=eyJleGFtcGxlIjp7Im5hbWUiOiJIZWxsbyB3b3Js...
by cancerberosgx
2019-08-13T10:25:02-07:00
Forum: Users
Topic: Browser realtime transformations
Replies: 6
Views: 9289

Browser realtime transformations

Hello, I just want to share some work I've been doing transforming images in web pages, as fast as possible, to see if a "real time" effect can be accomplished while users hover the mouse over images or acting as a video web-cam filter. IM exceeded my expectations :) * demo: https://cancer...
by cancerberosgx
2019-07-31T18:55:14-07:00
Forum: Developers
Topic: Documentation sources and command online playground initiative
Replies: 3
Views: 39807

Documentation sources and command online playground initiative

Hello, I would like to contribute to ImageMagick documentation site but I'm not sure which repository is the "source of truth". My concrete question is: What are the sources of what it seems the oficial / updated reference at https://imagemagick.org/script/ . Is it https://github.com/Image...
by cancerberosgx
2019-07-02T19:44:55-07:00
Forum: Users
Topic: Generating svg images using convert "command line"
Replies: 13
Views: 55019

Re: Generating svg images using convert "command line"

I'm using ImageMagick command line tool (convert) to generate svg images. Why not write the paths in a svg document and then rasterize it to a bitmap (which is safe) ? why do you need to use IM to draw vectors ? This will work for png but not for svg - you just get one black circle! Did you try usi...