Search found 81 matches

by tsdineen
2012-03-05T12:24:46-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

IMDisplay works for both the WMF and EMFPlus images I supplied.

Thanks,
by tsdineen
2012-03-05T11:58:00-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

Should this be 6.7.5-9 or 6.7.5-10? I only see the latter.

Thanks,
by tsdineen
2012-03-05T08:19:10-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

It looks like the EMF+ issue was fixed with the 6.7.5-7 release. I am still seeing issues with my WMF file which is fixed, using the emfplus tool. You should be able to see the file in about 30 minutes, here.

ftp://ftp.sas.com/outgoing/ImageMagick/ngs0201w.wmf

Thanks,
by tsdineen
2012-02-24T09:52:58-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

I understand, complete.

Thanks, for your work on this.
by tsdineen
2012-02-24T08:39:19-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

One additional note: I have some wmf files that aren't readable with the current version of the Windows IMDisplay. The emfplus tool reads EMF, EMF+ and WMF files correctly. Either replacing the internal code or changing these formats to use the emfplus delegate would help, greatly.
by tsdineen
2012-02-24T08:26:15-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

Any status on this?
by tsdineen
2012-02-16T08:51:27-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

When do you expect the emf delegate to be changed over?
by tsdineen
2012-02-14T13:31:24-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

My tool supports wmf as well, so I have files. It looks like the emfplus tool will convert them to bmp as well. If there are others that don't work with the emfplus tool, I might be able to help you, but I try to stay away from knowing too much about a given format, as the tool which uses ImageMagic...
by tsdineen
2012-02-14T09:18:22-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

Here is what I am seeing: U:\tmp\TESTHELPS\TH088480>sdswhence convert C:\Program Files\ImageMagick-6.7.5-Q16\convert.EXE U:\tmp\TESTHELPS\TH088480>convert emfplus:EMFPlus.emf EMFPlus.png convert.exe: unable to open module file `C:\Program Files\ImageMagick-6.7.5-Q16\modules\coders\IM_MOD_RL_EMFPLUS_...
by tsdineen
2012-02-14T08:36:05-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

I've installed ImageMagick-6.7.5-Q16 32-bit, and I see the emfplus.exe in the C:\Program Files\ImageMagick-6.7.5-Q16. But IMDisplay still comes up blank. if I execute U:\tmp\TESTHELPS\TH088480>sdswhence emfplus C:\Program Files\ImageMagick-6.7.5-Q16\emfplus.EXE U:\tmp\TESTHELPS\TH088480>emfplus -for...
by tsdineen
2012-02-10T09:48:18-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

Ok, I have my delegate tool ready. SYNTAX: emfplus [-format <value>][-debug] <infile> <outfile> -format : list of images to convert to. Defaults RAW. Valid values are bmp,gif,jpg,png,tif -debug : adds printout information. The correct syntax for ImageMagick would be to just call it with an infile an...
by tsdineen
2012-02-07T13:21:59-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

Sorry, it took awhile to get back to the delegates app. I was able to build a tool that took an emf+ file in and ARGB out. I need to do some cleaning up, and it should be good to do.
by tsdineen
2011-12-16T14:54:38-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

You can add /Tp to the project compiler options to make this file compile as c++. Within MSVS, right click on the source and select properties. In the C/C++ options go to Advanced. For "Compile As", select Comile as C++ Code (/TP). This works in VS2010, but not in my VS2005, even though th...
by tsdineen
2011-12-16T11:09:30-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

I was using VS 2005. The only thing I did in my project was created a blank 32bit console app and added the gdiplus.lib for the link step. Probably some of the built-ins take care of locating the headers.
by tsdineen
2011-12-16T07:13:03-07:00
Forum: Bugs
Topic: EMF+ support on Windows
Replies: 30
Views: 75259

Re: EMF+ support on Windows

I looked at the spec a little last night, and isn't it as simple as #include <windows.h> #include <gdiplus.h> #include <stdio.h> using namespace Gdiplus; INT main( ) { GdiplusStartupInput gdiplusStartupInput; ULONG_PTR gdiplusToken; GdiplusStartup( &gdiplusToken, &gdiplusStartupInput, NULL )...