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
번호 분류 제목 날짜 조회 수
897 WindowsTip 패킷을 훔치는 ARP Spoofing 공격 탐지 툴과 방어방법 4 2013.01.05 13573
896 컴퓨터잡담 파일도우미삭제(익스플로러 시작시 log.pluspage.co.kr로 접속 후 홈으로 이동하는 증상) 1 4 file 2013.01.15 16610
895 Server 파일 업로드 폴더 변경 2015.07.13 1955
894 컴퓨터잡담 파이썬의 IF문 사용시 실행값에서 오류발생시 진행하는 예외처리 방법 2021.06.15 2879
893 파이썬 파이썬을 이용하여 매크로 만들기 2023.01.13 9238
892 컴퓨터잡담 파이썬으로 키움증권 open api 사용해보기 file 2021.08.24 1491
891 파이썬 파이썬으로 비활성화 된 창의 이미지를 캡쳐하는 방법 2023.02.25 4019
890 컴퓨터잡담 파이썬으로 네이버 증권정보 추출하기 2021.06.05 1875
889 파이썬 파이썬으로 captCha 분석하여 웹사이트 소스 가져오기 2023.03.25 19154
888 파이썬 파이썬에서 인식이 잘되는 OCR 종류 2023.09.15 85229
887 파이썬 파이썬에서 captCha 분석 프로그램을 만들 수 있을까? 2023.03.25 11750
886 컴퓨터잡담 파이썬(python) 자주 사용하는 명령 모으기 2021.09.03 884
885 파이썬 파이썬 화면 캡쳐하기 2022.11.26 19343
884 컴퓨터잡담 파이썬 한우정액 정보 스프레드로 추출하기 file 2021.06.05 1625
883 파이썬 파이썬 팍스넷 추천종목 특정페이지 크롤링 2021.09.23 3467
882 컴퓨터잡담 파이썬 파일로 읽어올 때 \n이 \\n으로 변경되는 현상 대처방법 2021.08.15 1342
881 파이썬 파이썬 파이인스톨러 설치하기 2022.05.08 21421
880 컴퓨터잡담 파이썬 파라미터 변수값 전달받기 2021.06.16 2058
879 컴퓨터잡담 파이썬 키움증권 open api 스크랩 2021.09.02 970
878 파이썬 파이썬 키움증권 open api 분할매매 주문하기 2021.09.07 2341
Board Pagination Prev 1 2 3 4 5 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


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

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

설치 취소