Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [.emf]

Enhanced Windows MetaFile format (EMF)

0 votes
0 answers
33 views

How to get emf image as input stream from system clipboard?

Copying an image in ChemDraw (vector graphics editor for molecular structures, smth like Inkscape) brings to System Clipboard an emf image what follows from lines CF_ENHMETAFILE and CF_METAFILEPICT in ...
Senti's user avatar
  • 29
0 votes
0 answers
105 views

How to Copy an EMF File to the Clipboard in Windows Using Python?

I'm trying to copy an EMF (Enhanced Metafile) file directly to the Windows clipboard using the win32clipboard module on Python3.12. but I'm facing an issue where SetClipboardData is throwing an "...
Amazigh_05's user avatar
0 votes
0 answers
196 views

How to read .EMF type image in Python

I am working on .emf format images. I am unable to open/read them in Python. I know to read other jpeg, png format images. Can you provide a code for that? Also, when I open this .emf format image ...
user18948968's user avatar
0 votes
3 answers
102 views

How do I get the logical to device ratio from an EMF ()Enhanced MetaFile?

I have closely studied the MS documentation on EMF files and from the definitions for the 3 header types I can't see how to convert from logical coords (which the graphics records coords are stored as)...
John Trinder's user avatar
0 votes
0 answers
58 views

EMF files panose font objects can't be created

I'm looking over the EMF file spec and the LogFontPanose object never seems to be used. EMF Specification: https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-emf/91c257d7-c39d-4a36-9b1f-...
MechaMarinara's user avatar
0 votes
3 answers
2k views

Unable to insert EMF into Word using Python

I have a requirement for inserting SVG file into Word. Since, we cannot do this directly I am planning to convert SVG to EMF and insert it. Conversion from SVG to EMF works fine using the inkscape. ...
Ashwin Kumar's user avatar
1 vote
1 answer
244 views

Is there a way to retrieve "as is" the internally stored EMF file corresponding to a picture in a PowerPoint presentation?

Background: I am the developer of IguanaTex, a PowerPoint add-in to insert LaTeX displays/equations into PowerPoint on Windows and Mac. Many Mac users use another software, LatexIt, to insert PDF ...
leilu's user avatar
  • 366
2 votes
0 answers
812 views

How to convert .EMF to .SVG file in c#

I have windows form application which already have emf files in database. Currently I am converting .emf to .png and display as image but I need to convert .emf to .svg file which I can display on web ...
Jatin Dave's user avatar
0 votes
1 answer
601 views

Convert EMF to PNG, result is not perfect

I am trying to convert EMF file to PNG, with half success. With the code I am able to create a PNG picture from EMF, but the result is not perfect: compared to the original it is "squeezed" ...
Shephard's user avatar
  • 127
1 vote
1 answer
668 views

Distortion when ungrouping inserted EMF file into Powerpoint

Background: I am the developer of IguanaTex, a Powerpoint add-in to include LaTeX displays in Powerpoint. IguanaTex can generate vector graphics displays (Powerpoint Shapes, typically Freeforms) by ...
leilu's user avatar
  • 366
1 vote
2 answers
828 views

devEMF output display problems in MS Word 2010 after Microsoft update

After 2-4 Microsoft updates on June, 12th the display of devEMF (an R printing device for EMF/EMF+ files) output is corrupted in MS Word 2010. The problem occurs on machines with the most recent ...
Ingo's user avatar
  • 53
1 vote
0 answers
495 views

How to set bounds Graphics when using Metafile?

In our application it's possible to create images in different fileformats, like PNG, BMP, JPEG etc. Now I'm currently investigating the possibility to create Metafile images (.emf). With our Charts I ...
Vincent Hogendoorn's user avatar
5 votes
1 answer
2k views

How to enable anti-aliasing when rendering WMF to BitMap in C#/WPF/WinForms?

Why won't lines etc be anti-aliased when doing this? using (var myGraphics = Graphics.FromImage(bitmap)) { myGraphics.CompositingQuality = CompositingQuality.HighQuality; myGraphics.SmoothingMode = ...
Macke's user avatar
  • 25.4k
1 vote
2 answers
2k views

How to correctly scale drawing for EMF using gdi+

My windows c++ program creates EMFs (Enhanced Metafile Format) to export to clipboard, word and excel. The following example code generates an EMF rectangle (width=height=25) that is only 12x12 while ...
Mark H's user avatar
  • 11
2 votes
1 answer
2k views

Convert Selected PowerPoint Shapes (or DrawingML) to XAML

I need to convert selected PowerPoint shapes to XAML so I can effectively place an equivalent vector-based shape inside my WPF app (the XAML end result has to be scalable - converting to an image ...
Mark Miller's user avatar

15 30 50 per page
1
2 3 4 5