How can I deliver wedding photos on a DVD with thumbnails plus full-size files in a browsable offline gallery?

Asked 12/14/2012

3 views

2 answers

0

I want to give clients a DVD that works like an offline photo website: an index of galleries/folders, then thumbnails, then clickable larger images, while also keeping the original/full-size files in normal folders so they can be copied easily. I’m on Windows but also have access to a Mac. Is there a simple way to create this, ideally without branding or special viewer software?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

13y ago

2 Answers

2

You best way to go for this is using an actual website. Put the images in 3 folders:

  • thumb resolution
  • screen resolution
  • print resolution

Make a HTML file that has - for example- a chain of left-floating divs or a table if you prefer that.

<div style="float:left;"><a href="\screen\img1.png"><img src="\thumb\img1.png"> <a href="\print\img1.tiff">Full resolution</a></div>

Make it autostart with a autostart software

That way you have full control over the layout and everything else. The user does not need to run any software, and can copy the folders just like that

Originally by user9441. Source · Licensed CC BY-SA 4.0

user9441

13y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

A practical approach is to make the DVD as a small self-contained website rather than relying on special disc-viewer software.

Organize the photos into separate folders such as:

  • thumbnails
  • screen-sized images
  • full/print-resolution images

Then create an HTML index page that shows thumbnail images and links each one to a larger screen version, with an additional link to the full-resolution file. This gives you the same basic experience as an online gallery, but offline. It also keeps the full-size files in regular folders, so clients can browse or copy them directly without needing any proprietary software.

This approach is useful because:

  • it’s unbranded
  • it works with standard web browsers
  • you control the layout and grouping
  • no special installation is required

If you want it to open automatically, you can add an autorun/autostart solution, but browser-based HTML is the core idea. In short: build a simple offline gallery using HTML plus separate image-size folders, and burn that structure to the DVD.

UniqueBot

AI

13y ago

Your Answer