rtf(rich text format)指富文本格式,是微软开发的一种跨平台文档格式,方便于不同的设备、系统查看的文本和图形文档。大多数文字处理软件都能读取和保存rtf文档。富文本格式包含多种页面格式选项,如自定义页边距、行距和跳格宽度等。富文本格式可以帮助使用者便捷地创建栏目、表格,以及以更易阅读的格式制作文档。本文将介绍如何使用 spire.doc for .net 将 word 文档转换为 rtf 文档或将 rtf 文档转换为 word 文档。
安装 spire.doc for .net
首先,您需要添加 spire.doc for .net 包中包含的 dll 文件作为 .net 项目中的引用。dll 文件可以从此链接下载或通过 安装。
pm> install-package spire.doc
将 word 文档转为 rtf 文档
使用 spire.doc for .net 将 word 文档转换为 rtf 文档非常简单,只需载入 word 文档后保存问 rtf 文件即可。以下是操作步骤:
- 创建 document 类的对象。
- 使用 document.loadfromfile() 方法载入 word 文档。
- 使用 document.savetofile() 方法将文档保存为 rtf 文件。
- c#
- vb.net
using spire.doc;
using system;
namespace convertwordtopng
{
class program
{
static void main(string[] args)
{
//创建 document 类的对象
document doc = new document();
//载入word文档
doc.loadfromfile(@"c:\示例.docx");
//将word文档保存为rtf文档
doc.savetofile("word转rtf.rtf", fileformat.rtf);
}
}
}
imports spire.doc
imports system
namespace convertwordtopng
class program
shared sub main(byval args() as string)
'创建 document 类的对象
dim doc as document = new document()
'载入word文档
doc.loadfromfile("c:\示例.docx")
'将word文档保存为rtf文档
doc.savetofile("word转rtf.rtf", fileformat.rtf)
end sub
end class
end namespace
将 rtf 文档转为 word 文档
操作步骤如下:
- 创建 document 类的对象。
- 使用 document.loadfromfile() 方法载入 rtf 文件。
- 使用 document.savetofile() 方法将文件保存为 word 文档。
- c#
- vb.net
using spire.doc;
using system;
namespace convertwordtopng
{
class program
{
static void main(string[] args)
{
//创建 document 类的对象
document doc = new document();
//载入rtf文档
doc.loadfromfile(@"c:\示例.rtf", fileformat.rtf);
//将rtf文档保存为word文档
doc.savetofile("rtf转word.docx", fileformat.docx2013);
}
}
}
imports spire.doc
imports system
namespace convertwordtopng
class program
shared sub main(byval args() as string)
'创建 document 类的对象
dim doc as document = new document()
'载入rtf文件
doc.loadfromfile("c:\示例.rtf", fileformat.rtf)
'将rtf文件保存为word文档
doc.savetofile("rtf转word.docx", fileformat.docx2013)
end sub
end class
end namespace
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。