本文介绍了使用C#合并两个TIF的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

在我的场景中,我在不同位置有两个tiff图像,说

c:/temp/img1和x:/temp/img2.现在,我需要以编程方式(C#.net)将这些图像合并为单个图像.
提出一些想法/代码.

谢谢,
Dev

Hi all,

In my scenario i have two tiff image in different location say

c:/temp/img1 and x:/temp/img2 . now i need to merge these images as a single image programatically (C#.net)..

suggest some ideas/codes.

Thanks,
Dev

推荐答案

public void JoinTiffImages(string[] imageFiles, string outFile,
                           EncoderValue compressEncoder);


这篇关于使用C#合并两个TIF的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 22:35