Help with watermarking photos downloads with corresponding URLs


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help with watermarking photos downloads with corresponding URLs
# 1  
Old 08-21-2010
Help with watermarking photos downloads with corresponding URLs

Hi Everybody Smilie

Once again I seek the wisdom of the communitySmilie

I wish to accomplish a task on the command line that involves watermarking download photos with the URL that they originated from. So far I have a command that downloads images from Picasa and creates a file of the URL addresses. I also have another command involving "mogrify" which watermarks the photos. I am missing the step where I can watermark the photos with their corresponding URLs. Any help would be appreciated, thanks.

Code:
GET " http://picasaweb.google.com/data/feed/base/all?alt=rss&kind=photo&access=public&filter=1&q=FOOBAR&hl=en_US" |sed 's/</\n</g' | grep media:content |sed 's/.*url='"'"'\([^'"'"']*\)'"'"'.*$/\1/' > picasalist; wget -c -i picasalist;

Code:
mogrify -font helvetica -pointsize 12 -gravity southwest -draw 'fill black text 1,1 "FOOBAR!" fill white text 2,0 "FOOBAR!"'  *.jpg



---------- Post updated 08-21-10 at 04:36 PM ---------- Previous update was 08-20-10 at 05:27 PM ----------

Does anybody know if what I'm trying to achieve is possible to accomplish in the simple manner I'm suggesting?
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Free O/S for Unix downloads

Can I download Debian or SUSE for free? If so, from where on the internet can I get a free version of Unix? (3 Replies)
Discussion started by: jsb1022
3 Replies

2. Solaris

Downloading JDK - Different types / downloads ?

Hi all I need to update the current jdk_1.5.0_11 to a higher version, as requested by other developing house. However, looking on the net / sun's site, whats all the differences between jdk with javaFX, or Java EE or java SE ? Im assuming that you can download a base developer kit, and... (3 Replies)
Discussion started by: sbk1972
3 Replies

3. Post Here to Contact Site Administrators and Moderators

downloads on sidekicks

I downloaded the terminal client on my sidekick one and I am trying to figure out what is the right host to log in to unix,in order to use its feature. (0 Replies)
Discussion started by: elwil
0 Replies

4. Linux

fair downloads with flashget, reget etc.

I would like to shape multi-threaded downloaders (like flashget, reget etc.) but I don't want to make a limit on connections less then two (i.e. you download something from an ftp and want to browse this ftp at the same time). I found a pack of utilities - iproute2 and found a patch to linux kernel... (0 Replies)
Discussion started by: bobbyk2002
0 Replies

5. Cybersecurity

Viruses in downloads/webs

How secure are downloads from unix.com, linux.com, etc? Not talking about off the wall individual user sites, but sites like unix.com, download.com, tucows.com? We've been inundated at work lately from viruses, and I want to make sure that for things like work related downloads, that those kind... (5 Replies)
Discussion started by: kymberm
5 Replies

6. Shell Programming and Scripting

online halo any downloads?

Someone told me that I can download a thing that I can play Halo over the Internet for xbox (1 Reply)
Discussion started by: memattmyself
1 Replies
Login or Register to Ask a Question