FlyerTalk Forums - View Single Post - "View from Your Hotel Room" [Was TPF Contest]
Old Oct 21, 2007, 8:12 am
  #101  
sbm12
A FlyerTalk Posting Legend
 
Join Date: Apr 2001
Location: PSM
Posts: 69,232
Originally Posted by AC110
Europe and Africa across the strait en route Paris-Casablanca

This is one of my sentimental favourites, if not my best.

If anyone can tell me how to actually embed the photo in the post I'd appreciate it. I suspect that the forum code doesn't like the picasaweb url format.
In looking at my Picassa Web album I have the option when looking at an individual photo to "link to this photo" in the right side toolbar. I end up with a link that looks like this when I click on that option:
Code:
<a href="http://picasaweb.google.com/kraft.michaels/Reunion2006/photo#5063697458581166914">
<img src="http://lh3.google.com/kraft.michaels/RkXeAozHW0I/AAAAAAAAACU/-B3YJfDAa88/s400/IMG_1074.JPG" />
</a>
There are a couple important pieces in there that are useful. First, you don't actually want the "A HREF=" tag, so that should be deleted, as should the /a tag that closes it (the stuff in red), leaving you with this:
Code:
<img src="http://lh3.google.com/kraft.michaels/RkXeAozHW0I/AAAAAAAAACU/-B3YJfDAa88/s400/IMG_1074.JPG" />
The other important bit is the s400 that I bolded & made green above. That part of the URL controls the size that the image is rendered in. The acceptable values are s144, s288, s400, s640, s720 and s800.

Using the above process I end up with the following URL for your picture of crossing the Straits of Gibraltar:
Code:
http://lh6.google.com/rob.scaife/RxocR7lAotI/AAAAAAAACMs/LczZn9DOpfw/s400/IMG_2008.jpg
Putting that in the image tags in this forum renders this:


The other way to get the correct URL for the image would be to right-click on it and choose properties. In the "Address (URL)" field you'll have something that looks like this:
Code:
http://lh6.google.com/rob.scaife/RxocR7lAotI/AAAAAAAACMs/LczZn9DOpfw/IMG_2008.jpg?imgmax=720
That is basically the same URL, but with the size information at the end rather than at the beginning. If you choose that format you still have to use a "valid" value for the image size, which is the same set of numbers that I listed above (and there may be others but those are the ones I know work).

I hope this helps!

S.
sbm12 is offline