Jump to content
php.lv forumi

bilžu samazināšana, precīzāk GIF


Devils666

Recommended Posts

man nepiceišams samazināt bildēm kvalitāti, savādāk bišķ rij servera resursus, kuru man patlaba nav daudz

kā es varētu samazināt gif/png/jpg bildes ar php, kas jau ir uploadotas uz servera

 

skriptu atradu, bet man vaig tādu, kas samazina kvalitāti arī GIF bildēm ar animāciju un animācija saglabājas...

Link to comment
Share on other sites

es zinu ka to var panākt vienkārši ar softiem, bet ja tev tieši ar php palīdzību vajag nu varbūt šis noderēs.

itkā tas ir iekš drupal, bet varbūt būs saprotams.

PS. tik šis ir jpeg, bet to pašu itkā varētu panāk arī priekš gif.

<?php
function image_gd_close($res, $destination, $extension) {
 $extension = str_replace('jpg', 'jpeg', $extension);
 $close_func = 'image'. $extension;
 if (!function_exists($close_func)) {
   return false;
 }
 if ($extension == 'jpeg') {
   return $close_func($res, $destination, variable_get('image_jpeg_quality', 75));
 }
 else {
   return $close_func($res, $destination);
 }
}
?>

Edited by lostz
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...