Search found 4 matches

by pelornero
2018-08-13T20:33:13-07:00
Forum: Users
Topic: I can't make this script to run in
Replies: 9
Views: 6731

Re: I can't make this script to run in

Thank you. The command for combining pdf is a gift from gods.

And another question! :D
And a command to split a PDF in multiple images? I've tried

magick -density 600 PV.pdf pv-%02d.jpg
And I receive

magick: FailedToExecuteCommand `"gswin32c.exe" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE ...
by pelornero
2018-08-12T15:13:46-07:00
Forum: Users
Topic: I can't make this script to run in
Replies: 9
Views: 6731

Re: I can't make this script to run in

It worked! Love u! :D


cd c:\1
FOR %a in (*.jpg) DO magick %a ( +clone -blur 0x1 ) +swap -compose divide -composite -linear-stretch 5%x0% -rotate 0.5 small_%a
(c:\1 is the folder in which I have the images)


Another 2 questions! :D
1. Can I create a PDF file from the all pages I've just created ...
by pelornero
2018-08-12T12:48:03-07:00
Forum: Users
Topic: I can't make this script to run in
Replies: 9
Views: 6731

Re: I can't make this script to run in

It's working. Love you both!

Another question!!! :D

I have a folder of JPGs to witch I would like to apply the script. I found a topic regarding this problem where both of you answered ( https://www.imagemagick.org/discourse-server/viewtopic.php?t=29390 ).

I have the source folder in "C:\1". I ...
by pelornero
2018-08-12T10:14:10-07:00
Forum: Users
Topic: I can't make this script to run in
Replies: 9
Views: 6731

I can't make this script to run in

I have Windows 10 and ImageMagick-7.0.8

I want to apply this script which I found:

magick 1.jpg -colorspace gray \( +clone -blur 0x1 \) +swap -compose divide -composite -linear-stretch 5%x0% a1.jpg

I receive the following error:

magick: unable to open image '\(': No such file or directory ...