Desiderata
de·sid·er·a·ta -- things considered necessary or highly desirable
A place for our collective useful pots -- why not share the wealth?
Sample code snippet:
- if( $hdiff > 0 && $wdiff > 0 ) {
- if( $wdiff > $hdiff ) {
- $percent = $maxwidth / $currwidth;
- $newwidth = $maxwidth;
- $newheight = $percent * $currheight;
- } else {
- $percent = $maxheight / $currheight;
- $newwidth = $percent * $currwidth;
- $newheight = $maxheight;
- }
- }

