12:03:41 AM
Thursday
Sep 09
Su M Tu W Th F Sa
567891011
12131415161718
19202122232425
262728293012
3456789

Play My Typing Game

View Some of My Artwork

Using Image Magick - Resize Image, Maintain Aspect Ratio
<?
function resizetowidth($source_file, $destination_file, $new_width, $max_height=''){
        // Get the original dimensions
        list($img_width,$img_height) = getimagesize($source_file);

        // maintain aspect ratio and find new dimension
        $new_height = ceil(abs(($new_width/$img_width)*$img_height));

        // ensure that this large image fits within max_height optional limitation
        if($max_height!='')
        {
                if($new_height>$max_height)
                {
                        $new_height=$max_height;
                        $new_width = ceil(abs(($new_height/$img_height)*$img_width));
                }
        }

        $library = "/usr/bin/";
        $magick = "convert -quality 100 -size ". $new_width ."x". $new_height ." ". $source_file ." -resize ". $new_width ."x". $new_height ." +profile \"*\" ". $destination_file;
        $output = system($library . $magick);
}
?>


Read Previous:
Using FFMPEG to get the dimensions of a video
Read Next:
Using GD to resize a jpg
Table of Contents


Give a listen to my music...
My Best Recordings
How my services and skills can help you:
  • Global (via Email/Skype/AIM(ichat)/Yahoo)
    • Web Development Consulting
    • Custom Web App Development (PHP/MySQL/jQuery/CSS) Cross-Browser & OS
    • Cellphone App Development (Android/MobileWeb)
    • Music Lessons & Education for Beginner Guitar, Piano, Bass, which transfers over to many other instruments I am comfortable playing but not yet at teaching.
    • Music - Soundtrack Composition & Voice Work
  • Local
    • Most all the above, but also:
      • Music Performance (Harp, Voice, Guitar, Piano, Bass, Latin Percussion)
      • Recording Live Music Audio
      • Video Streaming live music and other live events anywhere that can provide wifi
      • Training Video Streaming to your venue's trusted soundperson
Skills:
  • Global (via Email/Skype/AIM(ichat)/Yahoo)
    • Web Development Consulting
    • Custom Web App Development (PHP/MySQL/jQuery/CSS) Cross-Browser & OS
    • Cellphone App Development (Android/MobileWeb)
    • Music Lessons & Education for Beginner Guitar, Piano, Bass, which transfers over to many other instruments I am comfortable playing but not yet at teaching.
    • Music - Soundtrack Composition & Voice Work
  • Local, Most all the above, but also:
    • Music Performance (Harp, Voice, Guitar, Piano, Bass, Latin Percussion)
    • Being your venue's soundman
    • Video Streaming live music and other live events anywhere that can provide wifi
    • Training Video Streaming to your venue's trusted soundperson