使用 C# 编辑 tif 文件
我需要创建一个程序,从目录中读取 tif 文件,然后修剪文件的底部英寸并重新保存文件。我知道如何打开文件,但如何从 C# 自动化此过程?
I need to create a program that reads tif files from a directory and then trims the bottom inch of the file and resaves the file. I know how to open the files but how would I automate this process from c#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您需要在 C# 中处理 TIFF 图像,请查看 LibTIFF.Net
http://bitmiracle.com/libtiff/ - 它是开源和本机 .NET 组件,免费商业用途。
该库还应该具有您需要的 TIFF 裁剪功能。我不确定本机 .NET 库是否可以处理您可能需要的所有 TIFF 函数,而 LibTIFF 可以。
用于 C/C++ 的原始 LibTIFF 可以在 http://www.remotesensing.org/libtiff/ 如果需要,它可以帮助您提供文档和支持。
libTiff 中包含一个名为 tiffCrop 的程序,它也应该有源代码。 http://www.remotesensing.org/libtiff/man/tiffcrop.1。 html 可以通过以下方式访问
http://www.remotesensing.org/libtiff/tools.html。
If you need to handle TIFF images in C# then have a look at LibTIFF.Net
http://bitmiracle.com/libtiff/ - It is open source and Native .NET component and free for commercial use.
This library should also have the TIFF cropping functions you need. I am not sure if the native .NET libraries can handle all of the TIFF functions you may require whereas LibTIFF will.
The original LibTIFF for C/C++ can be found at http://www.remotesensing.org/libtiff/ which may help you with documentation and support if needed.
Included with libTiff is a program called tiffCrop which should also have source code. http://www.remotesensing.org/libtiff/man/tiffcrop.1.html which can be accessed via
http://www.remotesensing.org/libtiff/tools.html.
请参阅此处。
See here.