Effacer les filtres
Effacer les filtres

How do I extract images from a docx (word) file?

105 vues (au cours des 30 derniers jours)
Stephen Dicke
Stephen Dicke le 21 Mai 2019
Commenté : Walter Roberson le 29 Juil 2020
I am trying to extract images for processing from a docx (Word) file. How do I do this?

Réponses (2)

Stephen23
Stephen23 le 21 Mai 2019
Modifié(e) : Stephen23 le 21 Mai 2019
All OpenOffice XML formats (e.g. .docx, .xlsx, etc.) constitute XML files and supporting files zipped together into one file. You can simply access the image files by:
  1. Unzip the .docx into a folder (e.g. with the same name as the document).
  2. Open that folder, browse to the subfolder word\media to find all of the image files.
Use a reliable tool for unzipping, e.g. 7-zip, in which case the first step is trivial with a right-click on the document in windows explorer -> select "7-zip" -> and then choosing from its menu.
  1 commentaire
Walter Roberson
Walter Roberson le 21 Mai 2019
It is also possible to use Java methods to pull an entry from a zip archive without unzipping the whole thing. Jan posted some code about a week ago that used that interface but it might have been in a resurrected older question.

Connectez-vous pour commenter.


Gagan Bhangu
Gagan Bhangu le 29 Juil 2020
Yes, you can easily extract all images from word document.
Method 1: Save your docx file as web page.
Open docx file in Microsoft Word and click on the File > Save as > and select the web page (.html) option from the save as type.
After that, you’ll see the HTML file and folder with images where you saved it on your PC.
Also, you can use Google Docs. In Docs, click on the file > Download and select save as web page.
Method 2: By Right Click on Image
You can Save image one by one fromt the MS Word by right click on the image. Select Save as picture option for this.
Method 3: Open .docx file as a .zip
Change file extension from .docx to .zip and open the zip file. Extract media folder.
  1 commentaire
Walter Roberson
Walter Roberson le 29 Juil 2020
The question is more whether it is possible to use MATLAB to do the work.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by