gtk+ for windows를 사용하는 방법좀 알려주세요~

closeyes의 이미지

Redistribution on other web sites, CD-ROM etc
You are welcome to redistribute the GIMP on other web sites, CD-ROM, and other media. You don't have to ask for permission. That's one of the points of Free Software. One important thing that the GNU license requires is that you must also redistribute the source code. This means the GIMP, GLib, and GTK+ 1.3.0 sources from this site (ftp.gtk.org is the same site as this). Also the libiconv and gettext sources from some GNU mirror must be redistributed. 
Installer
There is a GIMP installer that contains the appropriate stuff from these zipfiles (or relatevely fresh previous versions) at http://www2.arnes.si/~sopjsimo/gimp/. That installer is created by Jernej Simoncic, so please ask him about problems with it.

Prebuilt binary packages, developer packages, and source
These packages are for experienced GIMP and Windows users, and for people who develop software that use GLib and/or GTK. The binaries (DLLs and executables) in these packages are not for the Cygwin environment. They use the MSVCRT runtime. The files included in these zip archives are not compatible with, or drop-in replacements for, the stuff used in the GIMP for Windows from December 2000. 

(For Cygwin builds of GTK etc, check out Masahiro Sakai's site.)

Below are runtime and developer packages. The runtime packages include DLLs, auxiliary executables, and configuration files needed at runtime. The developer packages include import libraries, headers, developer tool executables, pkg-config files, and documentation.

Unzip those of the files below that you need into some directory of your choice. Let's call that directory top. Then add top\bin and top\lib to your PATH. How to do this depends on your Windows version. For NT and 2k, use the Control Panel's System tool. 

Install in a fresh location!
Because many of the DLLs now install in a different location (in the bin subdirectory instead of lib, because of changes in GNU libtool), in order to avoid much confusion, it is best to install the stuff from the zipfiles below in a totally new directory. Remove the old installation location's bin and lib directories from your PATH.

pkg-config
pkg-config is a replacement for the glib-config and gtk-config scripts that previously were used on Unix. (No such scripts were included in my Windows port, though.)

You can use the pkg-config command in your makefiles like this:

GLIB_CFLAGS=`pkg-config --cflags glib-2.0`
GLIB_LIBS=`pkg-config --libs glib-2.0`
...
foobar.exe : $(FOOBAR_OBJS)
	   $(CC) -o $@ $(FOOBAR_OBJS) $(GLIB_LIBS)

Etc. That only works with a Unixish Make and especially with a command interpreter (shell) that understands backquotes. (I hope you notice those backquotes in the above Makefile snippet, and understand what they mean. If you don't, educate yourself.)

I advise not to use a directory with spaces or other funny character in the name as top. Otherwise you will get problems when using pkg-config output in makefiles. 

If you are a MSVC user and use nmake, it's a bit more complicated. nmake (or the standard Windows command interpreter it uses, command.com or cmd.exe) doesn't support backquotes. You must run pkg-config manually with the switch --msvc-syntax, and paste its output into your nmake makefile.

On NT/2k/XP, it is possible to have nmake create temporary files containing the output from pkg-config, and use those in a nmake makefile like this: 

foobar.exe: foobar.obj __gtk_libs.mak
	cl -MD foobar.obj @__gtk_libs.mak
	@del __gtk_libs.mak

foobar.obj: foobar.c __gtk_cflags.mak
	cl -MD -c @__gtk_cflags.mak foobar.c
	@del __gtk_cflags.mak

__gtk_cflags.mak:
	pkg-config --msvc-syntax --cflags gtk+-2.0 >$@

__gtk_libs.mak:
	for /F "delims==" %i in ('pkg-config --msvc-syntax --libs gtk+-2.0') \
		do echo /link %i >$@

Note in the above makefile fragment that the __gtk_libs.mak file is created using the for /F syntax available only in the cmd.exe command interpreter on NT/2k/XP. This obscure acrobatics is needed because we want __gtk_libs.mak to contain a line that starts with /link, but pkg-config cannot output the /link flag itself as a cl command line might contain several invokations of pkg-config --libs. We cannot put the /link on the cl command line that links foobar.exe either, as cl then gets confused and runs the linker with a command file that on one line has @__gtk_libs.mak, and link.exe doesn't like that. Sigh.

Downloadable files
Here is a list of the files downloadable from this site, and links to dependencies downloadable from other sites.

GNU libiconv for Win32. (Link to the master GNU ftp site. Use any mirror site if you like.) GNU Libiconv is an implementation of iconv. GLib uses libiconv, so you will need this. To install, unzip in the top directory.

Note that previous binary builds of GLib etc used a different port of GNU libiconv. Download and install this instead.

If you intend to use libtool when developing software that uses libiconv, you need to generate an import library for iconv.dll using pexports and dlltool. With just gcc and GNU ld, using the MSVC import library iconv.lib, or even just the DLL iconv.dll, works fine.

libiconv-1.9.1.tar.gz. Corresponding sources.

GNU gettext runtime for Win32, containing the GNU libintl. GLib uses libintl, so you will need this. Unzip in the topdirectory. Note that if you intend to compile software that uses gettext with gcc on Windows, you need to edit libintl.h to not use the _INTL_REDIRECT_ASM mechanism.

Note that previous binary builds of GLib etc used a different port of GNU libintl. Download and install this instead.

If you intend to use libtool when developing software that uses libintl, you need to generate an import library for intl.dll using pexports and dlltool. With just gcc and GNU ld, using the MSVC import library intl.lib, or even just the DLL intl.dll, works fine.

GNU gettext tools, containing the gettext commands (msgfmt.exe etc). The msgfmt command is needed if you want to recompile message catalogs. The other commands can be used to mangle message catalogs in other ways.

Note that in this zip file the tools have been recompiled to use the msvcrt DLL-based C runtime, which is necessary for them to work properly. The gettext-tools 0.12.1 Win32 binaries on the GNU ftp site are otherwise identical, but use the statically linked C library, and they won't work with UTF-8 .po files.

gettext-0.12.1.tar.gz. Sources for GNU gettext (runtime and tools).

glib-2.2.3.zip Runtime package for GLib 2.2.3. Requires libiconv and gettext-runtime.

glib-dev-2.2.3.zip, corresponding developer package, i.e. headers, import libraries and documentation.

glib-2.2.3.tar.gz, corresponding sources.

pkgconfig-0.15.zip. Pkg-config is a neat program that is useful in makefiles etc. It manages compile and link flags. Requires GLib 2.x.

Sources for pkg-config (On this site, to satisfy strict interpretation of GPL requirements. The same file as available from www.freedesktop.org)

gtk+-1.3.0-20030717.zip . Runtime package. This is the gtk-1-3-win32-production branch of GTK+. The GTK+ version is 1.3.0, which is quite old. The GTK+ API had not yet changed much at that time, it is still mostly like GTK+ 1.2.7. Requires GLib 2.x.

gtk+-dev-1.3.0-20030115.zip. Corresponding developer package.

The source for this GTK+ version is in gtk+-1.3.0-20030717-src.zip. There is no other distribution of the source to this GTK+ branch. You can get it from (anynymous) CVS, though, use the gtk-1-3-win32-production branch of the gtk+ module.

dirent.zip. The public domain <dirent.h> implementation from mingw, separately packaged for MSVC users. Not directly related to GLib, but here for the convenience of MSVC users, as there used to be a dirent wrapper using #defines in earlier GLib versions for Win32. Needed only by developers that use MSVC.

gimp-1.2.5-20030729.zip. GIMP 1.2.5 plus one small patch. Requires GLib 2.x and GTK+ 1.3.0. Some plug-ins require zlib, libpng, libjpeg, libtiff and freetype.

gimp-dev-1.2.5.zip. Corresponding developer package, i.e. libraries and headers for developing and building GIMP plug-ins.

GIMP sources. If you redistribute the GIMP executables, you must also redistribute this file.

Sources to the unofficial plug-ins included in the GIMP zipfile. 

Zlib 1.1.4-1, libpng 1.2.4-1, libjpeg 6b-1, libtiff 3.5.7 and FreeType2 2.1.4. As ported and packaged for Windows by the GnuWin32 people. These are used both by GIMP, and by GTK+ 2 below (except FreeType2, which is used just by GIMP's freetype plug-in and Pango's PangoFT2 engine). The "bin" packages are the runtime ones, the "lib" packages are the ones needed by developers.

Note that the previous binary builds of GIMP and GTK 2.x used an older version of the GnuWin32 zlib, libjpeg and freetype ports, so you need to download the current ones from the link above.

At least those versions of the GnuWin32 packages available when writing this are inconsistent in their use of each other's DLLs. For instance, libpng.dll wants zlib.dll, while the zlib package actually provides zlib-1.dll. Similarily, libtiff.dll wants libjpeg.dll, while the libjpeg package provides jpeg-62.dll. Just copying zlib.dll to zlib-1.dll, and jpeg-62.dll to libjpeg.dll seems to work fine.

gimp-gif-1.2.5.zip. The gif plug-in. Covered by the Unisys LZW patent, so don't download this if you live in a country where the patent is still valid and you don't have a license!

xpm-nox-4.0.3-20020617.zip A version of the Xpm library that does not use X. Used by the xpm plug-in in GIMP.

xpm-nox-dev-4.0.3-20020112.zip, corresponding developer package.

gimp-pspi-1.0.2-src.zip. Sources for the pspi plug-in.

The packages below are GTK+ 2.2.x and its dependents. GIMP 1.2.x does not use these.

gtk+-2.2.4.zip GTK+ 2.2.4. Requires glib, atk, pango, zlib, libpng, libjpeg and libtiff.

gtk+-dev-2.2.4.zip, corresponding developer package.

gtk+-2.2.4.tar.gz, corresponding sources.

atk-1.4.0.zip, pango-1.2.5.zip. Atk and Pango are used by GTK+ 2. Pango is also used by GIMP 1.3.x.

atk-dev-1.4.0.zip, pango-dev-1.2.5.zip. Corresponding developer packages.

atk-1.4.0.tar.gz, pango-1.2.5.tar.gz. Corresponding sources.

fontconfig-2.2.1.zip. Fontconfig is used by the FreeType2 backend in Pango (pangoft2). Contrary to what many seem to think, fontconfig is in no way dependent on X11, so it does make some sense to use it on Windows. GTK+ does not use pangoft2, so you probably will not need this.

fontconfig-dev-2.2.1.zip. Corresponding developer package (Import library, headers, documentation). 

fontconfig-2.2.1.tar.gz. Source (not on this site).

Fontconfig uses the expat library. Download expat.zip and put the xmlparse.dll in your PATH.

The packages below are used by GIMP 1.3.x. GIMP 1.2.x does not use these.

libart_lgpl-2.3.14.zip. Libart binary (DLL). libart_lgpl-dev-2.3.14.zip. Developer package. 

libart_lgpl-2.3.14.tar.gz. Libart sources.

libexif-0.5.10.zip. Libexif binary (DLL). libexif-dev-0.5.10.zip. Developer package. 

Libexif home page, with sources.

librsvg-2.4.0.zip. Librsvg binary (DLL). librsvg-dev-2.4.0.zip. Developer package.

librsvg-2.4.0.tar.gz. librsvg sources.

libgsf-1.8.2.zip. Libgsf binary (DLL). libgsf-dev-1.8.2.zip. Developer package.

libgsf-1.8.2.tar.gz. libgsf sources.

libxml2 (provided by Igor Zlatkovic). 

멀 어떻하라는 말이조?ㅜ_ㅜ

hys545의 이미지

closeyes wrote:
Redistribution on other web sites, CD-ROM etc
You are welcome to redistribute the GIMP on other web sites, CD-ROM, and other media. You don't have to ask for permission. That's one of the points of Free Software. One important thing that the GNU license requires is that you must also redistribute the source code. This means the GIMP, GLib, and GTK+ 1.3.0 sources from this site (ftp.gtk.org is the same site as this). Also the libiconv and gettext sources from some GNU mirror must be redistributed. 
Installer
There is a GIMP installer that contains the appropriate stuff from these zipfiles (or relatevely fresh previous versions) at http://www2.arnes.si/~sopjsimo/gimp/. That installer is created by Jernej Simoncic, so please ask him about problems with it.

Prebuilt binary packages, developer packages, and source
These packages are for experienced GIMP and Windows users, and for people who develop software that use GLib and/or GTK. The binaries (DLLs and executables) in these packages are not for the Cygwin environment. They use the MSVCRT runtime. The files included in these zip archives are not compatible with, or drop-in replacements for, the stuff used in the GIMP for Windows from December 2000. 

(For Cygwin builds of GTK etc, check out Masahiro Sakai's site.)

Below are runtime and developer packages. The runtime packages include DLLs, auxiliary executables, and configuration files needed at runtime. The developer packages include import libraries, headers, developer tool executables, pkg-config files, and documentation.

Unzip those of the files below that you need into some directory of your choice. Let's call that directory top. Then add top\bin and top\lib to your PATH. How to do this depends on your Windows version. For NT and 2k, use the Control Panel's System tool. 

Install in a fresh location!
Because many of the DLLs now install in a different location (in the bin subdirectory instead of lib, because of changes in GNU libtool), in order to avoid much confusion, it is best to install the stuff from the zipfiles below in a totally new directory. Remove the old installation location's bin and lib directories from your PATH.

pkg-config
pkg-config is a replacement for the glib-config and gtk-config scripts that previously were used on Unix. (No such scripts were included in my Windows port, though.)

You can use the pkg-config command in your makefiles like this:

GLIB_CFLAGS=`pkg-config --cflags glib-2.0`
GLIB_LIBS=`pkg-config --libs glib-2.0`
...
foobar.exe : $(FOOBAR_OBJS)
	   $(CC) -o $@ $(FOOBAR_OBJS) $(GLIB_LIBS)

Etc. That only works with a Unixish Make and especially with a command interpreter (shell) that understands backquotes. (I hope you notice those backquotes in the above Makefile snippet, and understand what they mean. If you don't, educate yourself.)

I advise not to use a directory with spaces or other funny character in the name as top. Otherwise you will get problems when using pkg-config output in makefiles. 

If you are a MSVC user and use nmake, it's a bit more complicated. nmake (or the standard Windows command interpreter it uses, command.com or cmd.exe) doesn't support backquotes. You must run pkg-config manually with the switch --msvc-syntax, and paste its output into your nmake makefile.

On NT/2k/XP, it is possible to have nmake create temporary files containing the output from pkg-config, and use those in a nmake makefile like this: 

foobar.exe: foobar.obj __gtk_libs.mak
	cl -MD foobar.obj @__gtk_libs.mak
	@del __gtk_libs.mak

foobar.obj: foobar.c __gtk_cflags.mak
	cl -MD -c @__gtk_cflags.mak foobar.c
	@del __gtk_cflags.mak

__gtk_cflags.mak:
	pkg-config --msvc-syntax --cflags gtk+-2.0 >$@

__gtk_libs.mak:
	for /F "delims==" %i in ('pkg-config --msvc-syntax --libs gtk+-2.0') \
		do echo /link %i >$@

Note in the above makefile fragment that the __gtk_libs.mak file is created using the for /F syntax available only in the cmd.exe command interpreter on NT/2k/XP. This obscure acrobatics is needed because we want __gtk_libs.mak to contain a line that starts with /link, but pkg-config cannot output the /link flag itself as a cl command line might contain several invokations of pkg-config --libs. We cannot put the /link on the cl command line that links foobar.exe either, as cl then gets confused and runs the linker with a command file that on one line has @__gtk_libs.mak, and link.exe doesn't like that. Sigh.

Downloadable files
Here is a list of the files downloadable from this site, and links to dependencies downloadable from other sites.

GNU libiconv for Win32. (Link to the master GNU ftp site. Use any mirror site if you like.) GNU Libiconv is an implementation of iconv. GLib uses libiconv, so you will need this. To install, unzip in the top directory.

Note that previous binary builds of GLib etc used a different port of GNU libiconv. Download and install this instead.

If you intend to use libtool when developing software that uses libiconv, you need to generate an import library for iconv.dll using pexports and dlltool. With just gcc and GNU ld, using the MSVC import library iconv.lib, or even just the DLL iconv.dll, works fine.

libiconv-1.9.1.tar.gz. Corresponding sources.

GNU gettext runtime for Win32, containing the GNU libintl. GLib uses libintl, so you will need this. Unzip in the topdirectory. Note that if you intend to compile software that uses gettext with gcc on Windows, you need to edit libintl.h to not use the _INTL_REDIRECT_ASM mechanism.

Note that previous binary builds of GLib etc used a different port of GNU libintl. Download and install this instead.

If you intend to use libtool when developing software that uses libintl, you need to generate an import library for intl.dll using pexports and dlltool. With just gcc and GNU ld, using the MSVC import library intl.lib, or even just the DLL intl.dll, works fine.

GNU gettext tools, containing the gettext commands (msgfmt.exe etc). The msgfmt command is needed if you want to recompile message catalogs. The other commands can be used to mangle message catalogs in other ways.

Note that in this zip file the tools have been recompiled to use the msvcrt DLL-based C runtime, which is necessary for them to work properly. The gettext-tools 0.12.1 Win32 binaries on the GNU ftp site are otherwise identical, but use the statically linked C library, and they won't work with UTF-8 .po files.

gettext-0.12.1.tar.gz. Sources for GNU gettext (runtime and tools).

glib-2.2.3.zip Runtime package for GLib 2.2.3. Requires libiconv and gettext-runtime.

glib-dev-2.2.3.zip, corresponding developer package, i.e. headers, import libraries and documentation.

glib-2.2.3.tar.gz, corresponding sources.

pkgconfig-0.15.zip. Pkg-config is a neat program that is useful in makefiles etc. It manages compile and link flags. Requires GLib 2.x.

Sources for pkg-config (On this site, to satisfy strict interpretation of GPL requirements. The same file as available from www.freedesktop.org)

gtk+-1.3.0-20030717.zip . Runtime package. This is the gtk-1-3-win32-production branch of GTK+. The GTK+ version is 1.3.0, which is quite old. The GTK+ API had not yet changed much at that time, it is still mostly like GTK+ 1.2.7. Requires GLib 2.x.

gtk+-dev-1.3.0-20030115.zip. Corresponding developer package.

The source for this GTK+ version is in gtk+-1.3.0-20030717-src.zip. There is no other distribution of the source to this GTK+ branch. You can get it from (anynymous) CVS, though, use the gtk-1-3-win32-production branch of the gtk+ module.

dirent.zip. The public domain <dirent.h> implementation from mingw, separately packaged for MSVC users. Not directly related to GLib, but here for the convenience of MSVC users, as there used to be a dirent wrapper using #defines in earlier GLib versions for Win32. Needed only by developers that use MSVC.

gimp-1.2.5-20030729.zip. GIMP 1.2.5 plus one small patch. Requires GLib 2.x and GTK+ 1.3.0. Some plug-ins require zlib, libpng, libjpeg, libtiff and freetype.

gimp-dev-1.2.5.zip. Corresponding developer package, i.e. libraries and headers for developing and building GIMP plug-ins.

GIMP sources. If you redistribute the GIMP executables, you must also redistribute this file.

Sources to the unofficial plug-ins included in the GIMP zipfile. 

Zlib 1.1.4-1, libpng 1.2.4-1, libjpeg 6b-1, libtiff 3.5.7 and FreeType2 2.1.4. As ported and packaged for Windows by the GnuWin32 people. These are used both by GIMP, and by GTK+ 2 below (except FreeType2, which is used just by GIMP's freetype plug-in and Pango's PangoFT2 engine). The "bin" packages are the runtime ones, the "lib" packages are the ones needed by developers.

Note that the previous binary builds of GIMP and GTK 2.x used an older version of the GnuWin32 zlib, libjpeg and freetype ports, so you need to download the current ones from the link above.

At least those versions of the GnuWin32 packages available when writing this are inconsistent in their use of each other's DLLs. For instance, libpng.dll wants zlib.dll, while the zlib package actually provides zlib-1.dll. Similarily, libtiff.dll wants libjpeg.dll, while the libjpeg package provides jpeg-62.dll. Just copying zlib.dll to zlib-1.dll, and jpeg-62.dll to libjpeg.dll seems to work fine.

gimp-gif-1.2.5.zip. The gif plug-in. Covered by the Unisys LZW patent, so don't download this if you live in a country where the patent is still valid and you don't have a license!

xpm-nox-4.0.3-20020617.zip A version of the Xpm library that does not use X. Used by the xpm plug-in in GIMP.

xpm-nox-dev-4.0.3-20020112.zip, corresponding developer package.

gimp-pspi-1.0.2-src.zip. Sources for the pspi plug-in.

The packages below are GTK+ 2.2.x and its dependents. GIMP 1.2.x does not use these.

gtk+-2.2.4.zip GTK+ 2.2.4. Requires glib, atk, pango, zlib, libpng, libjpeg and libtiff.

gtk+-dev-2.2.4.zip, corresponding developer package.

gtk+-2.2.4.tar.gz, corresponding sources.

atk-1.4.0.zip, pango-1.2.5.zip. Atk and Pango are used by GTK+ 2. Pango is also used by GIMP 1.3.x.

atk-dev-1.4.0.zip, pango-dev-1.2.5.zip. Corresponding developer packages.

atk-1.4.0.tar.gz, pango-1.2.5.tar.gz. Corresponding sources.

fontconfig-2.2.1.zip. Fontconfig is used by the FreeType2 backend in Pango (pangoft2). Contrary to what many seem to think, fontconfig is in no way dependent on X11, so it does make some sense to use it on Windows. GTK+ does not use pangoft2, so you probably will not need this.

fontconfig-dev-2.2.1.zip. Corresponding developer package (Import library, headers, documentation). 

fontconfig-2.2.1.tar.gz. Source (not on this site).

Fontconfig uses the expat library. Download expat.zip and put the xmlparse.dll in your PATH.

The packages below are used by GIMP 1.3.x. GIMP 1.2.x does not use these.

libart_lgpl-2.3.14.zip. Libart binary (DLL). libart_lgpl-dev-2.3.14.zip. Developer package. 

libart_lgpl-2.3.14.tar.gz. Libart sources.

libexif-0.5.10.zip. Libexif binary (DLL). libexif-dev-0.5.10.zip. Developer package. 

Libexif home page, with sources.

librsvg-2.4.0.zip. Librsvg binary (DLL). librsvg-dev-2.4.0.zip. Developer package.

librsvg-2.4.0.tar.gz. librsvg sources.

libgsf-1.8.2.zip. Libgsf binary (DLL). libgsf-dev-1.8.2.zip. Developer package.

libgsf-1.8.2.tar.gz. libgsf sources.

libxml2 (provided by Igor Zlatkovic). 

멀 어떻하라는 말이조?ㅜ_ㅜ


간단핫게
glib는 런타임 파일입니다
그리고 glib-devel은 헤더하고 라이브러리입니다'
이게 개발할때 필요한겁니다
그리고 gtk로 만든 풀그림 배포할때는 gtk런타임도 같이 배포해야합니다

즐린

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.