Search found 5 matches

by greg
2019-02-28T06:00:21-07:00
Forum: Users
Topic: Convert .emf image to very big .png,.tiff,.jpg...
Replies: 8
Views: 11783

Re: Convert .emf image to very big .png,.tiff,.jpg...

It's possible to load only one part of an .emf file using the win32 API.
i think i will create my own c++ program to convert one .emf file to several splited .bmp files.
by greg
2019-02-28T00:31:41-07:00
Forum: Users
Topic: Convert .emf image to very big .png,.tiff,.jpg...
Replies: 8
Views: 11783

Re: Convert .emf image to very big .png,.tiff,.jpg...

Did you split the image and export just part of it?
With image magick i don't know how to do that.
With Inkscape, i try to export the image without any settings and Inkscape close imediately
by greg
2019-02-27T08:12:30-07:00
Forum: Users
Topic: Convert .emf image to very big .png,.tiff,.jpg...
Replies: 8
Views: 11783

Re: Convert .emf image to very big .png,.tiff,.jpg...

Inkscape crash when i use the export function.
by greg
2019-02-27T06:10:04-07:00
Forum: Users
Topic: Convert .emf image to very big .png,.tiff,.jpg...
Replies: 8
Views: 11783

Re: Convert .emf image to very big .png,.tiff,.jpg...

With:
magick convert -density 32 image_ramadi.emf image_ramadi.png
it took me about 1 hour to do the calculation and as a result an image of 22750 x 22761 pixels and 1.6 MB.
it slow down my computer too.

i have an Intel Xenon E3-1246 3.50GHz with 16Go of RAM.

i need very very big image which can ...
by greg
2019-02-27T01:55:36-07:00
Forum: Users
Topic: Convert .emf image to very big .png,.tiff,.jpg...
Replies: 8
Views: 11783

Convert .emf image to very big .png,.tiff,.jpg...

Hi,

i need to convert a .emf file to a very big image used as terrain for a simulation software.
i used this command:
magick convert -density 16 image.emf image.png

it works but if i use:
magick convert -density 72 image.emf image.png
it will be too slow and crash

is it possible to speed up ...