why does your verbose info for the EMF file have png properties. Perhaps your EMF reader is reading the png size and IM does not change that.
I hadn't noticed that. At a guess I'd say it had an embedded image in there.
There are legends on the map, although they wouldn't be that large.
Try ...
Search found 10 matches
- 2012-03-27T19:07:48-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
- 2012-03-26T19:29:49-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
identify -verbose detail.emf
identify: no decode delegate for this image format `detail.emf' @ error/constitute.c/ReadImage/532.
I figured I'd check: it's probably a Windows thing .
I got this:
Image: \temp\work\detail.emf
Format: EMF (Windows WIN32 API rendered Enhanced Meta File)
Class ...
identify: no decode delegate for this image format `detail.emf' @ error/constitute.c/ReadImage/532.
I figured I'd check: it's probably a Windows thing .
I got this:
Image: \temp\work\detail.emf
Format: EMF (Windows WIN32 API rendered Enhanced Meta File)
Class ...
- 2012-03-26T19:14:56-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
In fact, even Photoshop will not display this image.
Oddly, Adobe Illustrator will read it in, but I always seem to max out at about 8000x4000 pixels when exporting to JPG - not enough to resolve the smaller labels, and his northern continent has a ton of fine detail.
That's why I'm trying IM ...
Oddly, Adobe Illustrator will read it in, but I always seem to max out at about 8000x4000 pixels when exporting to JPG - not enough to resolve the smaller labels, and his northern continent has a ton of fine detail.
That's why I'm trying IM ...
- 2012-03-26T16:42:49-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
I'm not sure what you mean by a text example.
Here's http://www.thefifthimperium.com/images/detail.emf a section of the map he ran off for me as a stand-alone file. It represents about 15-20% of the overall map.
This is a smaller segment that a quick test shows similar behavior, but Windows XP ...
Here's http://www.thefifthimperium.com/images/detail.emf a section of the map he ran off for me as a stand-alone file. It represents about 15-20% of the overall map.
This is a smaller segment that a quick test shows similar behavior, but Windows XP ...
- 2012-03-25T19:13:56-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
No problem. Working on getting one.fmw42 wrote:Sorry, typo, I meant test not text.
It isn't so much that the 'information' is proprietary, just that I don't think he'd want such an easily editable version to be publicly available.
- 2012-03-25T18:06:51-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
can you post a non-proprietary text example that shows the same problem?
I'm not sure what you mean by a text example.
The final output image will be posted online, I just don't see him wanting the vector-based version being posted.
I've asked him if his generating program can export a portion ...
I'm not sure what you mean by a text example.
The final output image will be posted online, I just don't see him wanting the vector-based version being posted.
I've asked him if his generating program can export a portion ...
- 2012-03-25T16:40:58-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
convert -density "150" source.emf dest5.jpg or convert -density "300" source.emf dest6.jpg
As EMF is a vector format, these two commands should produce files with different widthxheight dimensions. The first should have a resolution of 150 dpi and the second should be 300 dpi.
Look at the ...
As EMF is a vector format, these two commands should produce files with different widthxheight dimensions. The first should have a resolution of 150 dpi and the second should be 300 dpi.
Look at the ...
- 2012-03-25T08:47:38-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
see
http://www.imagemagick.org/script/command-line-options.php?ImageMagick=hgcbngasoj95j48m61c74kc4a6#density
" The default unit of measure is in dots per inch (DPI). The -units option may be used to select dots per centimeter instead.
The default resolution is 72 dots per inch, which is ...
http://www.imagemagick.org/script/command-line-options.php?ImageMagick=hgcbngasoj95j48m61c74kc4a6#density
" The default unit of measure is in dots per inch (DPI). The -units option may be used to select dots per centimeter instead.
The default resolution is 72 dots per inch, which is ...
- 2012-03-24T19:12:15-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Re: Converting EMF to JPG
put -density XXX before the image and right after "convert". But note that density is in dots per inch (pixels per inch). So you need to adjust the density value to produce the pixel dimensions you want. Nominal values are 72 dpi.
Thanks for the quick response. I hadn't realized that the ...
Thanks for the quick response. I hadn't realized that the ...
- 2012-03-24T17:40:04-07:00
- Forum: Users
- Topic: Converting EMF to JPG
- Replies: 17
- Views: 39729
Converting EMF to JPG
New to using ImageMagick...
Trying to convert an EMF to JPG (on a Windows box). No complex conversions, just trying, without success, to get the output resolution I want.
A simple default convert like CONVERT SRC.EMF DST.JPG runs the conversion to an apparently 'default' size of 3997x2000.
My ...
Trying to convert an EMF to JPG (on a Windows box). No complex conversions, just trying, without success, to get the output resolution I want.
A simple default convert like CONVERT SRC.EMF DST.JPG runs the conversion to an apparently 'default' size of 3997x2000.
My ...