Search found 10 matches

by ChristianK
2019-10-18T05:42:26-07:00
Forum: Users
Topic: crop to 1000*1200 px image non homothetic
Replies: 1
Views: 125947

crop to 1000*1200 px image non homothetic

Hi,
I'm looking to find a way to do this if it's possible :
- Have a lot of images with different dimension, and have to modify their dimensions to Magento with specific dimensions : 1000*1600 px.

Sometimes images are homothetic, so no problem, but others could be no-homothetic : can I do ...
by ChristianK
2019-04-09T01:24:49-07:00
Forum: Users
Topic: little help : convert .bat to bash script
Replies: 2
Views: 7589

little help : convert .bat to bash script

Hi,
I made a little script in .bat file running on windows, but I need it now in mac os X, so in bash,
but I didn't know how to convert argument in it :
the script is very simple, it compare 2 files :
@FOR /r %%I in (*.jpeg) do ("C:\Program Files\ImageMagick\magick.exe" compare %%I %%~pI%%~NI_1 ...
by ChristianK
2019-03-08T08:56:28-07:00
Forum: Users
Topic: Combine many image in one image with layers
Replies: 4
Views: 6948

Re: Combine many image in one image with layers

ok,
Thank You Snibgo
by ChristianK
2019-03-08T08:47:27-07:00
Forum: Users
Topic: Combine many image in one image with layers
Replies: 4
Views: 6948

Re: Combine many image in one image with layers

Hi Snibgo,
Thanks for your help,
I want to save multiples images in a single TIFF file, but each image in a layer, do you think is it possible.
What you write didn't have layers in TIFF.
Regards,
Christian
by ChristianK
2019-03-08T07:59:05-07:00
Forum: Users
Topic: Combine many image in one image with layers
Replies: 4
Views: 6948

Combine many image in one image with layers

Hi,
Is it possible to combine 3 images in one with layers, save as TIFF ?
Images have the same file/resolution

Thanks in advance for your help,
Christian
by ChristianK
2019-03-05T10:19:56-07:00
Forum: Users
Topic: bat file for compose .jpg .png with same name
Replies: 8
Views: 12215

Re: bat file for compose .jpg .png with same name

Snibgo,

it works ! I found , just put parentehsis inside double quotes and it's works !
Thx again for your help !
Best Regards,
Christian
by ChristianK
2019-03-05T10:04:11-07:00
Forum: Users
Topic: bat file for compose .jpg .png with same name
Replies: 8
Views: 12215

Re: bat file for compose .jpg .png with same name

Thx for your help Snibgo, I appreciate !

In fact, it seems that I have mistake with parenthesis...
in my command I need this : must -negate the .png

%%I ( %%I.png -negate) -alpha off etc....

and it doesn't work because of the For ... do . ..

the parenthesis is use for windows....

Did you know ...
by ChristianK
2019-03-05T06:20:42-07:00
Forum: Users
Topic: bat file for compose .jpg .png with same name
Replies: 8
Views: 12215

Re: bat file for compose .jpg .png with same name

Thanks for your answer snibgo,
I write this but nothings happen....


FOR %%I in ("\\1xx.x.x.x\input2\working\01-compose\*.jpg") do
( if exist ("\\1xx.x.x.x\input2\working\01-compose\%%~nI.png")
"C:\Program Files\ImageMagick\magick.exe" "%%I.jpg" ( "%%I.png" -negate ) -alpha off -compose copy ...
by ChristianK
2019-03-04T10:16:22-07:00
Forum: Users
Topic: bat file for compose .jpg .png with same name
Replies: 8
Views: 12215

Re: bat file for compose .jpg .png with same name

snibgo wrote :
Otherwise, you could write a simple magick command that processes one pair of images. Then put that inside a shell loop.

It's exactly what I want to have, but didn't know how to do it :

I searching a way to tell in a .bat file something like this but I'm not developper :

- In a ...
by ChristianK
2019-03-04T08:59:14-07:00
Forum: Users
Topic: bat file for compose .jpg .png with same name
Replies: 8
Views: 12215

bat file for compose .jpg .png with same name

Hi all,
I try to compose thousand of images with IM7 on Windows with a script in .bat file :
always have the same file in .jpg and .png format, and have to compose them for each images

I want to do this command :
"C:\Program Files\ImageMagick\magick.exe" *.jpg ( *.png" -negate ) -alpha off ...