彩票走势图

图像处理工具包ImagXpress使用教程:多页TIFF编辑API的使用(二)

原创|使用教程|编辑:郝浩|2013-07-18 09:29:04.000|阅读 364 次

概述:ImagXpress中的InsertPage方法可以将来自一个源TIFF文件的单页插入到另一个地方的TIFF文件中,InsertPage方法还可以将一个源多页或单页的TIFF文件的彩票走势图插入到目标文件中。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

   最大图像处理工具包ImagXpress中的InsertPage方法可以将来自一个源TIFF文件的单页插入到另一个地方的TIFF文件中,InsertPage方法还可以将一个源多页或单页的TIFF文件的彩票走势图插入到目标文件中。

    InsertPages 方法支持在一个源多页的TIFF文件中设置起始页,还可以设置从源TIFF文件插入到目标TIFF文件的页面数。

    ImageX.InsertPage使用方法入下:

public static void InsertPage( 
   ImagXpress imagXpress,
   string srcFileName,
   string dstFileName,
   int pageNumber
)
ImageX.InsertPage(imagXpress, srcFileName, dstFileName, pageNumber);

    多页的ImageX.InsertPages的使用方法如下:

public static void InsertPages( 
   ImagXpress imagXpress,
   string sourceFilename,
   int sourcePageNumber,
   int numberOfPages,
   string destinationFilename,
   int destinationPageNumber
)
ImageX.InsertPages(imagXpress, sourceFilename, sourcePageNumber, numberOfPages, destinationFilename, destinationPageNumber);

插入一个TIFF文件的第一页到另一个TIFF文件中

    使用ImageX.InsertPage方法插入多页TIFF文件的前三页到另一个文件,可以用下面的代码实现:

System.IO.File.Copy(sourceFilename, tempSourceFilename);
for (int i = 1; i <= 3; i++)
{
    ImageX.InsertPage(imagXpress1, tempSourceFilename, destinationFilename, i);
    ImageX.DeletePage(imagXpress1, tempSourceFilename, 1);
}
用ImageX.InsertPages方法也可以实现上面的效果:
ImageX.InsertPages(imagXpress1, sourceFilename, 1, 3, destinationFilename, 1);

追加TIFF文件的另一个页面到另一个TIFF文件中:

    ImageX.InsertPage方法可以追加TIFF文件的前面三个页面到另一个TIFF文件的最后,可以用下面的代码实现:

int numberOfPagesInDocument = ImageX.NumPages(imagXpress1, destinationFilename);
int startPageToAppend = numberOfPagesInDocument + 1;
System.IO.File.Copy(sourceFilename, tempSourceFilename);
for (int i = 0; i < 3; i++)
{
  ImageX.InsertPage(imagXpress1, tempSourceFilename, destinationFilename,
startPageToAppend + i);
  ImageX.DeletePage(imagXpress1, tempSourceFilename, 1);
}
ImageX.InsertPages方法也可以实现上面的效果:
ImageX.InsertPages(imagXpress1, sourceFilename, 1, 3, destinationFilename, int.MaxValue);

>>>下载ImagXpress

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:慧都控件

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP