home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / sys / amiga / graphics / 5729 < prev    next >
Encoding:
Internet Message Format  |  1992-08-23  |  4.4 KB

  1. Path: sparky!uunet!olivea!decwrl!access.usask.ca!telepro!James_Hastings-Trew
  2. From: James_Hastings-Trew@telepro.UUCP (James Hastings-Trew)
  3. Newsgroups: comp.sys.amiga.graphics
  4. Subject: Re: Converting Structured Graphics Formats
  5. Message-ID: <James_Hastings-Trew.0iky@telepro.UUCP>
  6. Date: 23 Aug 92 17:33:48 GMT
  7. Organization: TelePro Technologies
  8. Lines: 75
  9.  
  10. In a message dated Sun 23 Aug 92 10:04, Ladyhawke@cup.portal.com (classic -
  11. wrote:
  12.  
  13.  L> Vector graphics conversion utilities?  YES, please.  And if PostScript
  14.  L> is to be one of the formats, then I would love to see a flag or option
  15.  L> for the format.  Most developers have implemented PostScript files 
  16.  L> without the accompanying bitmap which PostScript allows so you can see
  17.  L> the image on the screen (instead of that annoying shaded box).  I'd
  18.  
  19. There is no point in Amiga programs putting a preview on the end of the EPS
  20. files if the Amiga DTP programs won't use them. They are the people
  21. responsible for the lack of preview support.
  22.  
  23.  L> like to see it implemented in a flexible way so you can select the
  24.  L> target platform for the PostScript file and attach the appropriate
  25.  L> bitmap.
  26.  L> For example, I think some of the Mac programs use TIFF as the bitmap
  27.  L> format to accompany a PostScript file.  Haven't investigated what
  28.  
  29. Mac EPS files use either a Black and White or 8 bit colour PICT bitmap.
  30. PICT is a bitmap graphic format that is based on QuickDraw routines built
  31. into the Mac ROMS. IBM EPS files use a 1 bit TIFF format -- it is important
  32. to know that the IBM TIFF format is different from the Mac TIFF format
  33. because the byte-order in 16 bit words is different on Intel CPUs than it
  34. is on Motorolla CPUs. So far, only PageStream makes any attempt to use Mac
  35. EPS files (from Adobe Illustrator) to show a preview or to convert the file
  36. to its own internal structured graphic format.
  37.  
  38. MacDraw files are structured PICT files. These again are dependent upon
  39. code in the Mac ROMS, and so would not be an easy thing to convert to an
  40. Amiga format without a LOT of work. EPS files from Illustrator or Freehand
  41. on the other hand are PostScript code. To convert these to a bitmap format
  42. would "only" require the creation of a Postscript interpreter engine.
  43.  
  44. If Black Belt wants to include a Postcript interpreter into Imagemaster, I
  45. suggest that they take the approach that Adobe did with their Photoshop
  46. product -- support only one format (Illustrator) and fine-tune the
  47. rendering engine for that format only. Their converstion is great. You have
  48. the options of setting the size, resolution, colouration, and anti-aliasing
  49. of the final bitmapped representation. The anti-aliasing is incredible - a
  50. near perfect rendering of the PostScript file in whatever resolution you
  51. choose.
  52.  
  53.  L> others
  54.  L> use.  There's no reason why an image processor couldn't be set up to
  55.  L> convert just the bitmap portion and leave the PostScript code alone.
  56.  
  57. Except that the bitmap on EPS graphics are usually of very low quality,
  58. compared to the Postscript code itself.
  59.  
  60. If people want to convert EPS graphics to bitmap format they can do so
  61. RIGHT NOW, for FREE. Just get POST 1.7 from the Fred Fish disks. It does
  62. not anti-alias, but it is a complete Postscript engine that can read just
  63. about any Postscript file and create a bitmap from it. The limitation is
  64. that it will not create a 24 bit representation of the EPS graphic - it
  65. only produces a 3 or 4 bitplane version of the Postscript file.
  66.  
  67. If you want it to anti-alias, just make the bitmap 2x or 4x larger than you
  68. need it, and scale it down to size in Imagemaster (or ADPro!). It won't be
  69. as good as the Adobe Photoshop rendering, but it will be close.
  70.  
  71. If Black Belt wants to make a general purpose structured graphics
  72. conversion utility, I would like to see it as a seperate product from
  73. Imagemaster. It should use plug-in conversion modules (a la Interchange)
  74. and central "engine" that uses the read/write modules to do all the dirty
  75. work. It will be difficult to convert Postscript's bezier curves to other
  76. formats that don't use them - cubic splines or many many little
  77. straight-line segments? It should be EASY to convert an EPS file to ProDraw
  78. clip format. The only problematic part (aside from getting the clip file
  79. specs from Gold Disk) would be what to do with features in one program that
  80. are not supported in another (compound objects, etc.) If done well, it
  81. would be a great product -- one that I would pay up to $250 for.
  82.  
  83.  
  84. -- Via DLG Pro v0.992
  85.