Web Design Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignWeb Design Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 20th, 2013, 07:37 AM
chofift chofift is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 28 chofift User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 2 m 41 sec
Reputation Power: 0
New Member - Vague and blurred picture

,

In HTML I make the width and height of an image equal: 100px.
But this returns a problem viewing this picture and it gets vague and blurry.

The solution I have now is by using paint.
I look at the size of picture and make new file with, then I put the image in the center.

Is there any other way to automatise this on server/client side using HTML, CSS or PHP?

Thanks in advance

Reply With Quote
  #2  
Old January 25th, 2013, 12:54 AM
chofift chofift is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2012
Posts: 28 chofift User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 2 m 41 sec
Reputation Power: 0
Here's a solution if u decide the width to be 100px.

PHP Code:
function gmp_gcd($a$b) {
    while (
$b != 0) {
        
$remainder $a $b;
        
$a $b;
        
$b $remainder;
    }
    return 
abs($a);
}



$a $w// the original width
$b $h// the original height

$gcd gmp_gcd($a$b);
$a $a/$gcd;
$b $b/$gcd;
$aspect_ratio $b $a;

// thumbnail


$t_h 100 $aspect_ratio

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignWeb Design Help > New Member - Vague and blurred picture

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap