Search found 7 matches
- 2014-07-09T08:40:27-07:00
- Forum: Users
- Topic: mogrify leaves me with FILENAME.JPG~ ... does not overwrite
- Replies: 3
- Views: 2398
Re: mogrify leaves me with FILENAME.JPG~ ... does not overwr
This is being done in a folder on the user's desktop. I can't imagine it would be a permission issue.
- 2014-07-02T08:35:55-07:00
- Forum: Users
- Topic: mogrify leaves me with FILENAME.JPG~ ... does not overwrite
- Replies: 3
- Views: 2398
Re: mogrify leaves me with FILENAME.JPG~ ... does not overwr
...okay, I was partially wrong about this. Apparently the original file is being resized but it the file "filename.JPG~" gets left behind. If I resize "filename.JPG" again, it creates another file name "filename.JPG~~" and so on. For some reason this temp file (I assume it is a temp file) is not ...
- 2014-07-02T07:49:40-07:00
- Forum: Users
- Topic: mogrify leaves me with FILENAME.JPG~ ... does not overwrite
- Replies: 3
- Views: 2398
mogrify leaves me with FILENAME.JPG~ ... does not overwrite
I am hoping someone can at least give me some direction on this. I am not very familiar with using ImageMagick on Windows, so I may be missing something obvious. Right now I have a right click menu that runs this command to resize any image(s) that is selected. "C:\Program Files (x86)\ImageMagick-6 ...
- 2013-06-13T13:34:19-07:00
- Forum: Users
- Topic: Overlay one image on multiple (or single) image???
- Replies: 6
- Views: 3754
Re: Overlay one image on multiple (or single) image???
Just took a look at my other code an figured it out. Instead of using *.jpg I need to use "%1" which passes all selected files to the command that is being run. The following code puts my watermark image over the image: mogrify.exe -draw "image Over 0,0 0,0 'C:\Users\ARSIMS\Desktop\efficiency ...
- 2013-06-13T13:19:56-07:00
- Forum: Users
- Topic: Overlay one image on multiple (or single) image???
- Replies: 6
- Views: 3754
Re: Overlay one image on multiple (or single) image???
Okay, I see what you're saying. The code you provided above works. Now I just need to figure out how to apply this to my right click menu so it only ads the overlayed image to the selected files. I will post when (if) I figure that part out for anyone who might be searching for this later.
- 2013-06-13T11:50:16-07:00
- Forum: Users
- Topic: Overlay one image on multiple (or single) image???
- Replies: 6
- Views: 3754
Re: Overlay one image on multiple (or single) image???
So for my situation, I would assume the following code would be what I need but it doesn't work. :( "C:\Program Files (x86)\ImageMagick-6.8.2-Q16\mogrify.exe" -alpha Set -draw 'image Dst_In 0,0 0,0 "C:\Users\ARSIMS\Desktop\efficiency\myOverLayImage.png"' mogrify_*.jpg Also, I assume mogrify_*.jpg ...
- 2013-06-13T11:24:53-07:00
- Forum: Users
- Topic: Overlay one image on multiple (or single) image???
- Replies: 6
- Views: 3754
Overlay one image on multiple (or single) image???
My work computer only has Windows 7 on it. Sometimes I need to overlay one image on many different images. Below is the code I am trying to use... but it doesn't work. I'm used to just using a loop in BASH and calling it good so I'm not totally familiar with `morgify`. I'm hoping someone can help me ...