Part of the Office Open XML specification ECMA-376

learn more… | top users | synonyms

0
votes
1answer
201 views

Prevent Word 2010 from saving o:gfxdata base64 or uuencoded VML?

I am working with .docx files containing several drawing canvases with images inserted and some lines and arrows drawn in Word 2010. I am using 2010 format with no compatibility mode. Word inserts ...
0
votes
0answers
105 views

Converting SVG to DrawingML?

I'm trying to inject SVG images into a powerpoint presentation. Does anyone know of a tool that can convert SVG into DrawingML? If not are there any tools for producing DrawingML outside of the ...
0
votes
1answer
731 views

How to update a PowerPoint slide with an Excel Chart

I have one Excel file that has a Chart (Bar Chart). I also have a Powerpoint presentation with 3 slides. Please note that there is no chart "Title" either on the Excel sheet ot on the Powerpoint ...
1
vote
0answers
195 views

How to visualize GML with C#

I´d like to create program which can visualize geometry from GML format. Please does anybody know if there is some function in .NET or do you know about some free GIS / GeoSpatila toolkit for C# ...
1
vote
0answers
175 views

Missing schema when inserting image to .xlsx file through OpenXML

I'll try to keep this brief as there is a lot of back-story! I can use the code from this example to insert an image into a spreadsheet at an absolute position of 0,0 EMUs using an AbsoluteAnchor. ...
3
votes
2answers
822 views

Powerpoint OpenXML whitespace is disappearing

I'm coming across a problem where whitespace is being removed in powerpoint documents as soon as I reference a slide. The following code sample illustrates what I mean- //Open the document. ...
2
votes
1answer
230 views

Office Open XML satMod results in more than 100% saturation

I'm trying to calculate the satMod (saturation modulation) for something like the following: <a:srgbClr val="58CAFF"> <a:satMod="300000"/> </a:srgbClr> Section 20.1.2.3.27 of ...
5
votes
1answer
584 views

Clipping in DrawingML

I am creating Word DOCX files with embedded vector graphics. Apparently DrawingML is now the preferred way of inserting vector graphics. I am having trouble working out how to clip a diagram within ...
2
votes
1answer
224 views

Missing whitespace within PPTX paragraphs using OpenXmlSDK

Using the OpenXmlSDK 2.0 I am reading and writing to powerpoint documents. We have a situation where a simple string within a powerpoint document has its whitespace stripped. The example sentence ...
1
vote
1answer
293 views

DrawingML to SVG conversion?

Does anyone have any way to convert DrawingML markup into SVG?
2
votes
1answer
260 views

OpenXML scheme color transformations - applying <a:gamma> and <a:invgamma>

When processing an open xml document, colors can have various transformations applied to a base color to generate a relative color. For instance <a:satMod value="25000"> would modify the base ...
3
votes
2answers
526 views

Inject Open XML into an Open PowerPoint Presentation

I'm looking for a way to inject PresentationML and/or DrawingML into an open PowerPoint 2007/2010 presentation using the Open XML SDK or just System.IO.Packaging. There is an article on doing this ...
2
votes
1answer
377 views

Where can I learn more about the PowerPoint 2010 file format?

Where can I find the PowerPoint file format definition, like the header/XML/directory structure?
1
vote
1answer
754 views

Error while trying to insert image in to wordML

Help needed. I am getting this error {"The xml has invalid content and cannot be constructed as an element.\r\nParameter name: outerXml"} while passing constructed xml in to ...
2
votes
2answers
427 views

In PowerPoint 2007, how can I position a Callout's Tail programatically?

I'm looking at the DrawingML of a PowerPoint 2007 file and this is what it has for the Callout object's coordinates and geometry: <p:spPr> <a:xfrm> <a:off x="2819400" ...
1
vote
1answer
2k views

Create custom shape or connector in PowerPoint using code/script/definition

The shapes in in PowerPoint 2007 seem to be built in - is there a way to create 'user'/'custom' shapes? I wanted to create a custom connector, but knowing if you can create a custom shape, could be ...
8
votes
3answers
855 views

Adding Chart to WordprocessingML

I would like to generate an Open XML document containing a Chart using the Open Xml SDK 2. I found an SpreadsheetML example, but I can't work out how to add the chart in a .docx... Is there a good ...
5
votes
1answer
3k views

Word 2007, Open XML - embedding an image

Do you know what basic information MUST include a paragraph (<w:p/>) in document.xml inside a *.docx document, that specifies an image? I do know there must be: <a:blip r:embed="rId4" ...