Cibiņš Posted November 19, 2011 Report Share Posted November 19, 2011 (edited) Nesaprotu KĀ lai panāk ka attēls tiek resizēts norādītajā pozīcijā gan UZ HEIGHT, GAN WIDTH saglabājot proporcijas??? Nevis viens vai otrs...pie uploada paņemot TIKAI VIENU - HEIGHT vai WIDTH atkarībā no tā kurš tiek norādīts pirmais :@ Izmēģināju tik variantus cik seksā pozas - nji*uja! :@ //$max_height ir max definētais pieļaujamais augstums //$max_width ir max definētais pieļaujamais platums //$height ir reālais attēla augstums // $width ir reālais attēla platums if ($height > $max_height){ $scale = $max_height/$height; $uploaded = resizeImage($large_image_location,$width,$height,$scale); } elseif ($width > $max_width){ $scale = $max_width/$width; $uploaded = resizeImage($large_image_location,$width,$height,$scale); } else{ $scale = 1; $uploaded = resizeImage($large_image_location,$width,$height,$scale); } Edited November 19, 2011 by Cibiņš Link to comment Share on other sites More sharing options...
briedis Posted November 19, 2011 Report Share Posted November 19, 2011 Tak paņem kādu bibliotēku un miers. Kaut vai: http://phpthumb.sourceforge.net/#download include("phpthumb/ThumbLib.inc.php"); $thumb = PhpThumbFactory::create("bilde.jpg"); $thumb->resize(650, 700)->save("bilde_samazinata.jpg"); //650 max platumā, 700 max height Link to comment Share on other sites More sharing options...
marrtins Posted November 20, 2011 Report Share Posted November 20, 2011 Izmēģināju tik variantus cik seksā pozas - nji*uja! :@ Cik tad ir seksā pōzas? Nākamreiz, kad būs ģeometrijas stunda, pārmaiņas pēc varbūt uz brīdi aizver savu ājjfōnu ar visu draugiemfēčbuk+pr0n? Sāk jau besīt šī, sorry my french, bet, ja reiz man jāizsakās populāri - vispārējā retardācija. Link to comment Share on other sites More sharing options...
Kemito Posted November 20, 2011 Report Share Posted November 20, 2011 Ļoti laba bibliotēka, esmu personīgi izmantojis/testējis, forši var pakombinēt arī šīs lietiņas. http://phpthumb.gxdlabs.com/ Link to comment Share on other sites More sharing options...
Grey_Wolf Posted November 20, 2011 Report Share Posted November 20, 2011 (edited) Izmēģināju tik variantus cik seksā pozas - nji*uja! :@ Un šādu pozu nepamēģināji ? Edit: Cik tad ir seksā pōzas? Spriežot ka viņš nav pat apskatijis tepat forumā, tad priekš viņa laikam tiki viena. 'help , man nejiet...' Edited November 20, 2011 by Grey_Wolf Link to comment Share on other sites More sharing options...
Cibiņš Posted November 20, 2011 Author Report Share Posted November 20, 2011 Paldies jau pats izstrēbu saskābušo krējumu. Lūk kas man bija vajadzīgs... if ($width > $max_width){ $scale = $max_width/$width; $uploaded = resizeImage($main_image_location,$width,$height,$scale); } elseif ($height > $max_height){ $scale = $max_height/$height; $uploaded = resizeImage($main_image_location,$width,$height,$scale); } else{ $scale = 1; $uploaded = resizeImage($main_image_location,$width,$height,$scale); } Link to comment Share on other sites More sharing options...
Kemito Posted November 20, 2011 Report Share Posted November 20, 2011 Labāk netaisi savu pornogrāfiku, bet izmanto viegli piedāvātās bibliotēkas un nemocies. Link to comment Share on other sites More sharing options...
Cibiņš Posted November 21, 2011 Author Report Share Posted November 21, 2011 Man tur nekas nav sarežģīts rekur ir vēl uzlabotāks variants un viss iet kā smērēts! Nekas nav ne pa maz ne pa daudz! if($width > $height){ if ($width > $max_width){ $scale = $max_width/$width; $uploaded = resizeImage($main_image_location,$width,$height,$scale); } } elseif($width < $height){ if ($height > $max_height){ $scale = $max_height/$height; $uploaded = resizeImage($main_image_location,$width,$height,$scale); } } else{ $scale = 1; $uploaded = resizeImage($main_image_location,$width,$height,$scale); } Link to comment Share on other sites More sharing options...
Recommended Posts