PPT
PPTX
ODP
POT
ppsx
PPTX
Python を使用して PPTX をロックまたはパスワード保護する
サーバー側 API を使用してプレゼンテーション ファイルを保護する独自の Python アプリを構築します。
Python による PPTX プレゼンテーションの保護
Aspose.Slides for Python via .NET を使用すると、パスワードを設定して PPTX プレゼンテーションを開いたり変更したりできないように保護できます。次に、ロックされたプレゼンテーションを開くか変更するには、ユーザーはパスワードを入力する必要があります。
Python を使用して PPTX プレゼンテーションを暗号化する
import aspose.slides as slides
with slides.Presentation("pres.pptx") as pres:
pres.protection_manager.encrypt("123123")
pres.save("encrypted-pres.pptx", slides.export.SaveFormat.PPTX)
Python を使用して PPTX プレゼンテーションに書き込み保護を設定する
import aspose.slides as slides
with slides.Presentation("pres.pptx") as pres:
pres.protection_manager.set_write_protection("123123")
pres.save("write-protected-pres.pptx", slides.export.SaveFormat.PPTX)
Python 経由で PPTX をパスワード保護する方法
これらは、PPTX ファイルを保護するための手順です。
プレゼンテーションのインスタンスで PPTX を読み込みます
ProtectionManager クラスを使用してプレゼンテーションを保護する
結果を PPTX 形式で保存