I am working on converting the EMF file to RTF file.

I am having a problem on converting the (x,y) coordinates (in EMR_LINETO record) to twips.

So please post the conversion factor.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

A Twip is twentieth of a point, a point is 1/72 of an inch. So if there's no scaling in the metafile a twip should be 1/1440 of an inch. If you're converting from, say, screen pixels to twips, you'd use GetDeviceCaps to find out the number of pixels per inch. So;

TwipsX = PixelsX * 1440 div GetDeviceCaps(DC, LOGPIXELSX);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.