Search found 6 matches

by Natul
2017-03-09T10:54:16-07:00
Forum: Users
Topic: Multichannel psd to jpg conversion
Replies: 3
Views: 2793

Re: Multichannel psd to jpg conversion

Can you upload to some place such as dropbox.com. I am unable to access your files on my old Mac OS. Please always provide your IM version and platform? Did you really mean multichannel or did you mean multilayer PSD Hi, this is a dropbox link I use IM Version: ImageMagick 7.0.3-5 Q16 x64 2016-10 ...
by Natul
2017-03-09T04:53:42-07:00
Forum: Users
Topic: Multichannel psd to jpg conversion
Replies: 3
Views: 2793

Multichannel psd to jpg conversion

Hi, I try to convert a multichannel PSD to jpg, but after conversion the colours of JPG are wrong, why?

I use this convert mypsd.psd[0] myjpg.jpg

there is some additional command to make the correct colors?

this is two psd with this problem


Thanks!!
by Natul
2017-02-11T05:58:49-07:00
Forum: Users
Topic: batch convert
Replies: 7
Views: 5882

Re: batch convert

I have another question, this script work but only if i dont have a space in a name of folders or files. FOR /R %%a in (*.jpg) DO convert %%a -resample 72 -units pixelsperinch -colorspace RGB -set filename:original %%d\\%%t_web.jpg %%[filename:original] where i put the " " to use it when i have a ...
by Natul
2017-02-02T09:02:49-07:00
Forum: Users
Topic: batch convert
Replies: 7
Views: 5882

Re: batch convert

ok work! with %%d\\%%t thank you!!!
by Natul
2017-02-02T05:06:10-07:00
Forum: Users
Topic: batch convert
Replies: 7
Views: 5882

Re: batch convert

ok, I realized that the problem is that I do not set the correct IM in output subfolders.

I dont understand how I can add this information to my script? to save converted image " _Web" in the correct subfolder?

sorry I am beginner to IM

thanks
by Natul
2017-02-01T09:45:03-07:00
Forum: Users
Topic: batch convert
Replies: 7
Views: 5882

batch convert

Hi, I try to convert and create a new image with suffix " _web" for many images in folders and subfolders example i have this folders c:\test\ c:\test\myimage\image.jpg c:\test\allimages\myimages.jpg i try to use this c: cd c:\test FOR /R %%a IN (*.jpg) DO convert %%a -resample 72 -units ...