<?php
//직선 그리기
function imageline_bresenham(& $im, $startX, $startY, $endX, $endY, $color){
//기준점 계산, 작은 쪽이 출발점, 큰쪽이 도착점
if($endX < $startX){
$dx = $startX - $endX;
$tmpX = $endX;
$tmpgoX = $startX;
}
else{
$dx = $endX - $startX;
$tmpX = $startX;
$tmpgoX = $endX;
}
if($endY < $startY){
$dy = $startY - $endY;
$tmpY = $endY;
$tmpgoY = $startY;
}
else{
$dy = $endY - $startY;
$tmpY = $startY;
$tmpgoY = $endY;
}
/* 기울기에 따른 계산*/
if($dx >= $dy) { //기울기가 1보다 작거나 같을때
$d = $dy * 2 - $dx; //d의 값을 초기화
$incrE = $dy * 2; // E로의 이동을 위해서 쓰이는 증가
$incrNE = ($dy - $dx) * 2; // NE로의 이동을 위해서 쓰이는 증가
$start = $tmpX;
$end = $tmpgoX;
}
else { //기울기가 1보다 클때
$d = $dx * 2 - $dy;
$incrE = $dx * 2;
$incrNE = ($dx - $dy) * 2;
$start = $tmpY;
$end = $tmpgoY;
}
//x, y 좌표 초기화
$x = $startX;
$y = $startY;
imagesetpixel($im, $x, $y, $color);//시작점 찍음
while($start < $end) {
if( $d <= 0) { /*D값이 0보다 작으면 E를 선택 하나의 축만 이동*/
$d += $incrE;
if($dx >= $dy) { // 기울기가 1보다 작을때 X좌표만 증가
if($endX < $startX)
$x--;
else
$x++;
}
else { // 기울기가 1보다 클때 Y좌표만 증가
if($endY < $startY)
$y--;
else
$y++;
}
}
else { /*D값이 0보다 클때 NE를 선택 X,Y 를 같이 이동시킨다.*/
$d += $incrNE;
if($endX < $startX)
$x--;
else
$x++;
if($endY < $startY)
$y--;
else
$y++;
}
imagesetpixel($im, $x, $y, $color);
$start ++;
}
}
function imagearc_bresenham(& $im, $centerX, $centerY, $width, $height, $color) {
$w_r = ceil($width / 2);
$h_r = ceil($height / 2);
$x = 0;
$y = $h_r;
$w_r_square = $w_r * $w_r;
$h_r_square = $h_r * $h_r;
$d = (4 * $h_r_square + $w_r_square * (1 - (4 * $h_r))) / 4;
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y , $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
// $x 독립변수 구간
while($h_r_square * $x < $w_r_square * $y){
++$x;
if($d < 0){
$d += $h_r_square * (2 * $x + 1);
}
else {
--$y;
$d += $h_r_square * (2 * $x + 1) - (2 * $w_r_square * $y);
}
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y, $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
}
// $y 독립변수 구간
$x = $w_r;
$y = 0;
$d = (4 * $w_r_square + $h_r_square * (1 - (4 * $w_r))) / 4;
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y, $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
while($h_r_square * $x > $w_r_square * $y){
++$y;
if($d < 0){
$d += $w_r_square * (2 * $y + 1);
}
else {
--$x;
$d += $w_r_square * (2 * $y + 1) - (2 * $h_r_square * $x);
}
imagesetpixel($im, $x + $centerX, $y + $centerY, $color);
imagesetpixel($im, $centerX - $x, $y + $centerY, $color);
imagesetpixel($im, $x + $centerX, $centerY - $y, $color);
imagesetpixel($im, $centerX - $x, $centerY - $y, $color);
}
}
$w = 400;
$h = 800;
$im = imagecreatetruecolor($w, $h);
$red = imagecolorallocate($im, 255, 0, 0);
imageline_bresenham($im, 200, 200, 100, 0, $red);
imageline_bresenham($im, 200, 200, 400, 100, $red);
imageline_bresenham($im, 200, 200, 400, 200, $red);
imageline_bresenham($im, 200, 200, 400, 300, $red);
imagearc_bresenham($im, 200, 200, 180, 360, $red);
imagearc_bresenham($im, 100, 200, 200, 200, $red);
imageline($im, 200, 600, 100, 400, $red);
imageline($im, 200, 600, 400, 500, $red);
imageline($im, 200, 600, 400, 600, $red);
imageline($im, 200, 600, 400, 700, $red);
imagearc($im, 200, 600, 180, 360, 0, 360, $red);
imagearc($im, 100, 600, 200, 200, 0, 360, $red);
header('Content-Type: image/png');
imagepng($im);
?>
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7730 | 10년 전 | 1277 | ||
| 7729 | 10년 전 | 1088 | ||
| 7728 |
잘살아보자
|
10년 전 | 556 | |
| 7727 |
잘살아보자
|
10년 전 | 458 | |
| 7726 |
잘살아보자
|
10년 전 | 794 | |
| 7725 |
잘살아보자
|
10년 전 | 521 | |
| 7724 |
잘살아보자
|
10년 전 | 430 | |
| 7723 |
잘살아보자
|
10년 전 | 497 | |
| 7722 |
잘살아보자
|
10년 전 | 437 | |
| 7721 |
잘살아보자
|
10년 전 | 472 | |
| 7720 |
잘살아보자
|
10년 전 | 411 | |
| 7719 |
비긴어게인
|
10년 전 | 655 | |
| 7718 |
|
10년 전 | 2500 | |
| 7717 |
잘살아보자
|
10년 전 | 630 | |
| 7716 |
잘살아보자
|
10년 전 | 370 | |
| 7715 |
잘살아보자
|
10년 전 | 409 | |
| 7714 |
잘살아보자
|
10년 전 | 443 | |
| 7713 | 10년 전 | 1746 | ||
| 7712 | 10년 전 | 1682 | ||
| 7711 | 10년 전 | 1067 | ||
| 7710 | 10년 전 | 1351 | ||
| 7709 | 10년 전 | 1482 | ||
| 7708 | 10년 전 | 1434 | ||
| 7707 | 10년 전 | 822 | ||
| 7706 |
별지기천사
|
10년 전 | 548 | |
| 7705 | 10년 전 | 1048 | ||
| 7704 |
ICONdesignstudio
|
10년 전 | 591 | |
| 7703 | 10년 전 | 552 | ||
| 7702 |
|
10년 전 | 686 | |
| 7701 | 10년 전 | 1384 | ||
| 7700 | 10년 전 | 1079 | ||
| 7699 | 10년 전 | 562 | ||
| 7698 | 10년 전 | 1108 | ||
| 7697 | 10년 전 | 5119 | ||
| 7696 | 10년 전 | 609 | ||
| 7695 | 10년 전 | 1651 | ||
| 7694 | 10년 전 | 1019 | ||
| 7693 | 10년 전 | 1514 | ||
| 7692 | 10년 전 | 1252 | ||
| 7691 | 10년 전 | 783 | ||
| 7690 | 10년 전 | 1361 | ||
| 7689 | 10년 전 | 979 | ||
| 7688 | 10년 전 | 560 | ||
| 7687 |
파랑새1597
|
10년 전 | 555 | |
| 7686 | 10년 전 | 803 | ||
| 7685 | 10년 전 | 1322 | ||
| 7684 | 10년 전 | 773 | ||
| 7683 | 10년 전 | 1018 | ||
| 7682 | 10년 전 | 903 | ||
| 7681 | 10년 전 | 622 | ||
| 7680 | 10년 전 | 961 | ||
| 7679 | 10년 전 | 457 | ||
| 7678 | 10년 전 | 696 | ||
| 7677 | 10년 전 | 597 | ||
| 7676 |
|
10년 전 | 916 | |
| 7675 |
|
10년 전 | 1119 | |
| 7674 | 10년 전 | 1030 | ||
| 7673 | 10년 전 | 727 | ||
| 7672 | 10년 전 | 1058 | ||
| 7671 | 10년 전 | 851 | ||
| 7670 | 10년 전 | 608 | ||
| 7669 |
mashmellow
|
10년 전 | 1202 | |
| 7668 | 10년 전 | 680 | ||
| 7667 | 10년 전 | 963 | ||
| 7666 |
senseme
|
10년 전 | 626 | |
| 7665 | 10년 전 | 478 | ||
| 7664 | 10년 전 | 1870 | ||
| 7663 |
mixx애교
|
10년 전 | 954 | |
| 7662 | 10년 전 | 991 | ||
| 7661 |
hkhkah
|
10년 전 | 757 | |
| 7660 | 10년 전 | 1039 | ||
| 7659 |
커네드커네드
|
10년 전 | 909 | |
| 7658 |
바람돌이팡
|
10년 전 | 639 | |
| 7657 | 10년 전 | 1135 | ||
| 7656 | 10년 전 | 1544 | ||
| 7655 | 10년 전 | 954 | ||
| 7654 |
개발짜증나
|
10년 전 | 833 | |
| 7653 |
네이비칼라
|
10년 전 | 867 | |
| 7652 |
밥먹고합시다
|
10년 전 | 785 | |
| 7651 |
플라이SINJI
|
10년 전 | 1487 | |
| 7650 |
개발짜증나
|
10년 전 | 1380 | |
| 7649 | 10년 전 | 431 | ||
| 7648 |
이미영ㅇㅇ
|
10년 전 | 837 | |
| 7647 | 10년 전 | 409 | ||
| 7646 | 10년 전 | 775 | ||
| 7645 | 10년 전 | 2275 | ||
| 7644 | 10년 전 | 795 | ||
| 7643 |
|
10년 전 | 2838 | |
| 7642 | 10년 전 | 1491 | ||
| 7641 | 10년 전 | 1109 | ||
| 7640 |
개발짜증나
|
10년 전 | 452 | |
| 7639 |
|
10년 전 | 792 | |
| 7638 |
개발짜증나
|
10년 전 | 1095 | |
| 7637 | 10년 전 | 1516 | ||
| 7636 | 10년 전 | 2881 | ||
| 7635 | 10년 전 | 1661 | ||
| 7634 | 10년 전 | 1826 | ||
| 7633 | 10년 전 | 2297 | ||
| 7632 | 10년 전 | 3895 | ||
| 7631 |
|
10년 전 | 1506 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기