使用 C# 编辑 tif 文件

发布于 2024-09-19 04:55:43 字数 75 浏览 3 评论 0原文

我需要创建一个程序,从目录中读取 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

剪不断理还乱 2024-09-26 04:55:43

如果您需要在 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.

桃扇骨 2024-09-26 04:55:43

请参阅此处

See here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文