프로그래밍 방식으로 JPG 이미지를 DOCX 로 변환해야 합니까? Python via .NET 용 Aspose.Words를 사용하면 모든 개발자가 단 몇 줄의 Python 코드만으로 JPG 를 DOCX 문서 형식으로 변환할 수 있습니다.
최신 이미지 처리 Python API는 전문적인 품질의 JPG 이미지에서 DOCX 문서를 생성합니다. 브라우저에서 바로 최고 품질의 JPG 에서 DOCX 로의 변환을 테스트해 보세요. 강력한 Python 라이브러리를 사용하면 JPG 이미지를 거의 모든 DOCX 형식으로 변환할 수 있습니다.
다음 예에서는 Python 에서 JPG 를 DOCX 문서 형식으로 변환하는 방법을 보여줍니다.
JPG 이미지를 DOCX 문서 형식으로 변환하는 쉬운 단계를 따르세요. 로컬 드라이브에서 JPG 파일을 읽은 다음 DOCX 문서 확장자로 필요한 파일 형식을 지정하여 문서 형식으로 저장하면 됩니다. JPG 읽기 및 DOCX 문서 작성 모두에 대해 정규화된 파일 이름을 사용할 수 있습니다.
pip install aspose-words
복사
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.jpg")
doc.save("Output.docx")
import aspose.words as aw
doc = aw.Document("Input.jpg")
doc.save("Output.docx")
import aspose.words as aw
doc = aw.Document(Input.jpg)
for page in range(0, doc.page_count):
extractedPage = doc.extract_pages(page, 1)
extractedPage.save(f"Output_{page + 1}.docx")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
builder.insert_image("Input.jpg")
doc.save("Output.docx")
import aspose.words as aw
doc = aw.Document()
builder = aw.DocumentBuilder(doc)
shape = builder.insert_image("Input.jpg")
shape.get_shape_renderer().save("Output.docx", aw.saving.ImageSaveOptions(aw.SaveFormat.docx))
이 패키지는 Python ≥3.5 및 <3.12 와 호환됩니다. Linux용 소프트웨어를 개발하는 경우 제품 설명서 에서 gcc 및 libpython 에 대한 추가 요구 사항을 살펴보십시오.
JPG 을(를) 다른 많은 파일 형식으로 변환할 수 있습니다.