所需dll-iTextSharp.dll-在VS的右键引用 “管理NuGet程序包”中搜索添加
调用

        private void button1_Click(object sender, EventArgs e){//string[] fileNames = new string[] { "C:\\Users\\咩图\\Desktop\\新建文件夹\\K186+020 老君炉大桥\\桥型布置图1.pdf",//    "C:\\Users\\咩图\\Desktop\\新建文件夹\\K186+020 老君炉大桥\\桥型布置图2.pdf" };//string outputFile = "C:\\D盘";//PdfDocumentBase doc = PdfDocument.MergeFiles(fileNames);//doc.Save(outputFile);//MessageBox.Show("合并成功");MergePDF(textBox1.Text+","+textBox2.Text, "C:\\D盘","合并.pdf");}

工具函数

        private void MergePDF(string PdfFileNames, string outMergeFile, string FileName){string subPath = outMergeFile + "\\temp\\";subPath = "";string[] fileList = PdfFileNames.Split(',');if (fileList.Length < 1){return;}try{PdfReader reader;iTextSharp.text.Rectangle rectangle = new iTextSharp.text.Rectangle(PageSize.A3.Height, PageSize.A3.Width);iTextSharp.text.Document document = new iTextSharp.text.Document(rectangle);PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(outMergeFile + "\\" + FileName, FileMode.Create));document.Open();PdfContentByte cb = writer.DirectContent;PdfImportedPage newPage;BaseFont bf = BaseFont.CreateFont(BaseFont.HELVETICA, BaseFont.CP1252, BaseFont.NOT_EMBEDDED);int countNum = 0;for (int i = 0; i < fileList.Length; i++){if (fileList[i].Contains(".docx")){fileList[i] = fileList[i].Replace(".docx", ".pdf");}else if (fileList[i].Contains(".doc")){fileList[i] = fileList[i].Replace(".doc", ".pdf");}if (!File.Exists(subPath + fileList[i])){continue;}reader = new PdfReader(subPath + fileList[i]);int iPageNum = reader.NumberOfPages;for (int j = 1; j <= iPageNum; j++){countNum += 1;document.NewPage();newPage = writer.GetImportedPage(reader, j);String text = countNum.ToString();float len = bf.GetWidthPoint(text, 10);cb.AddTemplate(newPage, 0, 0);cb.BeginText();cb.SetFontAndSize(bf, 10);cb.ShowTextAligned(PdfContentByte.ALIGN_RIGHT, text, 530, 20, 0);//cb.SetTextMatrix(0, 0);//cb.ShowText(text);cb.EndText();//cb.AddTemplate(newPage, 0, 0);}}if (document != null){document.Close();}if (Directory.Exists(subPath))Directory.Delete(subPath, true);//删除临时文件夹}catch (Exception){string message = "文件:" + outMergeFile + "\\" + FileName + "合并失败。";MessageBox.Show(message);}}

转自https://www.cnblogs.com/matrix-zhu/p/6305944.html
IText实现对PDF文档属性的基本设置
一、Itext简介

iText是著名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库。通过iText不仅可以生成PDF或rtf的文档,而且可以将XML、Html文件转化为PDF文件。

iText的安装非常方便,在http://www.lowagie.com/iText/download.html网站上下载iText.jar文件后,只需要在系统的CLASSPATH中加入iText.jar的路径,在程序中就可以使用iText类库了。

二、生成PDF步骤

1、创建文档对象实例

Document document = new Document();

2、建立书写器(Writer)与文档对象(document)关联,通过书写器将文档写入磁盘

PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(DEST));

DEST:生成PDF文件

3、打开文档

document.open();

4、向文档中添加内容

document.add(new Paragraph(“PDF demo”));

5、关闭文档

document.close();

三、具体分析

1、对象实例

public document();

public document(Rectangle pageSize);

public document(Rectangle pageSize, int marginLeft, int marginRight, int marginTop, int marginBottom);

pageSize是指文档页面大小,public document();页面大小为A4,效果等同于Document(PageSize.A4);

marginLeft、marginRight、marginTop、marginBottom分别为左、右、上、下的页边距。

通过参数pageSize可以设定页面大小、面背景色、以及页面横向/纵向等属性。iText定义了A0-A10、AL、LETTER、HALFLETTER、_11x17、LEDGER、NOTE、B0-B5、ARCH_A-ARCH_E、FLSA和FLSE等纸张类型,也可以通过Rectangle pageSize = new Rectangle(144, 720);自定义纸张。通过Rectangle方法rotate()可以将页面设置成横向。

2、书写器对象

一旦文档(document)对象建立好之后,需要建立一个或多个书写器(Writer)对象与之关联。通过书写器(Writer)对象可以将具体文档存盘成需要的格式。

PDFWriter可以将文档存成PDF文件;HtmlWriter可以将文档存成html文件

3、文档属性

在文档打开之前,可以设定文档的标题、主题、作者、关键字、装订方式、创建者、生产者、创建日期等属性,调用的方法分别是:

public boolean addTitle(String title)
public boolean addSubject(String subject)
public boolean addKeywords(String keywords)
public boolean addAuthor(String author)
public boolean addCreator(String creator)
public boolean addProducer()
public boolean addCreationDate()
public boolean addHeader(String name, String content)

其中方法addHeader对于PDF文档无效,addHeader仅对html文档有效,用于添加文档的头信息。

当新的页面产生之前,可以设定页面的大小、书签、脚注(HeaderFooter)等信息,调用的方法是:

public boolean setPageSize(Rectangle pageSize)
public boolean add(Watermark watermark)
public void removeWatermark()
public void setHeader(HeaderFooter header)
public void resetHeader()
public void setFooter(HeaderFooter footer)
public void resetFooter()
public void resetPageCount()
public void setPageCount(int pageN)

如果要设定第一面的页面属性,这些方法必须在文档打开前调用。

对于PDF文档,iText还提供了文档的显示属性,通过调用书写器的 setViewerPreferences方法可以控制文档打开时Acrobat Reader的显示属性,如是否单页显示、是否全屏显示、是否隐藏状态条等属性。

另外,iText也提供了对PDF文件的安全保护,通过书写器(Writer)的setEncryption方法,可以设定文档的用户口令、只读、可打印等属性。

4、添加文档内容

所有向文档添加的内容都是以对象为单位的,如Phrase、Paragraph、Table、Graphic对象等。比较常用的是段落(Paragraph)对象,用于向文档中添加一段文字。

IText中用文本块(Chunk)、短语(Phrase)和段落(paragraph)处理文本。文本块(Chunk)是处理文本的最小单位,有一串带格式(包括字体、颜色、大小)的字符串组成。如以下代码就是产生一个字体为HELVETICA、大小为10、带下划线的字符串:

Chunk chunk1 = new Chunk(“This text is underlined”,
FontFactory.getFont(FontFactory.HELVETICA, 12, Font.UNDERLINE));
短语(Phrase)由一个或多个文本块(Chunk)组成,短语(Phrase)也可以设定字体,但对于其中以设定过字体的文本块(Chunk)无效。通过短语(Phrase)成员函数add可以将一个文本块(Chunk)加到短语(Phrase)中,如:phrase6.add(chunk);

段落(paragraph)由一个或多个文本块(Chunk)或短语(Phrase)组成,相当于WORD文档中的段落概念,同样可以设定段落的字体大小、颜色等属性。另外也可以设定段落的首行缩进、对齐方式(左对齐、右对齐、居中对齐)。通过函数setAlignment可以设定段落的对齐方式,setAlignment的参数1为居中对齐、2为右对齐、3为左对齐,默认为左对齐。

Itext中处理表格在有PDFTable,Table。对于简单在表格处理可以用Table,但如果要处理复杂的表格就需要PDFTable进行处理。

创建表格时,必须要指定列,行则不是必须的。

建立表格之后,可以设定表格的属性,如:边框宽度、边框颜色、衬距(padding space 即单元格之间的间距)大小等属性。

IText中处理图像的类为Image,目前iText支持的图像格式有:GIF, Jpeg, PNG, wmf等格式,对于不同的图像格式,iText用同样的构造函数自动识别图像格式。通过下面的代码分别获得gif、jpg、png图像的实例。

Image gif = Image.getInstance(“vonnegut.gif”);
Image jpeg = Image.getInstance(“myKids.jpg”);
Image png = Image.getInstance(“hitchcock.png”);
图像的位置
图像的位置主要是指图像在文档中的对齐方式、图像和文本的位置关系。IText中通过函数public void setAlignment(int alignment)进行处理,参数alignment为Image.RIGHT、Image.MIDDLE、Image.LEFT分别指右对齐、居中、左对齐;当参数alignment为Image.TEXTWRAP、Image.UNDERLYING分别指文字绕图形显示、图形作为文字的背景显示。这两种参数可以结合以达到预期的效果,如setAlignment(Image.RIGHT|Image.TEXTWRAP)显示的效果为图像右对齐,文字围绕图像显示。

图像的尺寸和旋转
如果图像在文档中不按原尺寸显示,可以通过下面的函数进行设定:

public void scaleAbsolute(int newWidth, int newHeight)

public void scalePercent(int percent)

public void scalePercent(int percentX, int percentY)

函数public void scaleAbsolute(int newWidth, int newHeight)直接设定显示尺寸;

函数public voidscalePercent(int percent)设定显示比例,如scalePercent(50)表示显示的大小为原尺寸的50%;

而函数scalePercent(int percentX, int percentY)则图像高宽的显示比例。

如果图像需要旋转一定角度之后在文档中显示,可以通过函数public void setRotation(double r)设定,参数r为弧度,如果旋转角度为30度,则参数r= Math.PI/6。

四、中文处理

默认的iText字体设置不支持中文字体,需要下载远东字体包iTextAsian.jar,否则不能往PDF文档中输出中文字体。通过下面的代码就可以在文档中使用中文了:

BaseFont bfChinese = BaseFont.createFont(“STSong-Light”, “UniGB-UCS2-H”, BaseFont.NOT_EMBEDDED);

或者

BaseFont bfChinese = BaseFont.createFont(“C:/Windows/Fonts/simhei.ttf”,BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);、

注意:此处大小写敏感!例如宋体的英文名称是SimSun(注意不是simsun!,首字母都是大写的)

  错误写法:font-family:宋体 或者  font-family:simsun正确写法:font-family:SimSun 或者 font-family:SimHei

确保上述所有字体均通过addFont加入,字体名称错误或者字体不存在会抛出异常,很方便,但是没导入的字体不会有任何提示。

五、例子

1、IText添加水印,并且增加权限

@Testpublic void addWaterMark() throws Exception{String srcFile="D:\\work\\pdf\\win10.pdf";//要添加水印的文件String text="系统集成公司";//要添加水印的内容int textWidth=200;int textHeight=440;PdfReader reader = new PdfReader(srcFile);// 待加水印的文件PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(new File("D:\\work\\pdf\\addWaterMark.pdf")));// 加完水印的文件
//          byte[] userPassword = "123".getBytes();byte[] ownerPassword = "12345".getBytes();
//          int permissions = PdfWriter.ALLOW_COPY|PdfWriter.ALLOW_MODIFY_CONTENTS|PdfWriter.ALLOW_PRINTING;
//          stamper.setEncryption(null, ownerPassword, permissions,false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_ASSEMBLY, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_COPY, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_DEGRADED_PRINTING, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_FILL_IN, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_MODIFY_ANNOTATIONS, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_MODIFY_CONTENTS, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_PRINTING, false);stamper.setEncryption(null, ownerPassword, PdfWriter.ALLOW_SCREENREADERS, false);stamper.setEncryption(null, ownerPassword, PdfWriter.DO_NOT_ENCRYPT_METADATA, false);stamper.  setViewerPreferences(PdfWriter.HideToolbar|PdfWriter.HideMenubar);
//          stamper.setViewerPreferences(PdfWriter.HideWindowUI);int total = reader.getNumberOfPages() + 1;PdfContentByte content;BaseFont font = BaseFont.createFont("font/SIMKAI.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);for (int i = 1; i < total; i++)// 循环对每页插入水印{content = stamper.getUnderContent(i);// 水印的起始content.beginText();// 开始content.setColorFill(BaseColor.GREEN);// 设置颜色 默认为蓝色content.setFontAndSize(font, 38);// 设置字体及字号content.setTextMatrix(textWidth, textHeight);// 设置起始位置content.showTextAligned(Element.ALIGN_LEFT, text, textWidth, textHeight, 45);// 开始写入水印content.endText();}stamper.close();}

2、IText添加书签

Document document = new Document(PageSize.A4);BaseFont bfCN =BaseFont.createFont("C:/Windows/Fonts/simhei.ttf",BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);// 章的字体Font chFont = new Font(bfCN, 12, Font.NORMAL, BaseColor.BLUE);// 节的字体Font secFont = new Font(bfCN, 12, Font.NORMAL, new BaseColor(0, 204,255));// 正文的字体Font textFont = new Font(bfCN, 12, Font.NORMAL, BaseColor.BLACK);PdfWriter.getInstance(document, new FileOutputStream(DEST));document.open();int chNum = 1;Chapter chapter = new Chapter(new Paragraph("Michael介绍", chFont),chNum++);Section section = chapter.addSection(new Paragraph("基本信息", secFont));section.setIndentation(10);section.setIndentationLeft(10);section.setBookmarkOpen(true);section.setNumberStyle(Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT);section.add(new Paragraph("苦逼的码农一枚。。。", textFont));Section section2 = chapter.addSection(new Paragraph("SNS", secFont));section2.setIndentation(10);section2.setIndentationLeft(10);section2.setBookmarkOpen(false);section2.setNumberStyle(Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT);section2.add(new Paragraph("SNS地址分类:", textFont));section = section2.addSection(new Paragraph(new Chunk("我的博客", secFont).setUnderline(0.2f, -2f).setAnchor("http://www.cnblogs.com/xiaoSY-learning")));section.setBookmarkOpen(false);section.setIndentation(10);section.setIndentationLeft(10);section.setNumberStyle(Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT);section.add(new Paragraph(new Chunk("我的blog地址:http://www.cnblogs.com/xiaoSY-learning/",textFont).setUnderline(0.2f, -2f).setAnchor("http://www.cnblogs.com/xiaoSY-learning/")));section.add(new Paragraph("分享自己的技术心得。", textFont));section = section2.addSection(new Paragraph(new Chunk("我的weibo",secFont).setUnderline(0.2f, -2f).setAnchor("http://weibo.com/u/2772113512")));section.setIndentation(10);section.setIndentationLeft(10);section.setBookmarkOpen(false);section.setNumberStyle(Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT);section.add(new Paragraph(new Chunk("我的weibo:http://weibo.com/u/2772113512",textFont).setUnderline(0.2f, -2f).setAnchor("http://weibo.com/u/2772113512")));section.add(new Paragraph("发表下心情,分享下技术,转转乱七八糟的新闻。", textFont));section = section2.addSection(new Paragraph(new Chunk("twitter",secFont)));section.setIndentation(10);section.setIndentationLeft(10);section.setBookmarkOpen(false);section.setNumberStyle(Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT);section.add(new Paragraph(new Chunk("twitter:@suncto", textFont).setUnderline(0.2f, -2f).setAnchor("twitter:twitter:twitter:")));section.add(new Paragraph("一个常常被墙的地方", textFont));LineSeparator line = new LineSeparator(1, 100, new BaseColor(204, 204,204), Element.ALIGN_CENTER, -2);Paragraph p_line = new Paragraph("分割线");p_line.add(line);chapter.add(p_line);document.add(chapter);chapter = new Chapter(new Paragraph("Miu的介绍", chFont), chNum++);section = chapter.addSection(new Paragraph("基本信息", secFont));section.setIndentation(10);section.setIndentationLeft(10);section.setBookmarkOpen(false);section.setNumberStyle(Section.NUMBERSTYLE_DOTTED_WITHOUT_FINAL_DOT);section.add(new Paragraph("90后一枚,喜欢美食和旅游。。。", textFont));document.add(chapter);document.close();

3、IText创建PDF

import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.Date;import com.itextpdf.text.Document;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.PdfWriter;public class PDFJiemi {private static String USER_PASS = "Hello123";private static String OWNER_PASS = "Owner123";public static void main(String[] args) {try {OutputStream file = new FileOutputStream(new File("E:\\pdfile\\NeedToDo\\Jiemi\\Test2.pdf"));Document document = new Document();PdfWriter writer = PdfWriter.getInstance(document, file);writer.setEncryption(USER_PASS.getBytes(), OWNER_PASS.getBytes(),PdfWriter.ALLOW_PRINTING, PdfWriter.ENCRYPTION_AES_128);document.open();document.add(new Paragraph("Hello World, iText"));document.add(new Paragraph(new Date().toString()));document.close();file.close();} catch (Exception e) {e.printStackTrace();}System.out.println("OK.");}
}

4、附上PDFBox判断PDF文档是否加密

import java.io.File;
import java.io.IOException;import org.apache.pdfbox.pdmodel.PDDocument;public class PDFIsEncrypted {public static void main(String[] args) throws IOException {PDDocument pdf = PDDocument.load(new File("E:\\pdfile\\NeedToDo\\Jiemi\\addWaterTest.pdf"));System.out.println("isEncrypted : " + pdf.isEncrypted());}}

5、IText破解加密PDF文档

import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;import com.itextpdf.text.Document;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfImportedPage;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfWriter;public class DeEncrypt {public static void main(String[] args) throws Exception {String srcFile = "E:\\pdfile\\NeedToDo\\Jiemi\\addWaterTest.pdf";String dstFile = "E:\\pdfile\\NeedToDo\\Jiemi\\DeEncryption.pdf";deletePDFEncrypt(srcFile, dstFile);System.out.println("OK.");}private static void deletePDFEncrypt(String sourceFullName, String newFullName) throws Exception{if (sourceFullName == null || sourceFullName.isEmpty() || sourceFullName.length() == 0){throw new Exception("源文件路径为空或null.");}try{// 创建一个PdfReader对象PdfReader reader = new PdfReader(sourceFullName);PdfReader.unethicalreading = true;// 获得第一页的大小Rectangle pagesize = reader.getPageSize(1);float width = pagesize.getWidth();float height = pagesize.getHeight();// 创建一个文档变量OutputStream file = new FileOutputStream(new File(newFullName));Document document = new Document(pagesize, 50, 50, 50, 50);// 创建该文档PdfWriter writer = PdfWriter.getInstance(document, file);// 打开文档document.open();// 添加内容PdfContentByte cb = writer.getDirectContent();PdfImportedPage page;int currentPageNumber = 0;int pageOfCurrentReaderPDF  = 0;// Create a new page in the target for each source page.while (pageOfCurrentReaderPDF < reader.getNumberOfPages()){pageOfCurrentReaderPDF++;currentPageNumber++;page = writer.getImportedPage(reader, pageOfCurrentReaderPDF);document.setPageSize(new Rectangle(page.getWidth(), page.getHeight()));document.newPage();cb.addTemplate(page, 0, 0);}// 关闭文档document.close();}catch (Exception ex){ex.printStackTrace();}}}

使用C# 创建PDF相关推荐

  1. ABBYY在MS Office中创建PDF文件的方法

    2019独角兽企业重金招聘Python工程师标准>>> ABBYY PDF Transformer+是一款可创建.编辑及将PDF文件转换为其他可编辑格式的OCR图文识别软件,不仅可以 ...

  2. python使用fpdf创建pdf文件包含:页眉、页脚并嵌入logo图片、设置使用中文字体

    python使用fpdf创建pdf文件包含:页眉.页脚并嵌入logo图片.设置使用中文字体 #python使用fpdf创建页眉.页脚并嵌入logo图片.设置使用中文字体 from fpdf impor ...

  3. python使用fpdf创建pdf并写入hello world

    python使用fpdf创建pdf并写入hello world from fpdf import FPDF # 创建pdf并写入hello world文本内容: from fpdf import FP ...

  4. 使用iText库创建PDF文件

    前言 译文连接:http://howtodoinjava.com/apache-commons/create-pdf-files-in-java-itext-tutorial/ 对于excel文件的读 ...

  5. java itext word操作_使用JAVA中的Apache POI和iText从Word(DOC)创建PDF

    docx4j包含 code,用于使用iText从docx创建PDF.它还可以使用POI将doc转换为docx. 曾经有一段时间我们平等地支持这两种方法(以及通过XHTML的PDF),但我们决定专注于X ...

  6. pdfbox创建pdf_PDFBox创建PDF文档

    现在让我们了解如何使用PDFBox库创建PDF文档. 创建一个空的PDF文档 可以通过实例化PDDocument类来创建一个空的PDF文档.使用这个类的Save()方法将文档保存在所需的位置. 以下是 ...

  7. puppeteer api_使用Node.js和puppeteer API从URL创建PDF文件

    puppeteer api We will continue using Node.js and puppeteer which is a node library. As we saw in our ...

  8. .net快速创建PDF文档 by c#

    原文地址:http://www.cnblogs.com/Creator/archive/2010/03/13/1685020.html C#引用IText创建PDF文档 先引用IText    可以从 ...

  9. 如何从服务器上取pdf文件,如何从服务器响应创建pdf文件?

    我在一个应用程序中工作,我需要从服务器上得到的响应创建pdf文件.有没有任何方法可以使用此响应创建pdf?反应如下: %PDF-1.4 %���� 2 0 obj <>st ...

  10. ABBYY FineReader 14创建PDF文档功能解析

    使用ABBYY FineReader,您可以轻松查看和编辑任何类型的 PDF,真的是一款实至名归的PDF编辑转换器,您知道的,它能够保护.签署和编辑PDF文档,甚至还可以创建PDF文档,本文和小编一起 ...

最新文章

  1. djangorestframework源码分析1:generics中的view执行流程
  2. puppet子命令介绍
  3. package.json中dependencies 与devDependencies 的区别
  4. 华为鸿蒙ai字幕,EMUI11一个值得吹爆的功能?AI字幕,支持翻译英日韩
  5. 闪光问题的手术治疗的副作用(重要)
  6. 【渝粤教育】 国家开放大学2020年春季 2136管理会计 参考试题
  7. 使用matplotlib进行简单的数据展示
  8. python 读取redis数据后转为dataframe格式数据
  9. 直接用Jdbc就能操作数据库了,为什么还要用spring框架
  10. how many fibs java_How many Fibs?(java)
  11. Centos 7 更改系统语言为中文
  12. 微信昵称上标电话号码,实用的新玩法
  13. 想快速体验谷歌 Fuchsia OS?FImage 项目来了!
  14. 谷歌跨界医学新动作:基因突变定位模型又更!新!了!
  15. 如何在云服务器使用docker快速部署jupyter web服务器(Nginx+docker+jupyter+tensorflow)
  16. CentOS安装Nvidia驱动和CUDA
  17. 语音识别—声学模型训练(前向-后向算法)
  18. GIC介绍 (三)——GIC400 Register
  19. QT5 隐藏系统标题栏,自己编写个性靓丽标题栏
  20. 服务器占用内存高,单任务管理器查看每个程序占用都不高

热门文章

  1. 阿里云SLS——云上的辛勤山寨者
  2. ENVI入门系列教程---二、图像分析---11.分类后处理
  3. zulutrade外汇自动跟单系统介绍
  4. input输入框的限制输入
  5. 行业看点 | 若干年后,量子计算机将对我们的生活产生什么样天马行空的影响?...
  6. SD/MMC CSD寄存器 V1.0和V2.0详解(如何读写SD/MMC卡)
  7. Xshell连接失败提示connection failed怎么解决
  8. 如何添加URL服务器到站点,当URL来自互联网服务器时,如何将自定义css...
  9. v3服务器的u到底稳定吗,一代神U E3 1231V3 现在处于什么水平?香不香看文章!
  10. 钣金系统三维设计与工艺展开功能的实现