Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Eps file to .Tiff

New Here ,
Jun 02, 2009 Jun 02, 2009

Dear all,

Could you please advice me how to "Export As (or) Save As" .eps file to .tiff(not .psd) in "illustrator cs" via scripting.

Thanks..

TOPICS
Scripting
1.9K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Jun 02, 2009 Jun 02, 2009

Another one of the many things you can do from the UI in Illustrator but not from a script. There is no ExportTIFF option listed in the Scripting Reference.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 02, 2009 Jun 02, 2009

Could you please explain about UI in Illustrator.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 02, 2009 Jun 02, 2009

Open the EPS file in Illustrator. From the File menu choose Export. From the Export Options choose TIFF and set the properties you want. You can do this manually but you cannot from a script as the TIFF export is not exposed to scripting. If you were using a Mac you could set up an action and use the doScript command but this function is broken in JS or VB.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 03, 2009 Jun 03, 2009
LATEST

I've been thinking....If Illustrator won't help, why not get reinforcements?

here's how to do it scripting photoshop with VBA

'// saves the activedocument in the PhotoShop application as TIF

Sub photoShopTifSave()

    Dim PSapp As New Photoshop.Application

    Dim tifOpts As New Photoshop.TiffSaveOptions

    PSapp.ActiveDocument.SaveAs "C:\tifftest.tif", tifOpts

End Sub

tha's all it takes
CarlosCanto
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines