IM generally doesn't like extra spaces, try something like this:
convert zelda_text.jpg \(zelda_text_mask.gif -background white -alpha shape \) -flatten zelda_mask_overlay.jpg
could be the backslashes too, not sure though since I don't use them like this
Search found 79 matches
- 2018-02-01T07:55:07-07:00
- Forum: Users
- Topic: Syntax problem
- Replies: 2
- Views: 6346
- 2018-01-23T12:20:52-07:00
- Forum: Users
- Topic: GPU vs CPU on command line benchmark
- Replies: 3
- Views: 9385
Re: GPU vs CPU on command line benchmark
*I'm not an expert and someone may have better information*
The link you posted points to OpenMP, a CPU technology, whereas GPUs use either OpenCL or CUDA for high performance crunching operations.
** I would also guess due to the nature of image manipulations CPUs are the best option, if only to ...
The link you posted points to OpenMP, a CPU technology, whereas GPUs use either OpenCL or CUDA for high performance crunching operations.
** I would also guess due to the nature of image manipulations CPUs are the best option, if only to ...
- 2018-01-18T11:42:29-07:00
- Forum: Users
- Topic: looking for docs for PRINT command
- Replies: 12
- Views: 26858
Re: looking for docs for PRINT command
It would seem this is a pretty obscure IM function, I will keep looking for another solution (it is surprisingly hard to find a way to send prints to printers in an automated way).
- 2018-01-17T13:53:02-07:00
- Forum: Users
- Topic: looking for docs for PRINT command
- Replies: 12
- Views: 26858
Re: looking for docs for PRINT command
IM on Windows, whatever version I need to make it happen ;)
from the page I linked:
PRINT Send image to your computer printer Unix users may set the PRINTER (for 'lpr') or LPDEST (for 'lp') environment variables to select the desired printer.
I haven't tried anything yet, just looking for docs ...
from the page I linked:
PRINT Send image to your computer printer Unix users may set the PRINTER (for 'lpr') or LPDEST (for 'lp') environment variables to select the desired printer.
I haven't tried anything yet, just looking for docs ...
- 2018-01-17T08:31:24-07:00
- Forum: Users
- Topic: looking for docs for PRINT command
- Replies: 12
- Views: 26858
looking for docs for PRINT command
The only place I've been able to find anything is here:
https://www.imagemagick.org/script/formats.php
Is there a more comprehensive doc or examples concerning the PRINT function available? Thanks
https://www.imagemagick.org/script/formats.php
Is there a more comprehensive doc or examples concerning the PRINT function available? Thanks
- 2017-08-03T12:25:27-07:00
- Forum: Users
- Topic: Has the -Profile function changed from older versions?
- Replies: 4
- Views: 11002
Re: Has the -Profile function changed from older versions?
Ah Fred, I should not do coding at the end of the work day because I get sloppy- your initial advice worked, which is also the second post you did. I appreciate your help and patience 

- 2017-08-03T12:04:35-07:00
- Forum: Users
- Topic: Has the -Profile function changed from older versions?
- Replies: 4
- Views: 11002
Re: Has the -Profile function changed from older versions?
Thanks for the quick reply, I'll give it a shot. The version is in the post above, Windows OS
Wow the version I am using looks to be the ancient one, my bad- putting the -profile at the end is not working either. Weird thing is that I know this was working properly earlier because I had matched ...
Wow the version I am using looks to be the ancient one, my bad- putting the -profile at the end is not working either. Weird thing is that I know this was working properly earlier because I had matched ...
- 2017-08-03T11:57:32-07:00
- Forum: Users
- Topic: Has the -Profile function changed from older versions?
- Replies: 4
- Views: 11002
Has the -Profile function changed from older versions?
I feel as though when doing this about 2 years ago my profiles were being applied with this code, now they are not. Source image has no profile according to identify, neither does the converted one.
convert -size 3000x2400 xc: ( image.jpg -rotate 90 -resize x2100 -gravity center -crop 2700x2100+0+0 ...
convert -size 3000x2400 xc: ( image.jpg -rotate 90 -resize x2100 -gravity center -crop 2700x2100+0+0 ...
- 2017-07-15T09:35:54-07:00
- Forum: Users
- Topic: Check image for large fields of one* color
- Replies: 3
- Views: 8066
Check image for large fields of one* color
Hey all, I need to be able to check large numbers of images and flag them if they have large areas of a single color. Some specifics:
Be able to check that a percentage of the image is one color and flag it
Be able to define "one color" as a small range of colors, as it would seem that what looks ...
Be able to check that a percentage of the image is one color and flag it
Be able to define "one color" as a small range of colors, as it would seem that what looks ...
- 2017-03-22T09:35:14-07:00
- Forum: Users
- Topic: Running IM from .bat files, some questions
- Replies: 2
- Views: 7543
Re: Running IM from .bat files, some questions
Thanks snibgo, really good info as usual!
- 2017-03-22T05:50:33-07:00
- Forum: Users
- Topic: Running IM from .bat files, some questions
- Replies: 2
- Views: 7543
Running IM from .bat files, some questions
I am currently writing IM commands to .bat files which then get run when they appear in a folder, I would like to know how to do a couple of things.
Is there a way to know when IM is done writing the images so that the next (non-IM) command can proceed safely, or is this something done ...
Is there a way to know when IM is done writing the images so that the next (non-IM) command can proceed safely, or is this something done ...
- 2015-04-01T12:32:27-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: How to ignore the .db file?
- Replies: 2
- Views: 124219
Re: How to ignore the .db file?
I am using convert and identify as my main commands. So far I found an ugly solution, but it seems to work: putting "On Error Resume Next" in the beginning of the asp file, which passes the thumbs.db file.
Supposedly in vbscript you can exclude files, but the code I found wasn't working. I did ...
Supposedly in vbscript you can exclude files, but the code I found wasn't working. I did ...
- 2015-04-01T10:21:49-07:00
- Forum: Windows COM+ & Visual Basic
- Topic: How to ignore the .db file?
- Replies: 2
- Views: 124219
How to ignore the .db file?
I have a bit of code that checks images for colorspace, but it always errors out before finishing a job because it wants to process the thunmbs.db file that windows generates whenever images are added to a folder. There is an option in windows not to create the thumb file, but it seems flaky at best ...
- 2015-03-21T09:14:12-07:00
- Forum: Users
- Topic: error, missing dll (IM via VBScript)
- Replies: 2
- Views: 8157
Re: error, missing dll (IM via VBScript)
I found the issue, the script is trying to run the thumbs.db file after all of the images- disabling thumbnail caching fixes this.
I'm not sure if it's an IM issue- on an ancient version of IM from 2013 the .db was registered as OK by my script, but in the new version, 6.9.0, an error gets thrown ...
I'm not sure if it's an IM issue- on an ancient version of IM from 2013 the .db was registered as OK by my script, but in the new version, 6.9.0, an error gets thrown ...
- 2015-03-20T12:31:56-07:00
- Forum: Users
- Topic: error, missing dll (IM via VBScript)
- Replies: 2
- Views: 8157
Re: error, missing dll
The static version is similar,
I think maybe IM is seeing a file I can't? I am testing on only jpgs
Code: Select all
no decode delegate for this image format `DB'