The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
119 views

Metafile clipping rectangle

Following code makes quite some troubles: procedure TForm1.Button1Click(Sender: TObject); var dc : HDC; meta : TMetafile; metaCanv : TMetafileCanvas; cr : TRect; sz : TSize; begin ...
0
votes
0answers
22 views

Windows Metafile bitmap16 object, color maps for 1,2,4, or 8 bit encodings?

Microsoft DIB images have both a pixel bitmap and an optional color table, the latter being used to map the bitmap pixel values to colors for encodings using 1,2,4, or 8 bits per pixel. The older ...
0
votes
1answer
62 views

How to override the pens and brushes of a metafile when drawing it?

In C++ with GDI+ I would like to draw a metafile, but modifying it in such a way that the brushes and pens are replaced by the ones I created in my program. I would like this brush and this pen to be ...
0
votes
0answers
67 views

Metafile: calling ConvertToEmfPlus drops the linejoin style

With Gdiplus in C++, I create a new Metafile from an EMF file, then I call ConvertToEmfPlus on it, passing a graphics with the SmoothingMode set to SmoothingModeAntiAlias. When I do this, drawing the ...
0
votes
0answers
32 views

Windows Metafile Bitmap16 object, values for “type”?

The WMF PDF from Microsoft in section 2.2.2.1 describes the "type" field for a Bitmap16 object like this: Type (2 bytes): A 16-bit signed integer that defines the bitmap type. Which tells me ...
0
votes
0answers
92 views

Spacing error while printing as metafile image in C##

I am trying to print a pdf document from my control using Print document class as PrintDocument document = m_activeView.PrintDocument; document.Print(); I am printing it as a metafile image. The ...
2
votes
0answers
139 views

Put a metafile or bitmap in needed picturebox

Well I have two pictureboxes. First one is for metafile image, second is for bitmap image. When the picture is in clipboard after buttom has been pressed I need to check out the format of the picture ...
0
votes
1answer
108 views

In-memory metafile is not drawn

I need to create some in-memory (not file-based) metafiles and display them. In the OnPaint handler of a panel on my form I call this code: Metafile metafile; using( Graphics offScreenGraphics = ...
1
vote
0answers
253 views

Getting image(metafile) from Excel OLE object C#

I am working on an Add in To Excel performing some operations on OLE object. It requires getting some data from OLE object embedded programmatically in worksheet (conversion from math type to TeX ...
1
vote
1answer
250 views

How can I make “Windows Metafile” my default paste special option in Word 2007?

I am doing a lot of copying from Visio to Word 2007. I have found that Windows Metafile is the most space efficient choice of the Paste Special options available. How can I make "Windows Metafile" my ...
1
vote
0answers
140 views

Is there any open source software like Rammap?

I have a server which is running all the time, system makes meta file and saves then in memory, this increases the usage of my RAM so that i need to empty the system working set using the software ...
0
votes
1answer
169 views

Delphi, QR, WMF

I got a "new job" to "archive" some data with QR Filter. When the data structure modified and saved to database then we start a "silent printing" with WMF filter, I catch the files, and I store them ...
5
votes
2answers
1k views

How to display Windows Metafile?

I need to display a Windows Metafile (EMF) using WPF, how can I do? Edit: I'd to keep the image vector-based.
0
votes
3answers
447 views

Extract images from Windows EMF during EnumEnhMetaFile parse?

A program I am modifying converts EMF files to a different format (SVG). It does this with EnumEnhMetaFile() which calls the program's parsing routine for each record of the EMF. That works great ...
7
votes
1answer
757 views

How to draw a PNG transparently on a TMetaFileCanvas

I need to draw a PNG transparently onto a MetaFileCanvas. This works fine when I draw to a bitmap (which I use when displaying on screen), but for printing I need a MetaFile. How can I achieve this? ...
1
vote
0answers
102 views

Extract/Convert WMF with C#

I have a bunch of binary files with what appear to be embedded Windows Meta Files: {\pict\wmetafile8\picw9031\pich827\picwgoal5119\pi chgoal468 010009000003F901000005001C0000000000050000000B0200 ...
1
vote
0answers
201 views

When adding text to a metafile, the letter font is changed

I want to add some text to a metafile. The code i use: Metafile m = new Metafile("1.emf"); Graphics grfxVideo = CreateGraphics(); IntPtr ipHdc = grfxVideo.GetHdc(); Metafile mf = new ...
0
votes
1answer
182 views

Windows Enhanced Metafile Pen vs Windows Metafile

I'm working on a system that have huge database of metafiles (the old win3.0 format), and I need to convert that to Enhanced Metafile. I did convert the whole database, and manage to play the files to ...
0
votes
0answers
177 views

Using C++Builder 6 VCL, why can I print an EMF file under Windows 2000 but not Windows XP?

I'm using C++Builder 6, and writing code to print an EMF file. The code works on Windows 2000, but a blank page is produced in Windows XP. I have tried several different input files, several different ...
2
votes
1answer
496 views

How does Excel compute the resolution of the metafiles it generates when copying a range “as shown on screen”?

I have some C# code I got from http://bytes.com/topic/c-sharp/answers/572657-net-clipboard-metafiles that copies a cell range under the following two settings: As shown on screen, As shown when ...
0
votes
2answers
1k views

How to convert jpg,bitmap format image into vector format in c#

I try to convert the jpg image into vector format.I try to implement this code but it's through the exeception public void Run() { Control c = new Control(); ...
0
votes
1answer
330 views

2D Graphics Transform - moving the origin

I have a vector graphics format that has its origin at the bottom left and i need to render it to an enhanced metafile which has its origin at the top left. What is a transform to move between the two ...
2
votes
2answers
80 views

Is there an efficient way to convert a3d scene to a 2d Enhanced Metafile

I am developing a CAD application using Delphi2010 and OpenGL. Currently, i am working on a module to export the current view to an Image file. This is pretty straigthforward for raster formats ...
2
votes
1answer
130 views

What exactly is the reference DC parameter for GetWinMetaFileBits() used for?

I was under the impression that classic Win16 metafiles had no embedded size or resolution information (unless there is a METAFILEPICT header or similar) - what does GetWinMetaFileBits() use the ...
0
votes
2answers
530 views

Proper way to convert an Enhanced Metafile to a Windows Metafile without pixel rounding

When I convert an Enhanced Metafile (constructed via GDI+ in C#) into an old-style Windows Metafile, the results are very rough, apparently because coordinates are being rounded to the nearest screen ...
0
votes
1answer
528 views

Why does my metafile “lose” a bitmap?

Recently I found a bug while drawing stuff with metafiles. Right now I am not sure if I am doing something wrong or if there is a bug within the drawing of metafiles itself: While drawing images on a ...
1
vote
2answers
909 views

How to Convert a Metafile to Image by Drag'n'Droping in a Winform

I develop a Winform Application with the framlework .NET 3.5 in C#. I would like to allow the user to drag&drop a picture from Word 2007. Basically the user open the docx, select a picture and ...
2
votes
2answers
705 views

How to tell the difference between the original .BMP/.EMF picture file with the processed .BMP/.EMF file?

Summarization: Calculations point out in a straight-forward way that: A .BMP picture of 3289 X 4570 X 32bpp takes about 53MB. The picture of same size but 24bpp takes about 43MB, that of 16bpp takes ...
2
votes
1answer
2k views

Drawing transparent TMetaFile on TCanvas in Delphi

I would like to draw a transparent TMetaFile on a Canvas, used for print watermark. The problem is AlphaBlend function won't recognize TMetaFile.Handle as source as it expects canvas handle. I ...
2
votes
1answer
550 views

Conversion of VB Code to Delphi (It will extract image from EMF File)

While searching in the net i got few lines of code in VB for extracting an image from EMF File. I tried to convert that into Delphi but doesnt work. Help me in converting this code to delphi. ...
1
vote
0answers
773 views

Deserializing Metafile

I have an application that works with Enhanced Metafiles. I am able to create them, save them to disk as .emf and load them again no problem. I do this by using the gdi32.dll methods and the ...
2
votes
2answers
785 views

DPI for EMF files

Do EMF files have a DPI that can be set? I have an application that allows saving an image in multiple formats (including EMF). I allow the user to specify the resolution/DPI for the image(s). ...
1
vote
2answers
2k views

VB.net Saving an MetaFile / EMF as a bitmap ( .tiff)

Currently I have a third party control that generates a Metafile. I can save the .wmf file to disk with out issue. The problem is how do I render the Metafile as a Tiff file. Currently I have the ...
0
votes
2answers
243 views

How do I parse a PolyPolygon16 metafile record out of a byte[] c#

I need a little help in defining the following Windows GDI type in C#. I have the data in the form of a byte[] in C#, and I need to somehow marshal or cast it as the following in C#. This is the ...
0
votes
1answer
221 views

How do I parse a CREATEPENINDIRECT metafile record out of a byte array?

I need a little help in defining the following Windows GDI type in C#. I have the data in the form of a byte[] in C#, and I need to somehow marshal or cast it as the following in C#. Please see my ...
0
votes
3answers
308 views

How do I parse a polyline metafile record out of a byte array?

I need a little help in defining the following Windows GDI type in C#. I have the data in the form of a byte[] in C#, and I need to somehow marshal or cast it as the following in C#. I suppose I need ...
5
votes
4answers
3k views

Specifying DPI of a GDI Device Context

I have an application that generates metafiles (EMFs). It uses the reference device (aka the screen) to render these metafiles, so the DPI of the metafile changes depending on what machine the code is ...
2
votes
3answers
2k views

GDI+ Image Conversion From Metafile to JPEG/GIF Results in Black Background

So i am converting a metafile (EMF to be exact) to a jpeg or gif (doesn't matter as long as it's compatible with browsers) and when I do the conversion, all of the transparent pixels turn black. I ...
0
votes
2answers
770 views

Reliable .wmf/wmf to Pixel based image conversion

Good afternoon, I am having a little trouble with .net's internal (System.Drawing) based MetaFile / Image handling of .wmf files that containt transparent areas. Basically whenever I do a ...
1
vote
3answers
887 views

Where can I find documentation and/or examples of working with TMetafile and TMetafileCanvas?

As I'm working to add custom printing to my application, I've settled on using TMetafile to create the pages, then using it to preview &/or print, but I'm finding the documentation lacking. Are ...
0
votes
1answer
581 views

What is the .NET equivalent of CreateEnhMetaFile and PlayEnhMetaFile?

I'm porting some C++ code to VB.NET which creates a print job consisting of several pages. Every page has a template of graphical objects (text, lines, curves, etc) which stays the same on each page, ...
6
votes
2answers
2k views

Vector graphics clipboard format for Qt

I want my Qt application to be able to save simple vector graphics to clipboard in a compatible way. On windows I want to be able to paste the graphics into Microsoft Word or Powerpoint. On Linux I ...