FotoBuzz? It's time to dust off your digital photo archives and use FotoBuzz to really deliver the stories behind your photos. But FotoBuzz is not only a convenient tool for recreational use, it also shines as a collaboration tool. Use it for quick feedback on product or print mockups, or even to give a better explanation on your latest auction listing.
FotoBuzz Viewlet
image courtesy


Download:
FotoBuzz? 0.2 Viewlet and then follow the easy setup instructions
(Requires PHP 4.2.x+ Support)
Creative Commons License FotoBuzz? is licensed under a Creative Commons License and is not free for commercial use. Please contact us for pricing.

News:
04/26 Customizing FotoBuzz Part III

Our final planned tutorial involves customizing the server-side script, fotobuzz.php. A number of users have requested the ability to get email alerts when comments are added to an image. To achieve this functionality we've added 3 empty callback methods; onEntryAdd, onEntryDelete, and onEntryModify. If you open fotobuzz.php and look at the onEntryAdd method, you'll see the email example already there but commented out. Here's what it looks like.

function onEntryAdd($entry,$image) {
The example below sends an email when a new entry is added

$to = "";
$subject = "New Comment On: ".basename($image);
$message = "Title: ".$entry['title']."\n";
$message .= "Comment: ".$entry['content']."\n\n";
$message .= "From: ".$entry['authors'][0]['name']."\n";
$message .= "Email: ".$entry['authors'][0]['email']."\n";
$message .= "URL: ".$entry['authors'][0]['url']."\n";
mail($to,$subject,$message,"From: fotobuzz_mailer");
}
Each of the hookin methods passes in an entry object and the full image path. Documentation of the entry object is also provided in fotobuzz.php right above the hookin methods.

So now it's quite easy to tie fotobuzz updates into other scripts and let you get at the info you need. Want to see other examples or have a tutorial suggestion, just let us know.


04/21 Customizing FotoBuzz Part II

If you speak a language other than English, this one's for you. To localize FotoBuzz you simple have to translate a combination of just 16 phrases and keywords located in the file fbLang.js. We recommend using an editor that supports saving files in UTF-8 and testing your translations to make sure they show up properly in FotoBuzz. As an example, here's is the first keyword translated into a variety of languages:

English
var fbLangOk = "Ok";

Japanese
var fbLangOk = "??";

Spanish
var fbLangOk = "Sí";

French
var fbLangOk = "Oui";

German
var fbLangOk = "Ja";

Please feel free to email us with your translations and we will gladly include them with FotoBuzz as well as make them available for download.


04/18 Customizing FotoBuzz Part I

One of the first things you'll want to do after setting up FotoBuzz on your site is change how it looks. The way you're going to do this is just by adding more keywords to the class string associated with your images.

  • Here is a quick break down of all the options:

  • fbNotesOff - hide comments when the viewlet first loads
  • fbNumModeOff - use boxes instead of numbers to indicate image regions
  • fbCaptionsOff - hide the comment captions by default
  • fbDownloadOff - disable the "Save Image" button
  • fbShadowOff - hide the viewlet shadow
  • fbBorderOff - hide the viewlet border
  • fbBorderColor#{color} - set the border color
  • fbMatteOff - hide the viewlet matting
  • fbMatteColor#{color} - set the matte color
  • fbMatteSize{num} - set the matte size
  • fbRefresh{num} - set an automatic comment refresh interval (in seconds)
Remember you still need the word "fotobuzz" in the class string and you must separate each of your options with spaces. Let's look at an example:
fb_themed.jpg
Aside from the obvious style changes, the example includes an option to refresh the comments every 60 seconds. That's all there is to it.


04/15 FotoBuzz 0.2 Ready!

Long overdue, but hopefully worth the wait, FotoBuzz 0.2 is ready to go. In addition to upgraded looks the new release provides a lot more functionality and customization.

  • Here are some of the highlights:

  • Multiple comments per region. Great for back and forth conversation on a particular region.
  • Image region numbering. When you have a bunch of comments or want some logical sequencing this comes in quite handy.
  • Atom support. Now you can subscribe to FotoBuzz images and keep up with comments in your favorite news reader.
  • A smarter viewlet. FotoBuzz now keeps track of new and updated comments and with our new permission support, FotoBuzz knows which comments users make, allowing them to only edit their own.
  • Script Hook ins. Want to extend FotoBuzz for your own purposes, no problem.
  • Style control. Using simple CSS pseudo classes you can customize FotoBuzz to your own personal taste.

Over the next few days we'll be posting more about what you can do with FotoBuzz from getting email updates when new comments are made to localizing FotoBuzz to your language of choice.

Check it out and let us know what you think!


01/24 Working on FotoBuzz 0.2 We received a ton of good feedback on the first FotoBuzz release. Unfortunately, the 0.2 release is taking longer than expected, but we're trying to address as much of the feedback as possible for the next release. We don't want to leave everyone in the dark with respect to the current developments so below are the plans for the near future. If you feel like something major is being left out, please leave a comment.

New Features:
  • Script Hook-ins: This will make it much easier to extend the server-side scripts so you can do things like send an email alert when a new comment is made.
  • MySQL storage: FotoBuzz installations will have the option to store image annotations in a MySQL database.
  • New Comment Indicator: FotoBuzz will now keep track of the comments you've already seen.
  • Multiple Selection Comments: This will let you add a comment to a selection already on the image. The current release only allows one comment per selection.
  • Hide Comment Title: This will let you set an option so that only the selection box is visible and the full comment is shown when you rollover the selection. Currently the title comment is always visible.
  • Additional Comment Data: Instead of just providing a name, you'll be able to leave a URL and/or email address, and specify which fields are mandatory.
  • Options, options: We'll be adding a few more options to let you control what's displayed and current options like showing a shadow can now be set on a per image basis.
  • UI Changes: A few tweaks to fix some clunky interfaces.
  • Bug: Replace the blank dialog with an error message when unable the scripts are not able to write to the image.
  • Bug: URLs with spaces and other escaped characters causes problems at the moment.
  • Bug: A small bug prevents Linux users from loading pictures inside of FotoBuzz.

12/18 FotoBuzz integrated with CPG Matthieu Simon has posted a step by step guide explaining how to integrate FotoBuzz with Coppermine Photo Galleries. If you're looking for great photo album tool, CPG is definitely worth a look. Thanks Matthieu!
12/01 Using FotoBuzz with Expression Engine Want to use FotoBuzz with pMachine's Expression Engine? No problem. Yvonne has posted a great tutorial that show you how to use FotoBuzz with an EE photo gallery. The tutorial also covers setting up a restricted user mode and how to check for JPEG images since Flash does not support other formats.
11/30 Using FotoBuzz with Ecto Jonas Luster has posted a tutorial on using FotoBuzz with the popular blogging client, Ecto. The tutorial also shows you how to integrate FotoBuzz with Drupal. Thanks Jonas!
11/22 FotoBuzz + folderblog folderblog is a simple, clean, PHP-driven photoblogging utility written by Donald Tetto. Donald documented adding folderblog support for FotoBuzz on the folderblog wiki. With only a couple of small changes, you can have a photoblog with FotoBuzz support.
11/21 FotoBuzz DotClear Plugin Francois, the man behind HotLinks, has graciously contributed a plugin for the blogging tool, DotClear, that lets you use FotoBuzz with posted images.

You can download the plugin here.
11/20 FotoBuzz for Documentation FotoBuzz is great for documenting the latest weekend snapshot of the extended family, but it has to be able to get work done during the week just like everyone else. FotoBuzz can be used to document product pictures, screenshots of running software, and so forth.

We've started using FotoBuzz to document our screenshots of Gush. Before our screenshots were static images display Gush's pretty interface, but new users were probably perplexed with all the new features. So by using FotoBuzz on our screenshots a web visitor can just mouse over the annotations and get a description of the feature. See for yourself.
11/20 FotoBuzz Viewlet 0.1 Released! We're proud to announce the first release of the FotoBuzz viewlet. With just a few small changes to your existing website you can have image commenting.

This release of FotoBuzz requires PHP or Python support on your server and version 7 of the Flash Player. Since comments are actually stored inside your images, there is a current limitation that your images must be on the same server as the FotoBuzz script files.

The download includes a sample page to test your setup and our how to page shows you how to modify your existing pages to support FotoBuzz.

Give it a try and let us know what you think! Finally, comment on images the way you were always meant to!

Creative Commons License
Except where otherwise noted, this site is
licensed under a Creative Commons License