Search found 19 matches

by Flaver-D
2019-10-04T08:56:39-07:00
Forum: Users
Topic: Need help upgrading script
Replies: 2
Views: 5375

Re: Need help upgrading script

Thanks for the tip. The %%t is what was needed to get rid of the extension. I really wasn't aware of this switch before. Yes, I did chop off those 2 labels so that I wouldn't overwhelm people with what is essentially redundant stuff. Maybe I should have detailed what the script does in more detail. ...
by Flaver-D
2019-10-03T15:29:40-07:00
Forum: Users
Topic: Need help upgrading script
Replies: 2
Views: 5375

Need help upgrading script

imagemagick version ImageMagick-7.0.8-67-Q16-x64 Windows 10.0.18362 (build 18362) Hi! I'm currently working on bringing a script I wrote something like 10 years ago up to speed. Lets just say it's a bit of a mess so I'm hoping somebody has an idea on how to improve it. The script is used to create i...
by Flaver-D
2017-04-04T13:08:54-07:00
Forum: Users
Topic: Asymetric border
Replies: 3
Views: 4430

Re: Asymetric border

Well... that was fast and easy!
Thanks a million.... somehow I just kept taking the hard route...

Now, I'm off to step two, putting them into a grid using the montage function :D
by Flaver-D
2017-04-04T12:57:59-07:00
Forum: Users
Topic: Asymetric border
Replies: 3
Views: 4430

Asymetric border

Hi! I'm trying to take a bunch of images, resize them to 425x283 and then add a black asymmetric border to them to make the final images 450x413 with the image in the center of the final image. So far, using the Mogrify -thumbnails 425x283 does a good job getting them to size. But I really don't kno...
by Flaver-D
2017-02-26T07:40:38-07:00
Forum: Users
Topic: Increase bit depth with multiple scans
Replies: 6
Views: 5282

Re: Increase bit depth with multiple scans

I'm going at it from a photographic standpoint. I know the digital sensor has at best a 3 f/stop range from highlight to shadow. I also know that a B&W film can record a maximum of 9 f/stops (being very optimistic here). So, if I take 3 scans of the negative at different shutter speeds, I should...
by Flaver-D
2017-02-25T12:09:18-07:00
Forum: Users
Topic: Increase bit depth with multiple scans
Replies: 6
Views: 5282

Re: Increase bit depth with multiple scans

The main problem is that I plan on doing this with a raspberry pi... it's pretty limited on the hardware side. I'm going to have to experiment a bit. I did come across this late last night convert *.tif -evaluate-sequence mean test.tif I think I'm going to go from there and see how far I can push th...
by Flaver-D
2017-02-24T16:20:03-07:00
Forum: Users
Topic: Increase bit depth with multiple scans
Replies: 6
Views: 5282

Increase bit depth with multiple scans

Hi! I'm starting to work on yet another project and still have no idea where to begin. I'm thinking of building a special film scanner using a RaspberryPi to capture the images and then send them to my PC for processing. I want to get some tiffs at 16 bit per pixel, but the device I plan on using wi...
by Flaver-D
2015-12-27T15:58:18-07:00
Forum: Users
Topic: Adding filename to image
Replies: 9
Views: 12112

Re: Adding filename to image

Finally nailed it... all I needed to do was quote the files like this for %%f in (*.jpg) do ( echo %%~nf convert -quiet -size 2550x120 xc:white -font arial -pointsize 50 -annotate +20+80 "%%~nf" -trim +repage -bordercolor white -border 10 text%%~nf.mpc" convert "%%~nf.jpg" -...
by Flaver-D
2015-12-27T14:51:08-07:00
Forum: Users
Topic: Adding filename to image
Replies: 9
Views: 12112

Re: Adding filename to image

I tried but the box in which the text was was still too small...
by Flaver-D
2015-12-27T14:23:18-07:00
Forum: Users
Topic: Adding filename to image
Replies: 9
Views: 12112

Re: Adding filename to image

OK! I finally got it to do what I wanted to... almost. The script works super well but chokes on filenames containing dashes and spaces, especially the first command. Granted I didn't make it pretty, but it almost works. Here's what I do: I first make a file containing the text that I want using con...
by Flaver-D
2015-12-27T13:01:18-07:00
Forum: Users
Topic: Adding filename to image
Replies: 9
Views: 12112

Re: Adding filename to image

OK, I've been working on it and have gone 99% of the way using this for %%f in (*.jpg) do ( echo %%~nf convert %%~nf.jpg -verbose -filter triangle -resize 3300x3300 -gravity center -extent 2550x3300^ +repage -negate -blur 20x20 -gravity southwest -undercolor white -fill black -font arial^ -pointsize...
by Flaver-D
2015-12-27T08:57:44-07:00
Forum: Users
Topic: Adding filename to image
Replies: 9
Views: 12112

Re: Adding filename to image

Sorry for some of the missing explanations and details. I'm new to IM so bare with me. I'm running IM 6.9.2-10 Q16 x64 on Windows 10 What I'm planning on doing is taking the original image (which will be square) and blowing it up to fit an 11x11 inch page, cropping it back to 8½x11 so that it fits p...
by Flaver-D
2015-12-27T08:47:49-07:00
Forum: Users
Topic: Multiple operations... I'm lost!
Replies: 6
Views: 8818

Re: Multiple operations... I'm lost!

Just what I did...

BTW, I'm running IM 6.9.2-10 Q16 x64 on Windows 10
by Flaver-D
2015-12-26T16:10:30-07:00
Forum: Users
Topic: Adding filename to image
Replies: 9
Views: 12112

Adding filename to image

Hi! I'm working on a project and I'm really stuck on this one. I have a bunch of Jpegs on which I would like to write the file name (minus the full path and extension) on the bottom left of the image (leaving a small gap so that it doesn't get cut out by the printer). To be more precise, I have many...
by Flaver-D
2015-12-26T09:06:26-07:00
Forum: Users
Topic: Multiple operations... I'm lost!
Replies: 6
Views: 8818

Re: Multiple operations... I'm lost!

That's exactly it! I did manage to do something late last night using mogrify but the composite part was really annoying me as all I could get was some odd transparency effect that just didn't work. Now that I got the basic gist of it, I can tweak it all so I can get the best effect for my project. ...