|

 |
µ¿¸í °ÔÀÓ°ú °¿µ¹Î ±³¼ö´Ô
http://game.tu.ac.kr/ymkang/wiki/index.php/%EB%8C%80%EB%AC%B8
SDL ¿¹Á¦
http://lazyfoo.net/SDL_tutorials/index.php
±âÃÊ ¿¹Á¦
http://www.codecolony.de/opengl.htm
¼¿ï´ë
http://cglab.snu.ac.kr/
http://nehe.gamedev.net/
¼ö¿ø´ë ±³¼ö ȨÇÇ
http://vmlab.suwon.ac.kr/mwlee/note.htm
¸ó½ºÅÍ
http://home.planet.nl/~monstrous/
½Ç¿Ü ... culling
http://www.futurenation.net/glbase/index.php
bmp, tga ·Î´õ
http://www.robthebloke.org/
heightmap
http://home10.inet.tele.dk/moelhave/projects.htm
·¹µð¿À½ÃƼ, ·¹ÀÌÆ®·¹À̽Ì
http://www.cs.ucl.ac.uk/staff/j.mortensen/projects.htm
=============================================================
ÆÄÀ̽ã ÇÏÀ§ µð·ºÅ丮 °Ë»ö
https://wikidocs.net/39
import os
def search(dirname):
for (path, dir, files) in os.walk(dirname):
for filename in files:
ext = os.path.splitext(filename)[-1]
if ext == '.jpg': print("%s/%s" % (path, filename))
if ext == '.png': print("%s/%s" % (path, filename))
search("./")
================================================================
ImageMagick Wand¸¦ »ç¿ëÇÏ¿© À̹ÌÁö¸¦ PDF ÆÄÀÏ·Î º¯È¯
http://garmoncheg.blogspot.kr/2013/07/python-converting-pdf-to-image.html
ImageMagick Wand ½ÉÄ«ºùÀ¸·Î À̹ÌÁö Ãà¼Ò
http://perhapsspy.tumblr.com/post/91858654960/½É-Ä«ºùseam-carvingÀ»-»ç¿ëÇØº¸¾Ò´ÙÈÄÀÏ´ã-Ãß°¡
ImageMagick Äĸǵå¶óÀÎ »ç¿ë¹ý
echo `identify '%n' ./Assets/Texture/icon.png`
echo `identify '%w' ./Assets/Texture/icon.png`
echo `identify '%h' ./Assets/Texture/icon.png`
ctypes ¸¦ ÀÌ¿ëÇÑ shard library Á÷Á¢ È£Ãâ
http://egloos.zum.com/mcchae/v/11024689
wand¿¡¼ À̹ÌÁö °¹¼ö Àбâ
GetImageListLength
MagickGetNumberImages sequence.py __len__ ÆÄÀ̽ã ÄÚµå·Î Çϸé
from wand.image import Image
http://docs.wand-py.org/en/0.4.1/guide/sequence.html
from wand.image import Image
with Image(filename = 'example.png') as image:
print(image.size)
print(image.depth)
imageLength = len(image.sequence)
print("Alpha is = %s" %(image.alpha_channel))
print("GetImageListLength = %d" %(imageLength))
image.resize(200, 200)
image.save(filename = 'result1.jpg')
[ÇÏÀ§ µð·ºÅ͸® °Ë»öÀ» ½±°Ô ÇØÁÖ´Â os.walk]
https://wikidocs.net/39
import os
for (path, dir, files) in os.walk("c:/"):
for filename in files:
ext = os.path.splitext(filename)[-1]
if ext == '.py':
print("%s/%s" % (path, filename)) |
|
|