Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Date stamping on prints of digital photos
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Tim  
View profile  
 More options Dec 28 2003, 2:11 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: "Tim" <tdo...@twcny.rr.com>
Date: Sat, 27 Dec 2003 15:11:47 GMT
Local: Sun, Dec 28 2003 2:11 am
Subject: Date stamping on prints of digital photos
When we used a film camera, the resulting prints had the dates on which we
took the photos stamped in one of the lower corners. We (my wife and I)
really liked this feature because it made arranging photos chronologically
in photo albums very easy. I bought her a digital camera for her birthday
last spring and we enjoy it all other respects, but we have yet to find a
print developer that can date stamp the prints. We could do this manually by
looking up the dates using the photo editing software on our computer, but
that's pretty cumbersome (example: as I write this, I have 71 images on a
CD-RW waiting to be printed).

Does anyone in this newsgroup know of a digital print developer (Web-based
or retailer) that can date-stamp digital prints? I looked at Kodak's Web
site this morning for information on their Picture Maker (a supermarket near
our house has one), but I didn't see anything that indicates that the
machine can do this. Any suggestions?

Thanks.
Tim

--


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
stan  
View profile  
 More options Dec 28 2003, 5:32 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc
From: s...@temple.edu
Date: 27 Dec 2003 16:52:58 GMT
Local: Sun, Dec 28 2003 3:52 am
Subject: Re: Date stamping on prints of digital photos
In rec.photo.digital Tim <tdo...@twcny.rr.com> wrote:

> When we used a film camera, the resulting prints had the dates on which we
> took the photos stamped in one of the lower corners. We (my wife and I)
> really liked this feature because it made arranging photos chronologically
> in photo albums very easy. I bought her a digital camera for her birthday
> last spring and we enjoy it all other respects, but we have yet to find a
> print developer that can date stamp the prints. We could do this manually by
> looking up the dates using the photo editing software on our computer, but
> that's pretty cumbersome (example: as I write this, I have 71 images on a
> CD-RW waiting to be printed).

Most digital cameras have a feature where it will imprint the data directly
onto each image. Frankly, I think this is a lousy idea to use, but to each
his own. Check your camera's documentation to see if it has this feature.

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Med Bennett  
View profile  
 More options Dec 29 2003, 5:20 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: Med Bennett <no.s...@this.address.please>
Date: Sun, 28 Dec 2003 11:18:24 -0700
Local: Mon, Dec 29 2003 5:18 am
Subject: Re: Date stamping on prints of digital photos
I could easily wite a small program to do this with a graphics/analysis
package called IDL, by looping through the images, reading header and
image, writing the time/date info to the image, and resaving the image.
I am sure that it wouldn't be too hard in C either, but I don't know
that.  Surely someone has written such a utility or built it in to their
software, but I don't know of it.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
l v  
View profile  
 More options Dec 29 2003, 10:12 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: l v <l...@aol.com>
Date: Sun, 28 Dec 2003 17:11:35 -0600
Local: Mon, Dec 29 2003 10:11 am
Subject: Re: Date stamping on prints of digital photos

ImageMagick (free) can do this.  It is command line driven vs GUI.

The command is as follows to take input file 11.jpg, creates 11.2.jpg
and places exif's original date/time in the farthest bottom right using
orange text sized at 24 points. -quality 100 means zero compression on
the output jpeg.  You can change any of the parameters, other paramaters
are not listed i.e. -font  Arial.ttf

convert 11.jpg -gravity SouthEast -fill orange -pointsize 24 -draw "text
  1,25  '%[exif:DateTimeOriginal]'" -quality 100 11.2.jpg

put the following on one line in a batch file called add_datetime.bat
(for windows)
convert %1 -gravity SouthEast -fill orange -pointsize 24 -draw "text
1,25  '%%[exif:DateTimeOriginal]'" -quality 100 %2

Then you can execute it by...
add_datetime.bat 11.jpg 11.2.jpg

To do the entire directory of jpegs and update the existing file:
for %f in (*.jpg) do add_datetime.bat %f %f

To do the entire directory of jpegs and create a new file named .jpg.jpg:
for %f in (*.jpg) do add_datetime.bat %f %f.jpg

or put them in a sub-directory called updated using the same name:
for %f in (*.jpg) do add_datetime.bat %f updated/%f

Obviously, you will only want to update copies of your files regardless
of the method you use.

Len


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rolf Egil Sølvik  
View profile  
 More options Jan 10 2004, 7:57 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: Rolf Egil Sølvik <rolfr3m0V3e...@c2i.net>
Date: Fri, 09 Jan 2004 21:57:42 +0100
Local: Sat, Jan 10 2004 7:57 am
Subject: Re: Date stamping on prints of digital photos

On Sat, 27 Dec 2003 15:11:47 GMT, "Tim" <tdo...@twcny.rr.com> wrote:
>When we used a film camera, the resulting prints had the dates on which we
>took the photos stamped in one of the lower corners. We (my wife and I)
>really liked this feature because it made arranging photos chronologically
>in photo albums very easy. I bought her a digital camera for her birthday
>last spring and we enjoy it all other respects, but we have yet to find a
>print developer that can date stamp the prints. We could do this manually by
>looking up the dates using the photo editing software on our computer, but
>that's pretty cumbersome (example: as I write this, I have 71 images on a
>CD-RW waiting to be printed).

DCE AutoEnhance will add text to the picture - date and time from the
embedded EXIF information - where you want it to go, as well as
enhance the pictures: http://www.mediachance.com/dce/features.html

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David  
View profile  
 More options Jan 10 2004, 2:55 pm
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: "David" <dkbowmanspamisreallyannoy...@cox.net>
Date: Fri, 9 Jan 2004 22:52:40 -0500
Local: Sat, Jan 10 2004 2:52 pm
Subject: Re: Date stamping on prints of digital photos
no, i'm not an employee of Adobe. However, their program "Adobe Photoshop
Album 2.0" would be ideal to put photos in order. The starter edition is
free, and if you register it with them there's no expiration. I just
downloaded the starter edition, and am seriously considering getting the
full version.

go to http://www.adobe.com/getstarteredition

David
"Rolf Egil Sølvik" <rolfr3m0V3e...@c2i.net> wrote in message
news:dl4uvv4dse5asosjuld3mvrioojmv4tpjj@4ax.com...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Adobe Photo Albem 2.0 vs 1.0 [was: Date stamping on prints of digital photos]" by Manzoorul Hassan
Manzoorul Hassan  
View profile  
 More options Jan 20 2004, 2:14 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: manz...@intrnauts.com (Manzoorul Hassan)
Date: 19 Jan 2004 07:14:00 -0800
Subject: Adobe Photo Albem 2.0 vs 1.0 [was: Date stamping on prints of digital photos]
I bought Adobe Photo Album v1.0 about a year ago and am having trouble
with the dates on my pictures (both taken with Digital Camera and 35mm
film). It seems that the date stamp is being generated (incorrectly, I
might add) and added by Photo Album as/when I add them into Photo
Album :o(

Maybe they've fixed it with 2.0?? Or, maybe I'm doing it wrong. It
could be that I need to import the pix from my digital camera with
Photo Album.

- manzoor


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
David  
View profile  
 More options Jan 20 2004, 3:23 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: "David" <dkbowmanspamisreallyannoy...@cox.net>
Date: Mon, 19 Jan 2004 11:20:35 -0500
Local: Tues, Jan 20 2004 3:20 am
Subject: Re: Adobe Photo Albem 2.0 vs 1.0 [was: Date stamping on prints of digital photos]
i haven't had this problem with 2.0

David

"Manzoorul Hassan" <manz...@intrnauts.com> wrote in message

news:def4b6a3.0401190714.3eec3cbc@posting.google.com...
> I bought Adobe Photo Album v1.0 about a year ago and am having trouble
> with the dates on my pictures (both taken with Digital Camera and 35mm
> film). It seems that the date stamp is being generated (incorrectly, I
> might add) and added by Photo Album as/when I add them into Photo
> Album :o(

> Maybe they've fixed it with 2.0?? Or, maybe I'm doing it wrong. It
> could be that I need to import the pix from my digital camera with
> Photo Album.

> - manzoor

> "David" <dkbowmanspamisreallyannoy...@cox.net> wrote in message

<news:CIKLb.59407$Fg.10683@lakeread01>...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Larry CdeBaca  
View profile  
 More options Jan 20 2004, 7:05 am
Newsgroups: rec.photo.digital, rec.photo.help, rec.photo.misc, alt.photography
From: "Larry CdeBaca" <lcdeb...@comcast.net>
Date: Mon, 19 Jan 2004 13:05:33 -0700
Local: Tues, Jan 20 2004 7:05 am
Subject: Re: Adobe Photo Albem 2.0 vs 1.0 [was: Date stamping on prints of digital photos]
Then there's the easy-to-overlook setting -- is your PC clock set to the
correct time & date?
XP can synchronize with an internet timeserver. Either you're not
synchronizing, you're synched to the wrong server, or I don't know what I'm
talking about. The last is most likely, just taking a friendly guess.

"Manzoorul Hassan" <manz...@intrnauts.com> wrote in message

news:def4b6a3.0401190714.3eec3cbc@posting.google.com...
> I bought Adobe Photo Album v1.0 about a year ago and am having trouble
> with the dates on my pictures (both taken with Digital Camera and 35mm
> film). It seems that the date stamp is being generated (incorrectly, I
> might add) and added by Photo Album as/when I add them into Photo
> Album :o(

> Maybe they've fixed it with 2.0?? Or, maybe I'm doing it wrong. It
> could be that I need to import the pix from my digital camera with
> Photo Album.

> - manzoor

> "David" <dkbowmanspamisreallyannoy...@cox.net> wrote in message

<news:CIKLb.59407$Fg.10683@lakeread01>...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google