# 파이썬에서 프레젠테이션 쓰기 보호

> Aspose.Slides for Python을 사용하여 PowerPoint PPT 및 PPTX 프레젠테이션에서 쓰기 보호 비밀번호를 설정, 감지, 검증 및 제거합니다.

Source: https://docs.aspose.com/slides/ko/python-net/write-protected-presentation/
Updated: 2026-08-26

## **소개**

쓰기 보호 비밀번호는 프레젠테이션의 수정을 제한하지만 내용은 암호화하지 않습니다. 사용자는 비밀번호 없이도 쓰기 보호된 프레젠테이션을 로드하고 볼 수 있습니다. 애플리케이션에 따라 내용 편집 및 다른 이름으로 저장이 가능할 수 있으므로, 쓰기 보호를 기밀성 메커니즘으로 취급해서는 안 됩니다.

개방 비밀번호는 다른 목적을 가집니다: 프레젠테이션을 암호화하며 내용을 로드하기 위해 필요합니다. 프레젠테이션을 암호화하거나 개방 비밀번호를 검증하려면 [Password-Protect Presentations](/slides/ko/python-net/password-protected-presentation/)를 참조하십시오.

이 문서의 워크플로는 PPT와 PPTX 프레젠테이션 모두에 적용됩니다. 예제는 PPTX 파일을 사용합니다; PPT로 저장할 경우 `.ppt` 확장자와 해당 PPT 저장 형식을 사용하십시오.

## **프레젠테이션에 쓰기 보호 설정**

[ProtectionManager.set_write_protection](https://reference.aspose.com/slides/ko/python-net/aspose.slides/protectionmanager/set_write_protection/)을 사용하여 프레젠테이션 수정용 비밀번호를 지정합니다. 프레젠테이션을 저장하면 보호 설정이 유지됩니다.

다음 예제는 PPTX 프레젠테이션에 쓰기 보호를 설정합니다:

```python
import aspose.slides as slides

with slides.Presentation("pres.pptx") as presentation:
    presentation.protection_manager.set_write_protection("modify_password")
    presentation.save("write-protected-pres.pptx", slides.export.SaveFormat.PPTX)
```

## **쓰기 보호된 프레젠테이션 로드**

쓰기 보호는 프레젠테이션 내용을 암호화하지 않으므로, 프레젠테이션을 로드하는 데 비밀번호가 필요하지 않습니다. 비밀번호는 보호된 프레젠테이션 수정 권한을 검증할 때만 관련됩니다.

```python
import aspose.slides as slides

with slides.Presentation("write-protected-pres.pptx") as presentation:
    print("Slide count: " + str(len(presentation.slides)))
```

[LoadOptions.password](https://reference.aspose.com/slides/ko/python-net/aspose.slides/loadoptions/password/)에 쓰기 보호 비밀번호를 전달하지 마십시오. 해당 속성은 암호화된 내용용 개방 비밀번호를 받습니다. 프레젠테이션에 두 종류의 보호가 모두 있는 경우, 개방 비밀번호를 제공하여 로드하고 쓰기 보호 비밀번호는 별도로 처리하십시오.

## **프레젠테이션에서 쓰기 보호 제거**

[ProtectionManager.remove_write_protection](https://reference.aspose.com/slides/ko/python-net/aspose.slides/protectionmanager/remove_write_protection/)을 사용하여 수정 제한을 제거하고 프레젠테이션을 저장합니다.

```python
import aspose.slides as slides

with slides.Presentation("write-protected-pres.pptx") as presentation:
    presentation.protection_manager.remove_write_protection()
    presentation.save("write-protection-removed.pptx", slides.export.SaveFormat.PPTX)
```

## **프레젠테이션이 쓰기 보호되었는지 확인**

전체 [Presentation](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentation/) 인스턴스를 생성하지 않고 파일을 검사하려면 [PresentationFactory.get_presentation_info](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationfactory/get_presentation_info/)를 호출하고 [PresentationInfo.is_write_protected](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationinfo/is_write_protected/)를 확인하십시오. 이 속성은 [NullableBool](https://reference.aspose.com/slides/ko/python-net/aspose.slides/nullablebool/)을 사용하며, 쓰기 보호가 감지되면 `NullableBool.TRUE`를 반환합니다.

```python
import aspose.slides as slides

presentation_info = slides.PresentationFactory.instance.get_presentation_info("write-protected-pres.pptx")

if presentation_info.is_write_protected == slides.NullableBool.TRUE:
    print("The presentation is write protected.")
else:
    print("Write protection was not detected.")
```

[PresentationFactory.get_presentation_info](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationfactory/get_presentation_info/)의 스트림 오버로드는 스트림으로 제공된 프레젠테이션에 대해 동일한 정보를 제공합니다.

## **쓰기 보호 비밀번호 검증**

[PresentationInfo.check_write_protection](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationinfo/check_write_protection/)을 사용하여 전체 프레젠테이션을 로드하지 않고 수정 비밀번호를 검증합니다. 먼저 [PresentationInfo.is_write_protected](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationinfo/is_write_protected/)를 확인하여 쓰기 보호가 있을 때만 애플리케이션이 비밀번호를 요청하거나 검증하도록 하십시오.

```python
import aspose.slides as slides

presentation_info = slides.PresentationFactory.instance.get_presentation_info("write-protected-pres.pptx")

if presentation_info.is_write_protected != slides.NullableBool.TRUE:
    print("The presentation is not write protected.")
elif presentation_info.check_write_protection("modify_password"):
    print("The write-protection password is correct.")
else:
    print("The write-protection password is incorrect.")
```

[PresentationInfo.check_write_protection](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationinfo/check_write_protection/)은 쓰기 보호 비밀번호만 검증합니다. 개방 비밀번호를 검증하거나 암호화된 내용을 로드할 수 있는지는 확인하지 않습니다. 반대로, [PresentationInfo.check_password](https://reference.aspose.com/slides/ko/python-net/aspose.slides/presentationinfo/check_password/)은 개방 비밀번호만 검증합니다. 전체 프레젠테이션이 이미 로드된 경우, [ProtectionManager.check_write_protection](https://reference.aspose.com/slides/ko/python-net/aspose.slides/protectionmanager/check_write_protection/)은 보호 관리자를 통해 동일한 쓰기 보호 검사를 제공합니다.

실제 운영 애플리케이션에서는 비밀번호를 로그에 기록하거나 진단 메시지에 포함하지 마십시오. 불필요한 반복 검증을 피하고, 비밀번호는 필요한 기간 동안만 메모리에 보관하십시오.

{{% alert color="info" title="또한 보기" %}}
- [Password-Protect Presentations](/slides/ko/python-net/password-protected-presentation/)
- [Read-Only Presentations](/slides/ko/python-net/read-only-presentation/)
- [Digital Signature in PowerPoint](/slides/ko/python-net/digital-signature-in-powerpoint/)
{{% /alert %}}

## **자주 묻는 질문**

**쓰기 보호가 프레젠테이션을 암호화합니까?**  
아니오. 수정은 제한하지만 프레젠테이션 내용은 로드 및 조회할 수 있도록 남겨 둡니다.

**프레젠테이션을 열 때 쓰기 보호 비밀번호가 필요합니까?**  
아니오. 암호화된 프레젠테이션 내용을 로드하려면 개방 비밀번호만 필요합니다.

**프레젠테이션에 개방 비밀번호와 쓰기 보호 비밀번호를 모두 가질 수 있습니까?**  
예. 로드 옵션을 통해 개방 비밀번호를 제공하여 암호화된 프레젠테이션을 열고, 수정 권한이 필요할 때 쓰기 보호 비밀번호를 별도로 검증하십시오.
