Bunkertor 7 Posted May 26, 2012 Report Share Posted May 26, 2012 Sveiki, Reku īss kodiņš kas samazina .PNG failu. Beigās thumb.png bilde tiešām tiek saglabāta uz servera, bet kad viņu attaisu vaļā, tad tā ir balta. Visa oriģinālās bildes informācija ir kaut kur pazudusi. Kāpēc? <?php $url = "path/to/large/image.png"; $image = imagecreatefrompng($url); $result = imagecreate(148,111); $fg = imagecolorallocate($result,255,255,255); imagefilledrectangle($result,0,0,148,111,$fg); $w = imagesx($image); $h = imagesy($image); $wscale = 148 / $w; $hscale = 111 / $h; if ($wscale < $hscale) { $xresult = 148; $yresult = $h * $wscale; $xoffset = 0; $yoffset = (111 - $yresult)/2; } else { $yresult = 111; $xresult = $w * $hscale; $xoffset = (148 - $xresult) / 2; $yoffset = 0; } ImageCopyresized($result,$image,$xoffset,$yoffset,0,0,$xresult,$yresult,$w,$h); imagepng($result, "thumb.png"); imagedestroy($result); ?> Quote Link to comment Share on other sites More sharing options...
Kavacky Posted May 27, 2012 Report Share Posted May 27, 2012 Kādu bildi tu iegūsti, ja iztaisi imagepng uz $image? Quote Link to comment Share on other sites More sharing options...
Bunkertor 7 Posted May 27, 2012 Author Report Share Posted May 27, 2012 Paldies. Ja taisa uz $image tad vispār nekas nenotiek. Palaižu skriptu, skatos serverā, bet thumb.png neeksistē. Nekādu erroru nerāda, vienkārši bildi neuztaisa. Drošības pēc pārbaudīju vai $url ir pareizs. Tad jau iznāk, ka kļūda ir otrajā rindiņā, citādi kāpēc $image ir tukšs? Quote Link to comment Share on other sites More sharing options...
briedis Posted May 27, 2012 Report Share Posted May 27, 2012 Varbūt tāpēc, ka ceļu esi norādījis nepareizu? uzraksti faila sākumā: var_dump(file_exists($url)); exit(); Quote Link to comment Share on other sites More sharing options...
Bunkertor 7 Posted June 25, 2012 Author Report Share Posted June 25, 2012 (edited) izrādās ka esmu gan :) bija viena muļķīga kļūda iekš Path Edited June 25, 2012 by Bunkertor 7 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.