Unknown's avatar

About Ludwig

Lending a helping hand where I can. . . My motto: If it is worth doing, it is worth doing well.

How do I send pictures by attaching to email rather than using Photo Email?

Windows Live Photo Gallery together with Windows Live Mail provides “Photo Email” for sharing pictures in an efficient and pleasant way. I described the feature a while back (links below). But sometimes you might want to send pictures as attachments to an email.

Steps for sending photos as attachments

In Windows Live Photo Gallery, select the photos. imageClick the text part (or the down arrow) of the Photo email command. On the little drop-down menu click “Send photos as attachments”. See the illustration here.

Next you will be offered to specify the image size to be sent. The default size is 1024 by 768 pixels (the maximum dimensions, if an actual dimension is smaller that will be retained). You can select Original size or several other sizes.image

After you have clicked the size you want click Attach.

Your default mail client “new message” window will open with the photos already shown as attachments.

If Windows Live Mail is your default client, it will come up with the Photo Album Tools tab active and showing that the photos are attached. You have the option of changing to a photo email instead of sending them as attachments.

imageThe Live Mail “New message” window permits you to change from photo email to the attach method even if you started out specifying the photo email option.

The “paper clip” icon in the “Album style” group specifies “attach”. Clicking on any of the other styles makes the email a photo email.

The illustrations here show the options in the Photo Album Tools tab. image

To make the tab visible click on the photo layout in the message area of your email.

NOTE:

When sending pictures as a photo email or by attachment, the Windows Live Photo Gallery “publish” options are not applied. Any metadata in the image files will be retained in the photos and sent to the recipient.

If you do not wish to share such data remove it from the file before sending it.

Also see: Set Photo Gallery to remove sensitive data from photos prior to uploading.

 

On the recipients side

The recipient of the email with photos attached gets the message and all theimage attachments. That is the time-consuming and often annoying aspect of attachments, since they are downloaded to the recipients computer before the recipient can see the email.

In Windows Live Mail, attached photos are shown by small thumbnails (except for very large files). To save the attached photos the recipient can right-click and select the appropriate action.

 

When using Hotmail in a browser, similar thumbnails are displayed. imageThere is a download option shown on each, or all the photos can be downloaded as a zip file.

There is a nice viewing feature called “Hotmail active view” which permits viewing the individual photo, or a slide show of all attached photos. This allows the recipient to see and enjoy the pictures without having to download them.

image

You may wish to also see my post Photo Email–from Photo Gallery to Friend’s Inbox or my article at Microsoft based on that post: Explore Windows – Photo Email.

.

.:.

Why does Picasa Web Albums not show location data from my GPS camera?

Your camera writes GPS geographic coordinates to the metadata of your photos. This location information may be stripped out during upload to the web or might not show due to your privacy settings in your Picasa Web Albums.

First make sure that there is indeed location data in your picture files. Check your camera settings to make sure that the GPS data is recorded. After importing photos to your computer, right-click on a file name, imageselect Properties. On the Details tab scroll down. GPS data is shown below the Advanced Photo section and above the File section. It should look somewhat like the image on the right.

If you are using Windows Live Photo Gallery to upload your files to your Picasa Web imageAlbums, check the Publish settings. Click the blue File tab, select Options, then click the Publish tab.

Make sure that the “Include all file details except…” option is selected.

Note that any boxes checked means that the information is removed from the file before it is uploaded. So make sure that Location information is not checked.

If you use another program to upload your files, check its settings to make sure that the GPS data is not removed. Many programs remove such data by default to protect the users.

 

Once you have made sure that the information is uploaded, sign in to your Picasa Web Albums. In the upper right click on “Settings” or the little gear imagesymbol (the appearance is different in some browsers), click on Photo settings.

image

On the Settings page, click the Privacy and Permissions tab.

image

On this page you can specify a number of options. To display the location data, click on Automatically map photos if they contain location data so the check mark shows. Click Save changes.

Your photo locations should now be displayed for all photos that contain GPS data.

Warning!

Be extremely careful about showing location or other information that can be used by criminals to bring harm to you or others. Clear GPS and other sensitive metadata from pictures that could be misused before uploading them.

.:.

How do I replace the DSC prefix on my photo file names?

Most “Digital Still Cameras” assign the file names of the photos in this format: “DSC_nnnn.xxx”. The “nnnn” is a four-digit number and the “xxx” the file type, often “JPG”, but it can also be another extension. For example for Nikon “raw” files the extension is “NEF”. The first four characters can be changed in some cameras, but most just set the “DSC_” prefix.

Of course, you can change this by renaming the file. Doing that one at a time is not practical, so here is the procedure I use for doing “batch” renaming. I use a “Windows Batch File” to do this chore.

Creating a Windows Batch File

imageOpen Notepad and type in the Windows “command line” commands. See the illustration here. My first command starts with “REM”. That stands for “remark” and does nothing. It is just used to tell me what the batch file does.

The next command is “cd %1”. The “cd” part stands for “change directory”. This is old language dating back to the time before “folders” were called “folders”, they were “directories”. The command is equivalent to you clicking on a folder in the navigation pane of Windows Explorer. The “%1” part tells the command to use the “command line parameter” that was passed to the program. That sentence probably means nothing to you, don’t fret. You will see shortly how we pass the folder name to the batch file program – by just dragging it to the bat file icon.

The last line is “rename DSC_????.* LK6A????.*” Now here the first term is easy enough, “rename” means just that (you can also use just “ren”). This is followed by the name of the file (or files) to be renamed. The first part is clear enough. The question marks each stand for “whatever character is there”. There are four question marks to specify the four numeric characters in the photo file name. The period follows the numbers. The asterisk after the period says “whatever follows the period”.

Now the new name is entered. This is the same except for the first four characters. I use my initials followed by a “camera identifier character” (“6”) and that is followed by the letter “A” in my case. You can specify any four characters, no fewer and no more, or else the command will do “unexpected things”.

Save the file to your desktop, using Save as and giving it a name. I use “renameDSC”. imageSince you created it with Notepad is is just a plain text file, not a “batch program” yet. If the icon on the desktop shows just the name without an extension, reset the viewing options to make the next step easier: Open Windows Explorer (StartComputer). Click on Desktop (at the top in navigation pane). Click Organize then Folder and search options. In the Folder Options dialog click the View tab. imageFind the option reading “Hide extensions for known file types”. Click it to uncheck the box. Click OK then close Windows Explorer.

Now the extension of the file you created will be visible, it will say “renameDSC.txt”.

Click on the icon to select it, a moment later click on the name. This opens the rename box. image

 

 

 

 

 

Replace the “txt” extension with “bat”. The “bat” stands for “batch file” and imageindicates to Windows that it is a batch program. Press Enter. There will be a warning message. Click Yes to perform the rename operation.

You now have created a “batch program” and the icon will now show the “gears” image:

image

If you wish you can reset the option to hide the extensions of “know file types”. 

You can edit and revise the batch file by right-clicking the icon and selecting Edit – this opens Notepad. When you are finished save the file. It will remain a batch file, so there are no further hoops to jump through.

 

You are now ready to perform the renaming operation. You will find this fast and easy – now that you have a desktop program for doing so.

 

Renaming the DSC files

After importing your photos, open Windows Live Photo Gallery. Find the folder or folders of the new photos in the navigation pane.

image

Now just drag the folder name to your batch program.

image

You will see the “Command prompt” window open momentarily and carry out your instructions. If you folder contains a small number of photos you might not even notice the operation. But take a look at the thumbnails. If you have the display showing the file names, you will see that they all have been renamed.

Do this for any other folder containing photo files that need renaming. It takes just a couple of seconds, but you do have to do it one folder at a time. You will find this quick and easy and fun to do.

.

.:.