PyLibTiff Python的TIFF库

程序名称:PyLibTiff

授权协议: BSD

操作系统: 跨平台

开发语言: Python

PyLibTiff 介绍

PyLibTIff 是 Python 用来处理 TIFF 图像的开发包,示例代码:

from libtiff import TIFF

to open a tiff file for reading:

tif = TIFF.open(‘filename.tif’, mode=’r’)

to read an image in the currect TIFF directory and return it as numpy

array:
image = tif.read_image()

to read all images in a TIFF file:

for image in tif.iter_images(): # do stuff with image

to open a tiff file for writing:

tif = TIFF.open(‘filename.tif’, mode=’w’)

to write a image to tiff file

tif.write_image(image)

PyLibTiff 官网

http://code.google.com/p/pylibtiff/

相关编程语言

BlazeDS 是一个基于服务器的Java 远程控制(remoting...
OVal 是一个可扩展的Java对象数据验证框架,验证的规...
Volta 是一套开发工具,专为开发分布式、实时系统应...
OpenDDS 是一个开源的 C++ 实现的 对象管理组织 OMG...
JADE (Java Agent DEvelopment Framework) 是一个完...
FastMM ,在D2006和2007中已代替了原来的内存管理器。