List Info

Thread: convert is bitmapping my fonts during PS -> EPS conversion




convert is bitmapping my fonts during PS -> EPS conversion
country flaguser name
United States
2007-02-15 01:41:08
I'm converting some Illustrator files to EPS with:
    convert foo.ai foo.eps

These come out great... but the text is a bit blocky.  Each
glyph has been
converted to a small bitmap.
Is there a way to stop this?  Or at least get a warning it
is happening?

The font in question is NOT installed on the local computer.
 gs/gv are
installed.
-- 
View this message in context: http:/
/www.nabble.com/convert-is-bitmapping-my-fonts-during-PS--%3
E-EPS-conversion-tf3232295.html#a8981033
Sent from the Magick-users mailing list archive at
Nabble.com.

_______________________________________________
Magick-users mailing list
Magick-usersimagemagick.org
http://studio.imagemagick.org/mailman/listinfo/magick
-users

Re: convert is bitmapping my fonts during PS -> EPS conversion
user name
2007-02-15 05:20:41
brycenesbitt on  wrote...
| 
| I'm converting some Illustrator files to EPS with:
|     convert foo.ai foo.eps
| 
| These come out great... but the text is a bit blocky. 
Each glyph has been
| converted to a small bitmap.
| Is there a way to stop this?  Or at least get a warning it
is happening?
| 
| The font in question is NOT installed on the local
computer.  gs/gv are
| installed.

ImageMagick is NOT designed for vector formats like
these...

For more info on why see...
  IM Examples, Common Image Formats
    A word about Vector Image formats
       http
://www.imagemagick.org/Usage/formats/#vector

You can do it but it will come out blocky.
If you still want to do it add a higher -denstity setting
first..

   convert -density 600 foo.ai foo.eps

Where 600 is the output resolution of your printer or other
device.

NOTE your postscript file will probbaly be very BIG.

You are better of getting Illustrator to convert to
postscript
instead, as it will generate vector postscript.


  Anthony Thyssen ( System Programmer )    <A.Thyssengriffith.edu.au>
 -----------------------------------------------------------
------------------
   VI?  Bless you my son, for thee have acquired expertise
in the One Sacred 
   Editor. Never mention The Enemy, lest it break out into
text mode on other 
   holy consoles.
 -----------------------------------------------------------
------------------
     Anthony's Home is his Castle     http://www.cit.gu.
edu.au/~anthony/
_______________________________________________
Magick-users mailing list
Magick-usersimagemagick.org
http://studio.imagemagick.org/mailman/listinfo/magick
-users

Re: convert is bitmapping my fonts during PS -> EPS conversion
country flaguser name
United States
2007-02-15 11:20:15

Anthony Thyssen wrote:
> 
> ImageMagick is NOT designed for vector formats like
these...
> ...You can do it but it will come out blocky.
> If you still want to do it add a higher -denstity
setting first..
> 
>    convert -density 600 foo.ai foo.eps
> 
> Where 600 is the output resolution of your printer or
other device.
> 
> NOTE your postscript file will probably be very BIG.
> 
> You are better of getting Illustrator to convert to
postscript
> instead, as it will generate vector postscript.
> 

The problem is that Illustrator is not scriptable in this
way, so converting
200 images once a month is too much work.

But ImageMagick is doing much more than simple
rasterization.  When I
convert to EPS I get a fully vector result... complete with
splines and
paths.  Only the font glyphs have been rasterized, one
bitmap per character.

And the density flag has no effect:
> convert -density 100 podmaps/map_1_p.ai
map_1_p_100.eps
> convert -density 600 podmaps/map_1_p.ai map_1_p_600eps
> ls -la
-rw-r--r-- 1 bryce users 10090 2007-02-15 09:13
map_1_p_600.eps
-rw-r--r-- 1 bryce users 10090 2007-02-15 09:12
map_1_p_100.eps

So the question remains: how can one control the font
rasterization
separately from the vector conversion to EPS.  Or, where can
I find another
AI to EPS tool (and yes, I have tried pstoedit, which is
unmaintained and
broken).
-- 
View this message in context: http:/
/www.nabble.com/convert-is-bitmapping-my-fonts-during-PS--%3
E-EPS-conversion-tf3232295.html#a8989693
Sent from the Magick-users mailing list archive at
Nabble.com.

_______________________________________________
Magick-users mailing list
Magick-usersimagemagick.org
http://studio.imagemagick.org/mailman/listinfo/magick
-users

Re: convert is bitmapping my fonts during PS -> EPS conversion
user name
2007-02-15 12:44:17
On 2/15/07, brycenesbitt <bryce1obviously.com> wrote:
> Anthony Thyssen wrote:
> >
> > ImageMagick is NOT designed for vector formats
like these...
> >
> > You are better of getting Illustrator to convert
to postscript
> > instead, as it will generate vector postscript.
> >
>
> The problem is that Illustrator is not scriptable in
this way, so converting
> 200 images once a month is too much work.

What version of Illustrator are you using? Here's a script
for CS2
that will save the current document as EPS:

// Save a document to the home folder of the current user
// as EPS with specific options
var newFile = new File("~/sample.eps");
var saveDoc;
if ( app.documents.length == 0 )
    saveDoc = app.documents.add();
else
    saveDoc = app.activeDocument;
var saveOpts = new EPSSaveOptions();
saveOpts.cmykPostScript = true;
saveOpts.compatibility = Compatibility.ILLUSTRATOR8;
saveOpts.embedAllFonts = true;
saveDoc.saveAs( newFile, saveOpts );

GNS
_______________________________________________
Magick-users mailing list
Magick-usersimagemagick.org
http://studio.imagemagick.org/mailman/listinfo/magick
-users

Re: convert is bitmapping my fonts during PS -> EPS conversion
country flaguser name
United States
2007-02-15 22:06:09


Gabe Schaffer-3 wrote:
> 
> What version of Illustrator are you using? Here's a
script for CS2
> that will save the current document as EPS:
> 
> // Save a document to the home folder of the current
user
> // as EPS with specific options
> var newFile = new File("~/sample.eps");
> var saveDoc;
> if ( app.documents.length == 0 )
>     saveDoc = app.documents.add();
> else
>     saveDoc = app.activeDocument;
> var saveOpts = new EPSSaveOptions();
> saveOpts.cmykPostScript = true;
> saveOpts.compatibility = Compatibility.ILLUSTRATOR8;
> saveOpts.embedAllFonts = true;
> saveDoc.saveAs( newFile, saveOpts );
> 

Thanks.  While that does not work within our environment, it
is good to know
about the capability.
-- 
View this message in context: http:/
/www.nabble.com/convert-is-bitmapping-my-fonts-during-PS--%3
E-EPS-conversion-tf3232295.html#a8998676
Sent from the Magick-users mailing list archive at
Nabble.com.

_______________________________________________
Magick-users mailing list
Magick-usersimagemagick.org
http://studio.imagemagick.org/mailman/listinfo/magick
-users

Re: convert is bitmapping my fonts during PS -> EPS conversion
country flaguser name
United States
2007-02-16 13:03:17


Anthony Thyssen wrote:
> 
> The only thing I can think of is that it is doing some
sort of direct
> conversion via a delegate, which again I do not (did
not) thing it would
> do.
> 
> Can you provide a link, or mail directly to me the
'.ai' file you are
> using?
> 

It is ghostscript that seems to be bitmapping the glyphs, on
behalf of
Magick/convert.
-- 
View this message in context: http:/
/www.nabble.com/convert-is-bitmapping-my-fonts-during-PS--%3
E-EPS-conversion-tf3232295.html#a9010394
Sent from the Magick-users mailing list archive at
Nabble.com.

_______________________________________________
Magick-users mailing list
Magick-usersimagemagick.org
http://studio.imagemagick.org/mailman/listinfo/magick
-users

[1-6]

about | contact  Other archives ( Real Estate discussion Medical topics )