비트맵 파일 픽셀 intensity를 반으로 줄이려고 하는데요...
미즈
질문 제목 : 비트맵 파일 픽셀 intensity를 반으로 줄이려고 하는데요...비트맵파일 픽셀 줄이기질문 내용 :
이코드는 그냥 이미지 사이즈를 반으로 줄이는 코드인데요..
이미지 사이즈 말고 픽셀을 반으로 줄이려면 어떻게 코드를 짜야하나요..??
코드좀 부탁드립니다ㅠㅠㅠㅠㅠㅠㅠㅠㅠ
#include stdio.h
#include stdlib.h
#include windows.h
#define r 0.5 // ratio
int main()
{
char infname[] = inputimage.bmp;
char outfname[] = outputimage1.bmp;
file *infp, *outfp;
hdc hdcold, hdcnew;
hbitmap hbmold, hbmnew;
bitmapfileheader filehead;
bitmapinfoheader infohead;
dword width,height,imgsize;
byte *pimage; infp = fopen(infname,rb);
if ( !infp ) {
printf(file open error\n);
return -1;
}
fread(&filehead,sizeof(bitmapfileheader),1,infp);
fread(&infohead,sizeof(bitmapinfoheader),1,infp);
width = infohead.biwidth;
height = infohead.biheight;
imgsize = width * height * (infohead.bibitcount/8);
pimage = (byte*)malloc(imgsize);
fread(pimage,1,imgsize,infp);
fclose(infp);
hbmold = createdibitmap(getdc(null),&infohead,cbm_init,pimage,(bitmapinfo*)&infohead,dib_rgb_colors);
hdcold = createcompatibledc(getdc(null));
selectobject(hdcold, hbmold);
// create new image
hdcnew = createcompatibledc(getdc(null));
hbmnew = createcompatiblebitmap(getdc(null),width*r,height*r);
selectobject(hdcnew, hbmnew);
setstretchbltmode(hdcnew, halftone);
stretchblt(hdcnew,0,0,width*r,height*r,hdcold,0,0,width,height,srccopy);
infohead.biwidth = width * r;
infohead.biheight = height * r;
infohead.bisizeimage = imgsize * (r*r);
getdibits(hdcnew,hbmnew, 0, infohead.biheight, pimage,
(bitmapinfo*)&infohead,dib_rgb_colors);
// write
filehead.bfsize = sizeof(bitmapinfoheader) + infohead.bisizeimage;
outfp = fopen(outfname,wb);
if ( !outfp ) {
printf(file open error\n);
return -1;
}
fwrite(&filehead, sizeof(bitmapfileheader),1,outfp);
fwrite(&infohead, sizeof(bitmapinfoheader),1,outfp);
fwrite(pimage, 1, infohead.bisizeimage, outfp);
fclose(outfp);
free(pimage);
deleteobject(hbmold);
deleteobject(hbmnew);
deletedc(hdcold);
deletedc(hdcnew);
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |