Steve Canny

Results 319 comments of Steve Canny

Let's consider the following example: - you have a group with origin at position 10, 10 - the group contains a square at position 1, 1 relative to the group,...

@NathanMarder quite right. If all you want is the video binaries, you can just extract those from the PPTX file by treating it as a zip archive. If you want...

@MartinPacker I'm sure they are (extractable by walking the content), it just doesn't look like I added any public methods to do that. I remember this was a sponsored feature...

There is no technical reason that a slide-master object couldn't have an `.add_picture()` method. Plenty of PowerPoints have a logo on the slide-master, for example. The question is who wants...

I think this is fair enough, I think replacing `x` with `int(x)` and the same for y, cx, and cy in these couple lines would do the trick: https://github.com/scanny/python-pptx/blob/master/src/pptx/oxml/shapes/connector.py#L49 @MartinPacker...

Pretty sure we don't provide direct access to anything like that via the API, but what I would do is work out how PowerPoint does it with the XML and...

@me-kell have you looked at [opc-diag](https://opc-diag.readthedocs.io/en/latest/quickstart.html)? This is the use-case I developed that for. It takes care of unzipping and reformatting the XML and also allows repackaging, so you can...

@me-kell Can you describe this `ppSaveAsXMLPresentation` format? I was just assuming this was normal PPTX OPC-package format but from your response it sounds like it's something different. Is this the...

> Then it would not be necessary to unpacking the PPTX-file, reformatting it and browsing through the different part files Also, what is the outcome you're interested in? From your...