3d transparency wont translate to pdf or tiff

Hi!
First of all I am new to forums, new to illustrator and am stumped on this. Thank you for your patience with my newbieness.
I am creating a logo for a friend. I have an image that I drew, made transparent and then 3d. I want to save it as a pdf or jpg or png and when I try it, it eliminates the transparency effect. I would greatly appreciate any help! Thank you!
Cheers,
Terelyn
Here is a screen shot of the ai file. This is what I want it to look like.
Below is what it looks like when saved in pdf and any other format.

What program was used to view the PDF? It may be that only Acrobat can accurately render the transparency effects. Try flattening before saving the PDF or saving to a PDF version that cannot support transparency, thus forcing flattening. PDF 1.3 (Acrobat 4) for example.

Similar Messages

  • Macbook Air wont's open PDF in Safari browser Version 7.1 (9537.85.10.17.1)

    Hi Guys, can anyone help me out here i bought a new 2014 Macbook Air with a maverick's OS X Version 10.9.5 and it wont's open PDF in Safari browser Version 7.1 (9537.85.10.17.1). I have a adobe reader Version IX 11.0.09
    this is the message i get when i open up a pdf on safari
    To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html
    For further support, go to www.adobe.com/support/products/acrreader.html

    i did this is what it says;
    To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html
    For further support, go to www.adobe.com/support/products/acrreader.html
    and when i go to my library under internet plug-Ins there's nothing in the file.

  • Writing XMP to multiple file formats (PDF, JPEG,  TIFF, etc)

    Hi,
    I am developing a server-side component that embeds XMP data into a file (of various formats) and then provides these files for client download.
    I have been using the XMP toolkit for generating the metadata, however i now have the problem of getting this metadata into the relevant file. I could always develop this myself but it seems like a huge amount of work. So to make my life easier, does anyone know of any toolkits (from adobe or otherwise) that support writing XMP data into different file formats (PDF, JPEG, TIFF, AIFF, MPEG etc) ??
    I am developing in Java so I would prefer Java libraries, however I can always use JNI calls to C/C++ (as i have with the XMP toolkit).
    Any help would be very appreciated.
    Regards,
    Jude

    Greetings,
    I think we should standardize some information, I know for a fack, that I will support adding XMP metadata in the HDF, RIFF, IFF and OLE file formats. If you have any specific suggestions on the chunk information or signature information that I should use, let me know?
    For my part, I was thinking of adding RIFF,IFF chunks with the name \ xmp in those file formats. For OLE, maybe an added stream with the xmp name (in UTF-16).
    Comments welcome everyone!

  • PDF to TIFF using VB.NBET Error: UnsupportedValueError: Value is unsupported. === Parameter cConvID

    I'm trying to use the following VB function to transform a pdf
    document to a tiff one:
    I am using Visual Studio 2008, VB.Net
    Using the following code, But when I type
    'JSObj.SaveAs(fullPathTIF, "com.adobe.acrobat.tiff")'
    Visual studio intelisence doesn't show the SaveAs method at all. I went ahead and typed it, but got the following error in that line
    Error: UnsupportedValueError: Value is unsupported. ===> Parameter cConvID
    I tried googling forvthat error, but could not find a solution. Please help.
    I am trying to do a proof of concept to my client saying that Adobe acrobat could help them convert PDF to TIFF and Tiff to PDF and they are ready to buy the product if I prove that in the .Net environment.
    CODE:
    =====
    http://forums.microsoft.com/msdn/showpost.aspx?postid=1665127&siteid=1&sb=0&d=1&at=7&ft=11 &tf=0&pageid=1
    Private Sub savePDFtoTIF(ByVal fullPathPDF As String, ByVal
    fullPathTIF As String)
    Dim PDFApp As Acrobat.AcroApp
    Dim PDDoc As Acrobat.CAcroPDDoc
    Dim AVDoc As Acrobat.CAcroAVDoc
    Dim JSObj As Object
    ' Create Acrobat Application object
    PDFApp = CreateObject("AcroExch.App")
    ' Create Acrobat Document object
    PDDoc = CreateObject("AcroExch.PDDoc")
    ' Open PDF file
    PDDoc.Open(fullPathPDF)
    ' Create AV doc from PDDoc object
    AVDoc = PDDoc.OpenAVDoc("TempPDF")
    ' Hide Acrobat application so everything is done in silent
    mode
    PDFApp.Hide()
    ' Create Javascript bridge object
    JSObj = PDDoc.GetJSObject()
    ' Attempt to save PDF to TIF image file.
    ' SaveAs method syntax .SaveAs( strFilePath, cConvID )
    ' For TIFF output the correct cConvid is
    ' cCovid MUST BE ALL LOWERCASE.
    JSObj.SaveAs(fullPathTIF, "com.adobe.acrobat.tiff")
    PDDoc.Close()
    PDFApp.CloseAllDocs()
    ' Clean up
    System.Runtime.InteropServices.Marshal.ReleaseComObject(JSObj)
    JSObj = Nothing
    System.Runtime.InteropServices.Marshal.ReleaseComObject(PDFApp)
    PDFApp = Nothing
    System.Runtime.InteropServices.Marshal.ReleaseComObject(PDDoc)
    PDDoc = Nothing
    System.Runtime.InteropServices.Marshal.ReleaseComObject(AVDoc)
    AVDoc = Nothing
    End Sub

    Hi I tried with the lowercase 's' in saveAs(),
    I am still getting the same error
    'UnsupportedValueError: Value is unsupported. ===> Parameter cConvID.'
    Wierd thing is I am not getting the 'saveAs()' method as an option for the JSObj at all I am just forcibily typing it. May be, do you guys think I am missing any reference. I have a project reference for the Acrobat 9 com component (Component Name: Acrobat Typelib version 1.0, C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.tlb
    Please help.
    My exact code is:
    Dim JSObj As Object, strPDFText As String
    ' Create Acrobat Application object
    PDFApp = CreateObject("AcroExch.App")
    ' Create Acrobat Document object
    PDDoc = CreateObject("AcroExch.PDDoc")
    ' Open PDF file
    PDDoc.Open("D:\Applications\Test_winapp\PDFUtility\WindowsApplication1\WindowsApplication 1\sample.pdf") ' Path of some PDF you want to open
    ' Hide Acrobat application so everything is done in silent mode
    PDFApp.Hide()
    ' Create Javascript bridge object
    JSObj = PDDoc.GetJSObject()
    ' Create Tiff file
    JSObj.saveAs("D:/Applications/sample.tiff", "com.adobe.Acrobat.tiff")
    PDDoc.Close()
    PDFApp.CloseAllDocs()
    ' Clean up
    System.Runtime.InteropServices.Marshal.ReleaseComObject(JSObj)
    JSObj = Nothing
    System.Runtime.InteropServices.Marshal.ReleaseComObject(PDFApp)
    PDFApp = Nothing
    System.Runtime.InteropServices.Marshal.ReleaseComObject(PDDoc)
    PDDoc = Nothing

  • How can i translate a pdf document in japanese language to english language

    how can i translate a pdf document in japanese language to english language

    Hi trueman9299,
    ExportPDF uses OCR (optical character recognition) to convert image (scanned text) to editable/selectable text, but it doesn't translate from one language to another.
    Best,
    Sara

  • PDF to TIFF error: Image is too wide to output Acrobat X Pro

    I have been using Adobe Acrobat X Pro to convert PDFs to TIFFs.    All of the sudden this week I am getting an error saying the Image is too wide to convert.  These are files I previously converted without a problem.  I am specifying resolution of 360 pixels in the TIFF settings (which is what I have always used).  I installed the latest maintenance (10.1.12) but still get the error.  The files are 17" wide x 11" high. Any idea why I am getting this error all of the sudden and how to fix it?  I send the files to a colleague on the same Acrobat Pro X release and they do not get the errors.  Reboot resolves for 1 file, then the error comes back.

    The issue should be the resolution.  I've had this same issue before so I'll give you a walk through of what I did.  You will need to reprint your current PDF to a new PDF with a new resolution.  Upon doing that, the new PDF will need to match whatever resolution is being required by whoever is needing this TIFF File, if there is not a requirement just pick one (such as 300 DPI).
    1) In your existing document select Print (Ctrl+P)
    2) Change your current printer to "Print to PDF/Adobe PDF/ ETC..." (whatever it is called)
    3) Select Properties and a dialog box called "Adobe PDF Document Properities" should pop up.
    4) Select the tab labeled Paper/Quality
    5) Select "Advanced..."
    6) There is an option for graphic that should have a print quality labeled " XXXX DPI" (could be anywhere from 72, 300, 600, 1200, 2400, 3600, 4800), select what you want to use, click OK back out to the basic print screen, and print your new PDF and label it whatever you want your TIFF's to be called. (I use 300 as that is what a city I submit to requires for plans).
    7) Open your new PDF, and on your menu bar at the top select EDIT (right next to file) then select "Preferences" at the bottom on the drop-down menu. (or on your keyboard use "Ctrl+K" for a faster way to get to preferences)
    8) From there select Convert from PDF then select TIFF from the list of options from the box in the middle> then select "Edit Settings..." under the box on the far right that has the information about how it saves TIFF Files currently.
    9) There should be a "Save As TIFF Settings" Dialog box that opens up and at the bottom there is a place under "Conversion" that says resolution.
    10) Change the resolution to whatever your new PDF was saved and and that should fix your problem!
    I know some of this was basic stuff but I see this question come up in different places and no one has really mapped it out like above. Hope this helps!

  • Having problem while converting pdf to tiff

    Hi,
    I am using adobe live cycle.I tried to convert one editable pdf file to tiff file. It was giving me an exception which seems i cant convert editable pdf file to tiff file. So first i converted editable pdf to non editable pdf and then converted the non editable pdf to tiff file. Then it is working fine. but while converting editable pdf to non editable pdf,barcode has been erased so in tiff also i am not getting the barcode. Please give me solution for this. It is a bit urgent.
    The exception stack is below
    [Long, long content removed by forum host, please repost in the proper forum. Thank you.]
    Thanks,
    Amit

    Yikes.
    Amit...
    Please navigate to the main Adobe Forums list and find the correct product forum to repost your question.
    This area is for comments and discussion about the operation of the forums themselves. No product questions are discussed here.
    Thanks!

  • I paid for a year and now it wont translate my document to Englis its still showing it in french

    It wont translate my doucoment to English

    You paid for what?
    Adobe does not offer any translation software.  It offers software and services that can convert documents to other file types, but never language translation.

  • SIPS: convert PDF to TIFF

    I'm not sure whether this is the correct location for posting this, but anyway:
    I want to convert a PDF to TIFF, using SIPS.
    Unfortunately, and I think I understand why, SIPS cannot detect the resolution of a PDF, and defaults to 150 dpi.
    So, when I want to convert a PDF of which I know that the images are 300 dpi, to a 300 dpi TIFF, SIPS interpretes the PDF and than scales it up to 300, effectively just doubling pixels and blurring the image.
    Is there a way of telling SIPS that my PDF is of a high enough resolution?
    I hope someone can help me here.
    Regards
    Manfred

    Post your sips query to the Unix forum under OS X Technologies. As for the PDF->TIFF, see http://discussions.apple.com/thread.jspa?threadID=2490312

  • PDF to Tiff Converison

    Dear All,
    I need to convert a PDF File to a Tiff file in Java , i tried the same using Itext and Java Advanced Imaging APIs ,Can any one suggest me any opensource library or any clues for the implementing same.
    Thanks in Advance.
    Regards,
    Anil Sahu [[email protected]]

    I havent got any answer. itext has methods to convert
    a tiff to pdf but I want to convert a pdf to tiff.You have gotten several answers to the 5 threads you have started on this.
    Now go read them you stupid twat.

  • Knows somebody any Java library to convert PDF to Tiff?

    I have problem to find some library in Java, which will be support converting files to TIFF format.
    Have you some tips?
    Thank you.
    Andrea

    949767 wrote:
    Is there any way to convert PDF document in to Tiff format with inbuilt IBR features?
    In our Webcenter Portal app, we create the PDF document with the content of ADF pages and check it in UCM using RIDC api.
    There will some batch job which will retrieve the documents from UCM and send them to client internal Document management system. The client / batch job will only process TIFF files. So we need a way to convert the PDF into TIFF. We are okie to have both PDF and TIFF stored in UCM.
    When i have done research, i could only see components like PDFexport or TIFFConverter which only converts the other formats into PDF. But i am expecting a reverse conversion. Is it possible ? ThanksYa actually I got a tool that could [convert pdf | http://www.allbestapp.com/products/pdf-converter.html] to other formats, including jpg and tiff. that may fit your need.
    You could take a shot through the link above.
    Edited by: user13548958 on 2012-8-23 上午10:49
    Edited by: user13548958 on 2012-8-23 上午10:52

  • Since upgradeing from firefox 11 firefox 14 wont translate simplified chinese

    when I was using Firefox 11 and all updates in just the 11 series when i used to go to sites like postal tracking from china (17track.net) it is part English and part Chinese. The Chinese parts were automatically translated to English. Since upgrading to Firefox 14 it wont translate the simplified Chinese even when using add on translators. Why was this not a problem for ff 11 and how can i fix this in ff 14.

    You can try this bookmarklet (requires Flash to be working):
    *http://googlesystem.blogspot.com/2009/11/google-translation-bar.html
    See also:
    *http://translate.google.com/translate_tools
    * https://addons.mozilla.org/firefox/addon/google-translator-for-firefox/

  • Please return my money in programa no Russian language translation in PDF, therefore for me it is useless

    Please return my money, in programa no Russian language translation in PDF, therefore for me it is useless

    Adobe Reader is free. If you bought a subscription from Adobe, you bought it at the Apple Store so you must go to them for a refund:
    iTunes Store: Purchasing and managing auto-renewing subscriptions

  • Getting 'Out of memory' error while opening the file. I have tried several versions of Adobe 7.0,9.0,X1. It is creating issue to convert PDF into TIFF. Please provide the solution ASAP

    Hello All,
    I am getting 'Out of memory' error while opening the file. I have tried several versions of Adobe 7.0,9.0,X1.
    Also, it is creating issue to convert PDF into TIFF. Please provide the solution ASAP.

    I am using Adobe reader XI. When i open PDF it gives "OUT of memory" error after scrolling PDF gives another alert "Insufficient data for an image". after clicking both alerts it loads full data of PDF. It is not happening with all PDFs. couple of PDFs are facing this issue. Because of this error my software is not able to print these PDFS into TIFF. My OS in window7*64. I tried it on win2012R2 and XP. Same issue is generating there.
    It has become critical issue for my production.

  • How to translate a PDF to excel?

    How do I translate a PDF to excel?

    Hi davidc52720423,
    To convert a PDF file to Excel format, you can use Adobe ExportPDF, Adobe PDF Pack, or Acrobat.
    If converting to Excel is your only concern, then ExportPDF is the most economical choice.
    Best,
    Sara

Maybe you are looking for

  • Exit code 6 when installing PS CS5 Extended with Win7

    Hi all, I'm sorry to do this again, I know it is a fairly common problem but I've tried everything and still can't install. As the subject line states, I'm trying to install PS CS5 Extended on a Win7 machine. I had installed this same disk successful

  • Cluster table RFBLG

    I have come accross cluster table RFBLG. How it is used. I can see that it is a cluster of multiple tables i.e. BSEG. and how does it improve the performance of the ABAP report. Thanks in advance. Faiq

  • Hidden/Invisible Files

    Copied some files over from a Parallels installation (mostly Word and Excel files) and apparently they were somehow tagged as hidden so they didn't show in the finder. I did the terminal script thing to make them show, BUT they are still not appearin

  • In ibooks con ios7 sono spariti tutti i libri

    Dopo l'aggiornamento all'ultima versione di iBooks in ios7.0.3 sono spariti tutti i libri e i pdf. E' possibile recuperarli?

  • Excel 2013 can't open unexpected error 32809

    I have an Excel macro application written in Windows 7 Office 2007. The application works on 3 PC's recently one PC was upgraded to Office 2013 and the application running on Windows 8 when opening the file in Excel I have unexpected error 32809. Acc