Skip to content
조회 수 14232 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄



getimagesize

Example #1 getimagesize() and MIME types

<?php
$size 
getimagesize($filename);
$fp fopen($filename"rb");
if (
$size && $fp) {
    
header("Content-type: {$size['mime']}");
    
fpassthru($fp);
    exit;
} else {
    
// error
}
?>

Example #2 getimagesize() example

<?php
list($width$height$type$attr) = getimagesize("img/flag.jpg");
echo 
"<img src="./\"img/flag.jpg\" $attr alt=\"getimagesize() example\" />";
?>

Example #3 getimagesize (URL)

<?php
$size 
getimagesize("http://www.example.com/gifs/logo.gif");

// if the file name has space in it, encode it properly
$size getimagesize("http://www.example.com/gifs/lo%20go.gif");

?>

Example #4 getimagesize() returning IPTC

<?php
$size 
getimagesize("testimg.jpg"$info);
if (isset(
$info["APP13"])) {
    
$iptc iptcparse($info["APP13"]);
    
var_dump($iptc);
}
?>


imagecopyresized

Example #1 Resizing an image

This example will display the image at half size.

<?php
// File and new size
$filename 'test.jpg';
$percent 0.5;

// Content type
header('Content-type: image/jpeg');

// Get new sizes
list($width$height) = getimagesize($filename);
$newwidth $width $percent;
$newheight $height $percent;

// Load
$thumb imagecreatetruecolor($newwidth$newheight);
$source imagecreatefromjpeg($filename);

// Resize
imagecopyresized($thumb$source0000$newwidth$newheight$width$height);

// Output
imagejpeg($thumb);
?>


<?php 
//use this line if you get the error message of using too much memory (strip '//') 
//ini_set ( "memory_limit", "48M"); 

$target_width 800
$target_height 600

if (
ob_get_level() == 0ob_start(); 
if (
$handle opendir('files/')) { 
  while (
false !== ($file readdir($handle))) { 
    if (
$file != "." && $file != "..") { 
      
$destination_path './files/'
      
$target_path $destination_path basename($file); 

      
$extension pathinfo($target_path); 
      
$allowed_ext "jpg, gif, png, bmp, jpeg, JPG"
      
$extension $extension[extension]; 
      
$allowed_paths explode(", "$allowed_ext); 
      
$ok 0
      for(
$i 0$i count($allowed_paths); $i++) { 
        if (
$allowed_paths[$i] == "$extension") { 
          
$ok "1"
        } 
      } 

      if (
$ok == "1") { 

        if(
$extension == "jpg" || $extension == "jpeg" || $extension == "JPG"){ 
          
$tmp_image=imagecreatefromjpeg($target_path); 
        } 

        if(
$extension == "png") { 
          
$tmp_image=imagecreatefrompng($target_path); 
        } 

        if(
$extension == "gif") { 
          
$tmp_image=imagecreatefromgif($target_path); 
        } 

        
$width imagesx($tmp_image); 
        
$height imagesy($tmp_image); 

        
//calculate the image ratio 
        
$imgratio = ($width $height); 

        if (
$imgratio>1) { 
          
$new_width $target_width
          
$new_height = ($target_width $imgratio); 
        } else { 
          
$new_height $target_height
          
$new_width = ($target_height $imgratio); 
        } 

        
$new_image imagecreatetruecolor($new_width,$new_height); 
        
ImageCopyResized($new_image$tmp_image,0,0,0,0$new_width$new_height$width$height); 
        
//Grab new image 
        
imagejpeg($new_image$target_path); 
        
$image_buffer ob_get_contents(); 
        
ImageDestroy($new_image); 
        
ImageDestroy($tmp_image); 
        echo 
" $file resized to $new_width x $new_height <br> \n"
        echo 
str_pad('',4096)."\n";  
        
ob_flush(); 
        
flush(); 
      } 
    } 
  } 
  
closedir($handle); 
  echo 
"Done."
  
ob_end_flush(); 

?>









로그인 후 댓글쓰기가 가능합니다.

?

  1. 21
    Nov 2009
    12:27

    MYSQL 미 해결 과제 : Can't connect to MySQL server on 'localhost'(10055)

    Category컴퓨터잡담 Views64231
    Read More
  2. 20
    Nov 2009
    08:18

    서버 해킹 당하다~

    Category컴퓨터잡담 Views15662
    Read More
  3. 19
    Nov 2009
    10:21

    mysqladmin

    Category컴퓨터잡담 Views14065
    Read More
  4. 19
    Nov 2009
    09:55

    bat(배치)파일 문법

    Category컴퓨터잡담 Views12461
    Read More
  5. 19
    Nov 2009
    09:55

    bat(배치)파일 문법

    Category컴퓨터잡담 Views13294
    Read More
  6. 19
    Nov 2009
    08:35

    mysql 재시작, 사용자 추가 명령어

    Category컴퓨터잡담 Views32229
    Read More
  7. 17
    Nov 2009
    09:15

    많은 DB 요청시 자동으로 막히는 현상 해제

    Category컴퓨터잡담 Views22924
    Read More
  8. 13
    Nov 2009
    17:43

    MYSQL 최적화

    Category컴퓨터잡담 Views22447
    Read More
  9. 27
    Oct 2009
    08:49

    jQuery 강좌

    Category컴퓨터잡담 Views12630
    Read More
  10. 20
    Oct 2009
    08:35

    PHP로 FTP 접속 / 업로드 / 다운로드 등의 컨트롤 소스

    Category컴퓨터잡담 Views32766
    Read More
  11. 17
    Oct 2009
    08:38

    php 이미지 저장 및 이미지크기를 줄여 저장기술 소스

    Category컴퓨터잡담 Views14232
    Read More
  12. 17
    Oct 2009
    08:20

    php로 이미지를 mysql디비 저장하고 보여주는 소스

    Category컴퓨터잡담 Views62322
    Read More
  13. 17
    Oct 2009
    08:16

    PHP로 그림에 글자 입히기

    Category컴퓨터잡담 Views19996
    Read More
  14. 01
    Oct 2009
    13:18

    오토런 바이러스

    Category컴퓨터잡담 Views11369
    Read More
  15. 23
    Sep 2009
    08:27

    사이트 디자인 무료 템플릿 공유

    Category컴퓨터잡담 Views22758
    Read More
  16. 21
    Sep 2009
    10:49

    한글프로그램 메뉴-모양-세로쓰기

    Category컴퓨터잡담 Views15752
    Read More
  17. 19
    Sep 2009
    17:49

    [php] 특수문자 -> 엔티티, 엔티티 -> 특수문자

    Category컴퓨터잡담 Views19807
    Read More
  18. 24
    Aug 2009
    09:09

    MySQL TABLE 손상시 대응방법(db 내용이 안 나올때)

    Category컴퓨터잡담 Views31833
    Read More
  19. 11
    Aug 2009
    10:07

    [PHP] 원격지의 이미지 사이즈 구하는 방법

    Category컴퓨터잡담 Views44528
    Read More
  20. 09
    Aug 2009
    13:01

    주식투자, 성공투자 원칙을 지키는 방법

    Category컴퓨터잡담 Views19422
    Read More
Board Pagination Prev 1 ... 42 43 44 45 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소