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(); 

?>









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

?

List of Articles
번호 분류 제목 날짜 조회 수
57 컴퓨터잡담 [Autohotkey] 인터넷 창을 여러개 띄우고 컨트롤 할때 ahk_id 알아내기 1 3 2009.12.19 19461
56 컴퓨터잡담 List of Windows Messages 2 1 2009.12.15 17961
55 컴퓨터잡담 wm_syscommand 등의 값 1 3 2009.12.15 8948
54 컴퓨터잡담 Spy & Capture Spy++과 같은 계열의 프로그램 1 2009.12.10 17415
53 컴퓨터잡담 [팁&테크] 하드디스크 파티션 숨기기 2 2009.12.08 13493
52 컴퓨터잡담 Windows XP에서 Boot.ini 파일을 편집하는 방법 2009.12.08 19534
51 컴퓨터잡담 mysql 날짜타입에 기본값으로 현재시간넣기 1 2009.12.07 38588
50 컴퓨터잡담 아스키 코드 변환(hex) 2009.12.06 19971
49 컴퓨터잡담 이더리얼, 윈캡, 윈덤프 사용방법 및 다운로드 3 3 2009.12.06 16195
48 컴퓨터잡담 mysql 명령어 1 2 2009.12.04 12370
47 컴퓨터잡담 주키(Primary Key, 프라이머리키)와 자동 증가(Auto Increment) 필드 2009.12.04 21562
46 컴퓨터잡담 다른 윈도우 창 프로그램 제어 1 2009.12.03 37785
45 컴퓨터잡담 TIME_WAIT 줄이기(소켓이 부족하여 프로세스 강제중단을 막기위해) 4 2009.11.30 34111
44 컴퓨터잡담 php 에서 mysql 제어하기 2009.11.28 28200
43 컴퓨터잡담 windows error 코드표 4 2009.11.25 22197
42 컴퓨터잡담 mysql 접속불가시 재부팅 2009.11.24 12088
41 컴퓨터잡담 mysql 접속에러시 재부팅 하는 배치파일 2009.11.24 26693
40 컴퓨터잡담 Windows 초간단 remote 백업 명령 2009.11.24 23511
39 컴퓨터잡담 Ghost용 배치 파일 작성 예 1 2009.11.24 8162
38 컴퓨터잡담 bat(배치) 파일 제대로 쓰기 2009.11.24 6874
Board Pagination Prev 1 ... 42 43 44 45 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


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

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

설치 취소