Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

mooty

macrumors regular
Original poster
Mar 7, 2006
142
0
UK
Hi All,

I've got a site with something like 1500 photos on it being constantly updated. I found this site : www.livereflections.com which allows you to create reflection preferences and it'll reflect whatever image in real-time... Seems pretty simple.

Does anyone else use livereflections? It seems I can dynamically call their site with whatever image so could save me loads of time!

Thx for any feedback.
 
hmmm, seems okay, but my biggest gripe with that is its javascript, AND only works with browsers that support canvas. I'm looking for something with minimal impact on my scripts, and is always browser compliant, which is why the livereflections thing would work well... Plus it keeps the reflection generation off my server :)

looks like png/gif is round the corner though on livereflections. I mailed the developer and he mentioned a release this weekend... :cool:
 
mooty said:
hmmm, seems okay, but my biggest gripe with that is its javascript, AND only works with browsers that support canvas. I'm looking for something with minimal impact on my scripts, and is always browser compliant, which is why the livereflections thing would work well... Plus it keeps the reflection generation off my server :)

looks like png/gif is round the corner though on livereflections. I mailed the developer and he mentioned a release this weekend... :cool:
true, but imo that js would be easier than using the site, unless there's like some mass import deal going on, making some part of it unfeasible.
 
well, thinking about it, implementing the livereflections is actually really easily. My gallery template works as follows:

Code:
<?php

$query = "SELECT * FROM gallery WHERE photo_id = $_GET['photo_id']";
mysql_query ($query);

//Grab the column names and reference
$photo = relevant database column name;

echo '<img src="'.$photo.'">';

?>

It seems, that all I need to do is add the following to reflect any image i want:

Code:
<?php
echo '<img src="'.$photo.'">';
echo '<img src="http://www.livereflections.com/page.php?image='.$photo.'">';
?>

That should then reflect any image i want, all old stuff, and all new stuff...
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.