Installing legacy components fixed the issue. Feel free to mark thread as resolved.
Thanks,
Search found 16 matches
- 2018-10-11T10:31:38-07:00
- Forum: Users
- Topic: Montage.exe in ImageMagick-7.0.8-12-Q16-x64-dll
- Replies: 3
- Views: 3765
- 2018-10-11T09:35:07-07:00
- Forum: Users
- Topic: Montage.exe in ImageMagick-7.0.8-12-Q16-x64-dll
- Replies: 3
- Views: 3765
Re: Montage.exe in ImageMagick-7.0.8-12-Q16-x64-dll
I didnt realize montage was legacy... thank you very much. We will try that again and report back today.
Take care
Take care
- 2018-10-11T09:02:05-07:00
- Forum: Users
- Topic: Montage.exe in ImageMagick-7.0.8-12-Q16-x64-dll
- Replies: 3
- Views: 3765
Montage.exe in ImageMagick-7.0.8-12-Q16-x64-dll
Hello, I have updated IM on a user's PC to ImageMagick-7.0.8-12-Q16-x64-dll. We call montage.exe via PowerShell and are now receiving errors: 'PS C:\Users\bennort> \\Path\Script.ps1 E:\image.jpg Thursday, October 11, 2018 10:32:41 AM Creating contact sheet bennort montage : The term 'montage' is not ...
- 2018-08-22T06:43:23-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
I took your advice, and cut out all the extra steps and simply omitted both the text file and the variable naming the files with a direct path to the files themselves (they are in one folder). My previous methods would only allow around 1k images, but by doing this I was maintaining success with ...
- 2018-08-21T05:15:55-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
Woops, sorry about that: https://stackoverflow.com/questions/519 ... -text-file
There are a few options i thought of this morning, perhaps piping the document into the montage command will relieve the errors.
There are a few options i thought of this morning, perhaps piping the document into the montage command will relieve the errors.
- 2018-08-20T13:01:56-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
Thanks again for all your help, I am still having issues using the '@' operator. It may be conflicting with the PowerShell language etc. I opened a thread on Stack Overflow for more specific help with PowerShell. If you have time to give it a look it may help better explain my issue. When using the ...
- 2018-08-17T13:05:10-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
Can you describe how to use the '@'? I have all the filename paths written to a text document now, $contactSheetFiles. The paths are separated by new lines like so: E:\Output\Image1.jpg E:\Output\Image2.jpg E:\Output\Image3.jpg Then I use similar code as before montage -verbose -label %t -pointsize ...
- 2018-08-17T11:39:12-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
OK, I can look into that. Does that really explain why everything worked fine all the way up to X number of images and then resulted in this error when it was X+1? The only thing that changed between successful and unsuccessful runs was the addition of a few more images to the source. $dailyimages ...
- 2018-08-17T10:54:38-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
I recreated the error by incrementally adding more images to the source folder until the script failed and produced the following error, 'Program 'montage.exe' failed to run: The filename or extension is too long'.
- 2018-08-17T10:23:12-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
Snibgo, I made a correction to my last response. I was referring to creating a contact sheet that is 15 images across and the number of rows would be determined by the total number of images divided by 15. For instance if there's 60 images, 60/15= 4, so 4 rows of 15 images. Sorry for the confusion ...
- 2018-08-17T09:28:47-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Re: Montage output multiple files when pixel limit met
$contactSheetRows will be equivalent to the number of total images for each contact sheet divided by 15. My logic was that 15 columns was 'aesthetically pleasing' and I didn't want blank rows. It sounds like you are suggesting that I have created my own limitations by doing this, and that if I do ...
- 2018-08-17T08:28:54-07:00
- Forum: Users
- Topic: Montage output multiple files when pixel limit met
- Replies: 15
- Views: 8190
Montage output multiple files when pixel limit met
Hello, I use image magick montage to create 'contact sheets' for my photography team. From time to time the total number of images exceeds the pixel dimension limitation and the script 'fails', creating no image. Here is my current code: montage -verbose -label %t -pointsize 25 -background '#FFFFFF ...
- 2017-11-13T13:28:07-07:00
- Forum: Users
- Topic: Create Contact Sheet Large Recursive Directory
- Replies: 4
- Views: 4194
Re: Create Contact Sheet Large Recursive Directory
Using PowerShell's 'Get-ChildItem' I have successfully generated a Contact Sheet from multiple directories by doing the following: foreach ($dailyPhotoBay in $dailyServerPath) { $dailyImage = Get-ChildItem -Path $dailyPhotoBay -Include *.jpg -Recurse | Where-Object {$_.PSParentPath -like "*Output ...
- 2017-11-13T11:19:46-07:00
- Forum: Users
- Topic: Create Contact Sheet Large Recursive Directory
- Replies: 4
- Views: 4194
Create Contact Sheet Large Recursive Directory
Hello Image Magick Community, I have found several tutorials regarding contact sheets using the montage command. However, I have not found any that provide instruction on how to create a contact sheet from multiple directories or even a recursive directory. Is anyone aware of how to perform this ...
- 2017-05-04T06:57:49-07:00
- Forum: Users
- Topic: Montage Label with Wildcard - .bat script
- Replies: 2
- Views: 5156
Re: Montage Label with Wildcard - .bat script
Great - this works. Thanks @snibgo