Jump to content
php.lv forumi

Image upload


Rados

Recommended Posts

Heh:

 

<?php


//Pirmā rindiņa
if($main->member->isAdmin()) {
 //Milzīgs koda blāķis
}
//Pēdējā rindiņa
?>

 

 

Kāpēc nevari vienkārši:

<?


if(!$main->member->isAdmin()) {
 exit('ej dillēs, tikai adminiem');
}
//Koda blāķis šeit, nav iekš if'a
?>

Link to comment
Share on other sites

Man kkā jocīgi liekas, ka Tu esi metodei imagepng() trešo parametru, kas, starpcitu, ir 'quality', norādījis 0, bet tagad vēlies labu kvalitāti. :)

cik redzēju šeit http://www.php.net/manual/en/function.imagepng.php

Skala ir no 1-9 uzliku 9 nekas nemainas :/

Iečeko http://www.bildites.lv/images/oai5hxa1wed8rrpztb5m.png

Edited by Rados
Link to comment
Share on other sites

Lai tas vis darbotos, tur vajag daudz vairāk pārbaudes, tāpat izgriezt vien nesanāks, ja gribi lai ir smuki. Stipri šaubos ka skripts ir pašrakstīts (vismaz tā mazbildes daļa) , tāpēc palīdzēt kaut kā nesanāks.

 

Pamēģini šito, varbūt tevi apmierinās tāds rezultāts.

 

 function createtrumb ($filename,$width,$height,$newfile,$format) {
  list($width_orig, $height_orig) = getimagesize($filename);
	$ratio_orig = $width_orig/$height_orig;
	if ($width/$height > $ratio_orig) {
   	$width = $height*$ratio_orig;
	} else {
   	$height = $width/$ratio_orig;
	}
	$image_p = imagecreatetruecolor($width, $height);
  if ($format == 'image/png') {
 	$image = imagecreatefrompng($filename);
  } else {
$image = imagecreatefromjpeg($filename);
  }
	imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
	imagejpeg($image_p,$newfile,100);
	imagedestroy($image_p);
	imagedestroy($image);
 }

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...