Jump to content
php.lv forumi

saglabāt bildi izstieptu


Slammer

Recommended Posts

Mēģinu uzrakstīt funkciju, kas ņem esošo bildi (jpeg) un saglabā to divas reizes lielākā izmērā. Kā pārverst bildi par mazāku - ir skaidrs. Mēģinot saglabāt bildi lielāku par sākotnēju izmēru lauks tiek aizpildīts ar melnu laukumu ;(. Kāds zin kā to ir jārealizē? (šoreiz html atribūti height width dubultā izmēra norādīšana nederēs)

 

http://paste.php.lv/71d463a

Link to comment
Share on other sites

labi labi, aizstāšu ar error_reporting.

un pa tēmu? :-)

 

Kāpēc tev vispār vajadzētu "apslāpēt" kļūdu paziņojumus? (izstrādes vidē)

 

$sourcefile = "....";
$endfile = "....";

$img = imagecreatefromjpeg($sourcefile);
$width = imagesx( $img );
$height = imagesy( $img );

$newwidth = 2 * $width;
$newheight = 2 * $height;

$tmpimg = imagecreatetruecolor( $newwidth, $newheight );

imagecopyresampled( $tmpimg, $img, 0, 0, 0, 0, $newwidth, $newheight, $width, $height );

imagejpeg( $tmpimg, $endfile, 90);

imagedestroy($tmpimg);
imagedestroy($img);

 

šitais moš strādā?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...