Search found 12163 matches
- 2019-10-16T16:04:28+00:00
- Forum: Users
- Topic: Convert - Mogrify - Append - Same Filename | Windows IM7.0.8
- Replies: 8
- Views: 19292
Re: Convert - Mogrify - Append - Same Filename | Windows IM7.0.8
The question is really about scripting, not ImageMagick. This is an ImageMagick forum, not a scripting forum. But I'm feeling generous. Windows BAT syntax: for %%Z in (*-001-*.png) do ( echo %%Z for /F "tokens=1-5 delims=-." %%A in ("%%Z") do set PREFIX=%%A-%%B-%%C-%%D-%%E- echo ...
- 2019-10-16T12:55:10+00:00
- Forum: Users
- Topic: Convert - Mogrify - Append - Same Filename | Windows IM7.0.8
- Replies: 8
- Views: 19292
Re: Convert - Mogrify - Append - Same Filename | Windows IM7.0.8
For IM v7, I suggest you use "magick". ...images all named "year-month-day-hour-minute-###-tags" I suppose an example filename would be 2019-10-16-13-46-003-dogs-people.png". Is that correct? If not, please give some samples. Do all the files with the same date/time have the...
- 2019-10-15T23:34:26+00:00
- Forum: Users
- Topic: Use of smush when combining images
- Replies: 4
- Views: 14045
Re: Use of smush when combining images
Umm, smush can overlap. As far as I know, smush always places the second on top of the first, and the third on top of that, and so on. A couple of rotations will effectively reverse the order: convert granite: rose: -rotate 180 -background none -gravity west +smush -10 -rotate 180 rosegran.png http:...
- 2019-10-15T17:04:50+00:00
- Forum: Users
- Topic: Convert image from clipboard to clipboard (?)
- Replies: 1
- Views: 10966
Re: Convert image from clipboard to clipboard (?)
What version of IM, on what platform?
On Windows, you can use "clipboard:" for input or output, eg:
On Windows, you can use "clipboard:" for input or output, eg:
Code: Select all
convert %1 -fuzz 0 -fill "#FFFFFF" -opaque "#000000" clipboard:
convert clipbord: -fuzz 0 -fill "#FFFFFF" -opaque "#000000" %1
- 2019-10-15T10:31:56+00:00
- Forum: Users
- Topic: Color banding with high blur values
- Replies: 4
- Views: 12449
Re: Color banding with high blur values
Your output.png is still only 8-bit. Is that also a screenshot? Please post the actual file, not a screenshot. As a test, I suggest you insert "+write abc.png" after the blur, to save just that image. Check this is 16-bit. Then: magick abc.png -auto-level abc2.png This may show clear bandi...
- 2019-10-15T09:13:41+00:00
- Forum: Users
- Topic: Color banding with high blur values
- Replies: 4
- Views: 12449
Re: Color banding with high blur values
Your linked image is 8-bit.
Your code doesn't have "-depth 16".
What version of IM? What does "magick -version" say?
I suggest you use "magick", not "magick convert".
Your code doesn't have "-depth 16".
What version of IM? What does "magick -version" say?
I suggest you use "magick", not "magick convert".
- 2019-10-15T06:00:25+00:00
- Forum: Fred's Scripts
- Topic: Multicrop fails to output files
- Replies: 5
- Views: 21515
Re: Multicrop fails to output files
You use "-u 2" which, as the script says, calls Fred's unrotate script. The error message "unrotate: command not found" suggests you don't have that.
- 2019-10-14T20:03:44+00:00
- Forum: Bugs
- Topic: Issue with color conversion IM 6.9.10.68 Q16 Mac OSX
- Replies: 3
- Views: 11997
Re: Issue with color conversion IM 6.9.10.68 Q16 Mac OSX
The problem is that HSV text output, for the hue channel, is in degrees (scale 0 to 360). But the input is a percentage (scale 0 to 100). For example: f:\web\im>%IMG7%magick xc:hsv(10,100%,100%) txt: # ImageMagick pixel enumeration: 1,1,65535,hsv 0,0: (6553.5,65535,65535) #199AFFFFFFFF hsv(36,100%,1...
- 2019-10-14T17:28:23+00:00
- Forum: Users
- Topic: Generate tiles for all pages of multi-page PDF
- Replies: 4
- Views: 12517
Re: Generate tiles for all pages of multi-page PDF
I have experimented with positioning the -flatten argument in various positions in the above command, ... Why? You don't want to flatten the pages together, do you?. See http://www.imagemagick.org/script/command-line-options.php#flatten For percent-escapes, see http://www.imagemagick.org/script/esc...
- 2019-10-14T15:52:33+00:00
- Forum: Users
- Topic: Generate tiles for all pages of multi-page PDF
- Replies: 4
- Views: 12517
Re: Generate tiles for all pages of multi-page PDF
You "-flatten" all the pages together.
- 2019-10-14T13:51:12+00:00
- Forum: Users
- Topic: Split image into large tiles?
- Replies: 8
- Views: 20200
Re: Split image into large tiles?
magick frames.png -crop 216x120 tile%03d.png :info magick: unable to open image 'tile%03d.png': No such file or directory @ error/blob.c/OpenBlob/3497. That command is garbage. Try the commands I showed you. info: frames.png PNG 216x8880 216x120+0+0 8-bit sRGB 3.5611MiB 0.000u 0:00.000 That's the p...
- 2019-10-14T13:35:00+00:00
- Forum: Users
- Topic: Split image into large tiles?
- Replies: 8
- Views: 20200
Re: Split image into large tiles?
Your command works fine for me, using v7.0.8-64 on Windows 8.1. I suggest you use "magick", not "magick convert". The usual Windows directory separator is backslash \ not forward-slash /. However, these make no difference for me. What does identify say about your input frames.png...
- 2019-10-14T13:06:45+00:00
- Forum: Users
- Topic: Split image into large tiles?
- Replies: 8
- Views: 20200
Re: Split image into large tiles?
What is the name of the file it makes? What does identify say about it?
- 2019-10-14T12:38:28+00:00
- Forum: Users
- Topic: Split image into large tiles?
- Replies: 8
- Views: 20200
Re: Split image into large tiles?
What version of IM, on what platfom?
If your platfom is Windows BAT, you need to double the %.
If your platfom is Windows BAT, you need to double the %.
- 2019-10-13T19:05:15+00:00
- Forum: Users
- Topic: Converting SVG to PNG on QNAP fails
- Replies: 10
- Views: 17289
Re: Converting SVG to PNG on QNAP fails
Is rsvg-convert installed? If not, then that's the problem.DazDavid wrote:delegate failed `'rsvg-convert' -o '%o' '%i''
In addition, your command has no output filename.