Search found 10 matches
- 2019-08-14T07:09:52-07:00
- Forum: Developers
- Topic: Documentation sources and command online playground initiative
- Replies: 3
- Views: 79879
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 ...
- 2019-08-14T07:06:16-07:00
- Forum: Developers
- Topic: fftw library alternative
- Replies: 1
- Views: 71719
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 ...
- 2019-08-13T17:16:07-07:00
- Forum: Users
- Topic: ImageMagick Orchestrator
- Replies: 4
- Views: 10607
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 ...
- 2019-08-13T16:56:23-07:00
- Forum: Developers
- Topic: What is DPC ? Do i need this feature?
- Replies: 4
- Views: 83889
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.
- 2019-08-13T14:02:28-07:00
- Forum: Developers
- Topic: What is DPC ? Do i need this feature?
- Replies: 4
- Views: 83889
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 ...
- 2019-08-13T11:27:45-07:00
- Forum: Users
- Topic: Browser realtime transformations
- Replies: 6
- Views: 12405
Re: Browser realtime transformations
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
- 2019-08-13T10:46:29-07:00
- Forum: Users
- Topic: Creating character sheets using IM
- Replies: 16
- Views: 36494
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 ...
- 2019-08-13T10:25:02-07:00
- Forum: Users
- Topic: Browser realtime transformations
- Replies: 6
- Views: 12405
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://cancerberosgx ...
- 2019-07-31T18:55:14-07:00
- Forum: Developers
- Topic: Documentation sources and command online playground initiative
- Replies: 3
- Views: 79879
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/ImageMagick ...
- 2019-07-02T19:44:55-07:00
- Forum: Users
- Topic: Generating svg images using convert "command line"
- Replies: 13
- Views: 69120
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 ...