Click here to Skip to main content
15,897,891 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends
How to save inline shapes as image from word document without using clipboard

What I have tried:

foreach (Word.InlineShape Shapes in AppWord.ActiveDocument.InlineShapes)
{
Shapes.Select();
}
Posted
Updated 26-Feb-16 11:19am
v2
Comments
ZurdoDev 26-Feb-16 7:37am    
You can record a macro doing what you want and then can see all the code you need.

1 solution

You can do it using third party tools. Check below link, it may help you. OPENXML is best for document processing. You can find lots of tutorial for OPENXML.

OPENXML: EXPORT AND RESIZE WORD 2007 EMBEDDED IMAGES WITH C#

Image Operations Using Word Document in C#
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900