How can I save thumbnails in this script?

Vinod Kumar

This is the script I am using to resize images in my site. But I don't know how to add a feature to save thumbnails of that images. If I can save the thumb, it will be possible to use that thumb later without using this script again and again.

<?php
    $time=time();
    $neww = 65;
    $newh = 87;
    $file=htmlspecialchars($_GET['file']);
    list(, , $type,)=getimagesize($file);

    if($type==1) {
        $funci='imagecreatefromgif';
    } //$funco='imagegif';}

    if($type==2) {
        $funci='imagecreatefromjpeg';
    } //$funco='imagejpeg';}

    if($type==3) { 
        $funci='imagecreatefrompng';
    } //$funco='imagepng';}

    if($type) {
        $im1 = $funci($file);
        $im2=imagecreatetruecolor($neww,$newh);
        imagecopyresized($im2, $im1, 0,0,0,0,$neww,$newh, imagesx($im1), imagesy($im1));

        header('Content-type: image/gif');
        imagegif($im2);
    }
?>
Fr0zenFyr

imagegif already does that for you if you pass the location of a file to which you want to save to as 2nd parameter to that function.

imagegif($im2);    //output raw image stream directly
imagegif($im2, 'path/to/image_save.gif');    //saves to the file at mentioned path

Although, it must be noted that if path/to/image_save.gif already exists, it will be overwritten.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I save thumbnails in this script?

From Dev

How can i save this script to Local Storage

From Dev

How can I position these thumbnails under the slider?

From Dev

How can i horizontally stack these thumbnails?

From Dev

How can I change the style of thumbnails?

From Dev

How can I save the output of a detached screen with script?

From Dev

How can I save sort .txt into files? Python or shell script

From Dev

How can I change thumbnails in Opera's speed dial?

From Dev

How can I instruct Nautilus to pre-generate thumbnails?

From Dev

how can i add Video thumbnails in listview in vb

From Dev

How can I create thumbnails of pdfs with node.js and gm

From Dev

How can i automatically generate thumbnails on a web server?

From Dev

How can I instruct Nautilus to pre-generate thumbnails?

From Dev

how can i add Video thumbnails in listview in vb

From Dev

How can I generate thumbnails in advance on KDE / Dolphin?

From Dev

How can I make my bash script open cat for input, and then save input to a variable in the script

From Dev

Bash Script - How can I get the size of directories in .txt file and save them into other file?

From Dev

Bash Script - How can I get the size of directories in .txt file and save them into other file?

From Dev

How do I save the output of a script to a file?

From Dev

Why I can't see the thumbnails in Nautilus?

From Dev

Why I can't see the thumbnails in Nautilus?

From Dev

Android How can I using Cursor get image and video thumbnails in my direct path both?

From Dev

How can I prevent Windows 10 from stretching and cropping my folder thumbnails?

From Dev

In Firefox 13, how can I increase number of thumbnails in the new tab page?

From Dev

How can I specify drawing text with FFMPEG while generating thumbnails for the entire video?

From Dev

Android How can I using Cursor get image and video thumbnails in my direct path both?

From Dev

Android: How can I display a list of categorised video thumbnails that expand on click?

From Java

How can I save two variable into a vector?

From Dev

How can I save a file in the current directory?

Related Related

  1. 1

    How can I save thumbnails in this script?

  2. 2

    How can i save this script to Local Storage

  3. 3

    How can I position these thumbnails under the slider?

  4. 4

    How can i horizontally stack these thumbnails?

  5. 5

    How can I change the style of thumbnails?

  6. 6

    How can I save the output of a detached screen with script?

  7. 7

    How can I save sort .txt into files? Python or shell script

  8. 8

    How can I change thumbnails in Opera's speed dial?

  9. 9

    How can I instruct Nautilus to pre-generate thumbnails?

  10. 10

    how can i add Video thumbnails in listview in vb

  11. 11

    How can I create thumbnails of pdfs with node.js and gm

  12. 12

    How can i automatically generate thumbnails on a web server?

  13. 13

    How can I instruct Nautilus to pre-generate thumbnails?

  14. 14

    how can i add Video thumbnails in listview in vb

  15. 15

    How can I generate thumbnails in advance on KDE / Dolphin?

  16. 16

    How can I make my bash script open cat for input, and then save input to a variable in the script

  17. 17

    Bash Script - How can I get the size of directories in .txt file and save them into other file?

  18. 18

    Bash Script - How can I get the size of directories in .txt file and save them into other file?

  19. 19

    How do I save the output of a script to a file?

  20. 20

    Why I can't see the thumbnails in Nautilus?

  21. 21

    Why I can't see the thumbnails in Nautilus?

  22. 22

    Android How can I using Cursor get image and video thumbnails in my direct path both?

  23. 23

    How can I prevent Windows 10 from stretching and cropping my folder thumbnails?

  24. 24

    In Firefox 13, how can I increase number of thumbnails in the new tab page?

  25. 25

    How can I specify drawing text with FFMPEG while generating thumbnails for the entire video?

  26. 26

    Android How can I using Cursor get image and video thumbnails in my direct path both?

  27. 27

    Android: How can I display a list of categorised video thumbnails that expand on click?

  28. 28

    How can I save two variable into a vector?

  29. 29

    How can I save a file in the current directory?

HotTag

Archive