Tagged Questions
The metafile tag has no wiki summary.
6
votes
2answers
1k 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 ...
5
votes
4answers
2k 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
1answer
151 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 ...
2
votes
3answers
52 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
62 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 ...
2
votes
2answers
456 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
358 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.
...
2
votes
2answers
418 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). ...
2
votes
3answers
1k 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 ...
1
vote
2answers
419 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 ...
1
vote
1answer
778 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 ...
1
vote
0answers
393 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 ...
1
vote
2answers
1k 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 ...
1
vote
1answer
4k views
Free Windows based .EMF editor?
Does anybody have any first hand experience using a free windows based graphics editor that can handle EMF files?
0
votes
1answer
53 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
39 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 ...
0
votes
2answers
115 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
0answers
57 views
Painting a Metafile blue
In the code base of my company, we have a method which can paint Metafiles blue. However, it only works on some Metafiles. Here is an example:
using System;
using System.Drawing;
using ...
0
votes
1answer
128 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 ...
0
votes
2answers
255 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
291 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 ...
0
votes
2answers
167 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
145 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
194 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 ...
0
votes
2answers
483 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 ...
0
votes
3answers
644 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
447 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, ...