保护ppt文档是spire.presentation组件的主要功能之一。 spire.presentation组件支持通过用密码加密,限制访问和标记最终状态的形式,有效地保护演示文稿。另外如果演示文稿在加密的情况下,spire.presentation支持解除和修改原有密码。 本节将详细介绍spire.presentation保护演示文稿的功能。
用密码加密
开发者可直接使用encrypt方法并指定一个密码来加密文档,这样用户在打开文档时需要输入对应的密码才能对文档进行预览和编辑,很好地保证了文件的安全。
c#
//新建presentation对象
presentation presentation = new presentation();
//加载文档
presentation.loadfromfile(@"..\..\..\..\..\..\data\sample.pptx");
//设置密码
presentation.encrypt("test");
//保存文档
presentation.savetofile("encrypt.ppt", fileformat.ppt);
vb.net
'新建presentation对象
dim presentation as new presentation()
'加载文档
presentation.loadfromfile("..\..\..\..\..\..\data\sample.pptx")
'设置密码
presentation.encrypt("test")
'保存文档
presentation.savetofile("encrypt.ppt", fileformat.ppt)
限制访问
spire.presentation提供了protect方法保护文档。使用protect方法保护文档后,用户需输入密码才能进行编辑,如无密码用户可以选择在只读模式下预览,但无法对文档进行编辑、打印等一系列操作。
c#
//新建presentation对象
presentation presentation = new presentation();
//加载文档
presentation.loadfromfile(@"..\..\..\..\..\..\data\sample.pptx");
//保护文档
presentation. protect ("test");
//保存文档
presentation.savetofile("readonly.pptx", fileformat. pptx2007);
vb.net
'新建presentation对象
dim presentation as new presentation()
'加载文档
presentation.loadfromfile("..\..\..\..\..\..\data\sample.pptx")
'保护文档
presentation.protect("test")
'保存文档
presentation.savetofile("readonly.pptx", fileformat.pptx2007)
解除密码
使用removeencryption方法可快速解除加密的ppt文档,有利于快捷操作文档和避免忘记密码的困扰。
c#
// 新建presentation 对象并加载文档
presentation presentation = new presentation();
presentation.loadfromfile("presentation1.pptx", "test");
//解除密码
presentation.removeencryption();
//保存文档
presentation.savetofile("result.pptx", fileformat.pptx2010);
vb.net
' 新建presentation 对象并加载文档
dim presentation as new presentation()
presentation.loadfromfile("presentation1.pptx", "test")
'解除密码
presentation.removeencryption()
'保存文档
presentation.savetofile("result.pptx", fileformat.pptx2010)
修改密码
修改文档密码需先使用removeencryption方法解除加密,再调用protect方法重新设置密码以保护文档。
c#
// 新建presentation 对象并加载文档
presentation presentation = new presentation();
presentation.loadfromfile("encrypted.pptx",fileformat.pptx2010, "oldpassword");
//修改密码
presentation.removeencryption();
presentation.protect("newpassword");
//保存文档
presentation.savetofile("result.pptx", fileformat.pptx2010);
vb.net
' 新建presentation 对象并加载文档
dim presentation as new presentation()
presentation.loadfromfile("encrypted.pptx", fileformat.pptx2010, "oldpassword")
'修改密码
presentation.removeencryption()
presentation.protect("newpassword")
'保存文档
presentation.savetofile("result.pptx", fileformat.pptx2010)
标记为最终状态
通过设置markasfinal文档属性为ture,输出的ppt文档便会标记为最终状态,表示已完成编辑,这是文档的最终版本。
c#
// 新建presentation 对象并加载文档
presentation ppt = new presentation();
ppt.loadfromfile("sample.pptx",fileformat.pptx2010);
//标记为最终状态
ppt.documentproperty["_markasfinal"] =true;
//保存文档
ppt.savetofile("result.pptx",fileformat.pptx2010);
vb.net
' 新建presentation 对象并加载文档
dim ppt as new presentation()
ppt.loadfromfile("sample.pptx", fileformat.pptx2010)
'标记为最终状态
ppt.documentproperty("_markasfinal") = true
'保存文档
ppt.savetofile("result.pptx", fileformat.pptx2010)