'개소리 왈왈' 카테고리의 다른 글
어우 예비군 훈련!!! ㅠ.ㅠ (0) | 2009.05.25 |
---|---|
블랙스크린 - MS 광고 (0) | 2009.05.23 |
hotmail을 중국에서 어떻게 읽을까? (0) | 2009.05.17 |
주저리 주저리 (2) | 2009.05.16 |
스승의 날 - 스승이 있습니까? (2) | 2009.05.15 |
어우 예비군 훈련!!! ㅠ.ㅠ (0) | 2009.05.25 |
---|---|
블랙스크린 - MS 광고 (0) | 2009.05.23 |
hotmail을 중국에서 어떻게 읽을까? (0) | 2009.05.17 |
주저리 주저리 (2) | 2009.05.16 |
스승의 날 - 스승이 있습니까? (2) | 2009.05.15 |
/* These typedefs are used for various table entries and so forth. * They must be at least as wide as specified; but making them too big * won't cost a huge amount of memory, so we don't provide special * extraction code like we did for JSAMPLE. (In other words, these * typedefs live at a different point on the speed/space tradeoff curve.) */ /* UINT8 must hold at least the values 0..255. */ #ifdef HAVE_UNSIGNED_CHAR typedef unsigned char UINT8; #else /* not HAVE_UNSIGNED_CHAR */ #ifdef CHAR_IS_UNSIGNED typedef char UINT8; #else /* not CHAR_IS_UNSIGNED */ typedef short UINT8; #endif /* CHAR_IS_UNSIGNED */ #endif /* HAVE_UNSIGNED_CHAR */ /* UINT16 must hold at least the values 0..65535. */ #ifdef HAVE_UNSIGNED_SHORT typedef unsigned short UINT16; #else /* not HAVE_UNSIGNED_SHORT */ typedef unsigned int UINT16; #endif /* HAVE_UNSIGNED_SHORT */ /* INT16 must hold at least the values -32768..32767. */ #ifndef XMD_H /* X11/xmd.h correctly defines INT16 */ typedef short INT16; #endif /* INT32 must hold at least signed 32-bit values. */ #ifndef XMD_H /* X11/xmd.h correctly defines INT32 */ typedef long INT32; #endif /* * On a few systems, type boolean and/or its values FALSE, TRUE may appear * in standard header files. Or you may have conflicts with application- * specific header files that you want to include together with these files. * Defining HAVE_BOOLEAN before including jpeglib.h should make it work. */ #ifndef HAVE_BOOLEAN typedef int boolean; #endif
libjpeg 을 이용하여 흑백 jpg를 bmp로 변환하기 (0) | 2009.07.03 |
---|---|
how to use libjpeg - libjpeg 사용하기 (scale) (17) | 2009.05.27 |
libjpeg 크로스컴파일 하기 - libjpeg cross-compile using libtool (0) | 2009.05.20 |
libjpeg - jmorecfg.h (0) | 2009.05.19 |
libtool: link: unable to infer tagged configuration (0) | 2009.05.18 |
38 # If using GNU libtool, LIBTOOL references it; if not, LIBTOOL is empty.^M 39 LIBTOOL = ./libtool^M |
262 # The linker used to build libraries. 263 LD=$(CROSS)-ld 264 #LD="/usr/bin/ld" |
how to use libjpeg - libjpeg 사용하기 (scale) (17) | 2009.05.27 |
---|---|
libjpeg 런타임 에러발생 - struct mismatch (0) | 2009.05.21 |
libjpeg - jmorecfg.h (0) | 2009.05.19 |
libtool: link: unable to infer tagged configuration (0) | 2009.05.18 |
libjpeg.doc 내용 중 scale / decompress 관련내용 (0) | 2009.05.18 |
[userid@hostname ~]$ ssh localserver_ip @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you right now (man-in-the-middle attack)! It is also possible that the RSA host key has just been changed. The fingerprint for the RSA key sent by the remote host is 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00. Please contact your system administrator. Add correct host key in /home/userid/.ssh/known_hosts to get rid of this message. Offending key in /home/userid/.ssh/known_hosts:1 RSA host key for 192.168.10.10 has changed and you have requested strict checking. Host key verification failed. |
ssh 접속이 안되는 경우 - Host key verification failed. (2) | 2010.03.06 |
---|---|
[linux console] sftp - secure file transfer program (0) | 2009.07.29 |
ssh에서 sftp 사용하지 않도록 하기 (사용 막기) / sftp만 사용하도록 제한하기 (0) | 2009.06.05 |
우분투 SSH 접속시 메시지 변경하기 (0) | 2009.05.07 |
Ubuntu에 SSH 서버 설치하기 (0) | 2009.04.25 |
소프트웨어 기술자신고 시스템 해야해? (2) | 2009.06.02 |
---|---|
출근일기 - 20090521 (0) | 2009.05.21 |
직장일기 - 20090519 (2) | 2009.05.19 |
아 손발이 오그라든다 -ㅁ-! (6) | 2009.05.12 |
panic (4) | 2009.05.12 |
kernel=vmlinux cobd0=images\rootfs.img cobd3="D:\Documents and Settings\czw5hv\Application Data\Windux\images\root.img" cofs0=config cofs1=c:\ #Para tener acceso a la unidad C: #cofs1=otra_unidad:\ #Si se necesita tener acceso a otras unidades?ej: d:\ #scsi0=cdrom,\Device\Cdrom0 # Para tener acceso al CDROM de la PC root=/dev/cobd0 ro initrd=initrd.gz mem=256 eth0=slirp,00:ff:75:39:D3:C1,tcp:22:22 exec0="Xming\Xming.exe :0 -notrayicon +bs -wm -auth Xauthority -clipboard -multiwindow -dpi 100" exec1=pulseaudio-0.9.6\pulseaudio.exe # Ejecuta al servidor Pulse Audio para Windows |
Xming (Cygwin/X) 를 통해 프로그램이 구동되지 않을경우 (0) | 2010.03.25 |
---|---|
Xming과 VNC 동시사용 불가? (0) | 2009.05.28 |
gnome의 file browser 단독실행하기 - nautilus file browser (7) | 2009.04.15 |
cygwin/X 구동 옵션 - options of Xwin.exe (2) | 2009.04.12 |
Xming XDMCP 관련 도움말 (0) | 2009.04.10 |
출근일기 - 20090521 (0) | 2009.05.21 |
---|---|
출근일기 - 20090520 (5) | 2009.05.20 |
아 손발이 오그라든다 -ㅁ-! (6) | 2009.05.12 |
panic (4) | 2009.05.12 |
직장일기 - 20090507 - 간만에 정전 좀 시켰다! (4) | 2009.05.07 |
#include "stdio.h" void main() { int idx = 0; char temp = 0xAA; #if 1 for(idx = 0; idx < 8;idx ++) printf("%d\n",temp & (0x01 << idx)); #else printf("%d\n",temp & 0x01); printf("%d\n",temp & 0x02); printf("%d\n",temp & 0x04); printf("%d\n",temp & 0x08); printf("%d\n",temp & 0x10); printf("%d\n",temp & 0x20); printf("%d\n",temp & 0x40); printf("%d\n",temp & 0x80); #endif }
C99 구조체 초기화 하기 (0) | 2009.05.28 |
---|---|
binutils - ar, nm, objdump (0) | 2009.05.26 |
double형을 int 형으로 출력하면? (0) | 2009.05.15 |
전처리기를 이용한 디버깅용 선언문(#define) (0) | 2009.05.15 |
기술직 공무원 시험문제 - for / while / goto / 연산자 우선순위 (0) | 2009.04.29 |
/* * Ordering of RGB data in scanlines passed to or from the application. * If your application wants to deal with data in the order B,G,R, just * change these macros. You can also deal with formats such as R,G,B,X * (one extra byte per pixel) by changing RGB_PIXELSIZE. Note that changing * the offsets will also change the order in which colormap data is organized. * RESTRICTIONS: * 1. The sample applications cjpeg,djpeg do NOT support modified RGB formats. * 2. These macros only affect RGB<=>YCbCr color conversion, so they are not * useful if you are using JPEG color spaces other than YCbCr or grayscale. * 3. The color quantizer modules will not behave desirably if RGB_PIXELSIZE * is not 3 (they don't understand about dummy color components!). So you * can't use color quantization if you change that value. */ #define RGB_RED 0 /* Offset of Red in an RGB scanline element */ #define RGB_GREEN 1 /* Offset of Green */ #define RGB_BLUE 2 /* Offset of Blue */ #define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */
typedef struct tagRGBQUAD { BYTE rgbBlue; BYTE rgbGreen; BYTE rgbRed; BYTE rgbReserved; } RGBQUAD;
typedef struct tagRGBTRIPLE { BYTE rgbtBlue; BYTE rgbtGreen; BYTE rgbtRed; } RGBTRIPLE;
libjpeg 런타임 에러발생 - struct mismatch (0) | 2009.05.21 |
---|---|
libjpeg 크로스컴파일 하기 - libjpeg cross-compile using libtool (0) | 2009.05.20 |
libtool: link: unable to infer tagged configuration (0) | 2009.05.18 |
libjpeg.doc 내용 중 scale / decompress 관련내용 (0) | 2009.05.18 |
libjpeg 사용예제 (2) | 2009.05.18 |
vi jpeg-6b/Makefile 142 .c.lo:^M 143 $(LIBTOOL) --tag=CXX --mode=compile $(CC) $(CFLAGS) -c $(srcdir)/$*.c^M |
libjpeg 크로스컴파일 하기 - libjpeg cross-compile using libtool (0) | 2009.05.20 |
---|---|
libjpeg - jmorecfg.h (0) | 2009.05.19 |
libjpeg.doc 내용 중 scale / decompress 관련내용 (0) | 2009.05.18 |
libjpeg 사용예제 (2) | 2009.05.18 |
libjpeg 사용시 color depth (4) | 2009.05.15 |