Current location: Hot Scripts Forums » Programming Languages » PHP » Proportional image scaling snippet


Proportional image scaling snippet

Reply
  #1 (permalink)  
Old 01-22-12, 02:30 PM
Antimated Antimated is offline
New Member
 
Join Date: Jan 2012
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Lightbulb Proportional image scaling snippet

well I made this function to scale proportional, it uses a given width, height, and optionally the max width/height u want (depends on the given width and height)
(also posted this on stackoverflow in case you guys blame me of stealing code..)

PHP Code:

   function scaleProportional($img_w,$img_h,$max=50)

   {
       
$w 0;
       
$h 0;

       
$img_w $img_h $w $img_w $img_h $w 1;
       
$img_h $img_w $h $img_h $img_w $h 1;

       
$ws $w $h $ws = ($w $w) * $max $ws = ($h) * $max;
       
$hs $h $w $hs = ($h $h) * $max $hs = ($w) * $max;

       return array(
           
'width'=>$ws,
           
'height'=>$hs
       
);
   } 
usage:

PHP Code:

 $getScale scaleProportional(600,200,500);

 
$targ_w $getScale['width']; //returns 500
  
$targ_h $getScale['height']; //returns 16,6666667 
then you just gotta use the $targ_w and $targ_h
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiShare on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks

Tags
php, proportional, scale, scaling, snippet


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP & MYSQL Same Table Ishmell PHP 7 06-29-09 12:36 AM
div css theighost CSS 11 09-14-08 03:30 AM
displaying text over image ketanco CSS 10 09-11-08 08:39 PM
Image Scaling davidjam CSS 0 09-14-05 03:22 PM
Java 2d, scaling an image... RedWulf Everything Java 1 03-15-04 02:06 PM


All times are GMT -5. The time now is 01:30 PM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.