Photoshop EPS not saving vector data?

I have a Photoshop CS3 file with 2 layers that use vector masks. I saved the file as an .eps and checked "Include Vector Data." I placed the .eps in an InDesign document. On screen everything looks fine, but if I print to PDF the vector mask layers are missing; likewise if I open/rasterize the .eps file in Photoshop the vector mask layers are gone. It prints fine if I place the original .psd file in the InDesign doc. Any ideas why .eps doesn't appear to save the vector data? Thanks...

I understand that eps doesn't support layers, and that vector data will be rasterized if I open the eps in photoshop. That's not the issue; the issue is the vector layer data is being *discarded* and is not making it through the workflow: eps placed into an InDesign document and distilled to PDF.
Update: I merged all layers in the psd file except for 1 vector layer & saved as an eps. When I reopened the eps in photoshop, it tells me it's rasterizing eps data, but when the file opens the imagery from the vector layer is missing. Likewise, if I place the eps in InDesign and distill a pdf, the imagery from the vector layer is missing, even though it appears in the onscreen preview in InDesign. Maybe something is screwy with that mask?

Similar Messages

  • How do I prevent Lightroom from creating duplicates if the edit in photoshop is not saved?

    Hello!
    How do I prevent Lightroom from creating duplicates if the edit in photoshop is not saved?
    So... Quite often I choose to 'Edit in photoshop' from Lightroom but then end up not saving the result. (for example, because I just wanted to experiment with the photo, or I'm not satisfied with the results)
    However, Lightroom always creates a copy of the original photo, which stays in the catalog even if the photoshop changes aren't saved.
    Is there a way to stop this, and only add a photo if it has been edited in PS?
    Using LR5 with PS CS6 on a Mac 10.9
    THANK YOU!

    Select 'Open the Image in PS as a Smart Object'. The image will be rendered by ACR in memory without being written to disc until you save it from within PS.

  • Problem: EO based VO not saving VO data in database

    Hi Experts!
    For a shocker and contradiction to the concepts and theory of OAF, something strange and wierd i came across. I got an EO based VO, which got some data (i've confirmed this by debugging) is not saving the data to database on "apply". By apply i mean .. getTransaction().commit();
    This is something which violates completely with the theories, so i've no clues about it. Can anyone suggest something !!
    I mean, how to trace the functionality and resolve the issue?
    Regards
    Ari :)

    Hi sushant!
    Yeah sure!!
    Here it follows: It is an AM method..
    /**Custom public method to define default cost
    * allocation based on the pre-defined formula
    * for cost allocation keeping parity with the
    * corresponding delivery freight details
    public void DefineDefaultCosts(String StrOrgId,String StrTransportationId) {
    OAViewObject vo = (OAViewObject)getAmritTransportationCreateVO1()
    ,vo1 = (OAViewObject)getAmritTransportationPaymentsVO1()
    ,vo2 = (OAViewObject)getAmritTransportDeliveryLinesVO1();
    OADBTransaction txn = getOADBTransaction();
    ArrayList debugMessage = new ArrayList();
    HashMap PartySet = new HashMap();
    Boolean PartyEntryValid = null;
    String TransportationNum = (String)vo.getCurrentRow().getAttribute("TransportationNum")
    ,CurrencyCode = (String)vo.getCurrentRow().getAttribute("CurrencyCode")
    ,EventType = "TRNSP DELIVERED",PeriodName = null;
    Date AccountingDate = (Date)vo.getCurrentRow().getAttribute("DateDelivered");
    Number Amount = (Number)vo.getCurrentRow().getAttribute("Amount")
    ,Rate = (Number)vo.getCurrentRow().getAttribute("Rate")
    ,TripId = (Number)vo.getCurrentRow().getAttribute("TripId")
    ,OrgId = null,TransportationId = null,CodeCombinationId = new Number(576773);
    int DlvryRowCount = vo2.getRowCount(),CostDistRowCount = vo1.getRowCount();
    if (CostDistRowCount == 0) {
    try {
    OrgId = new Number(StrOrgId);
    TransportationId = new Number(StrTransportationId);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("Inherited Values: "TransportationId" "TransportationNum" "CurrencyCode" "EventType" "AccountingDate" "Amount" "Rate" "+OrgId));
    try {
    Connection Conn = txn.getJdbcConnection();
    String v$Script = "Select gp.period_name period\n" +
    "From gl_periods gp\n" +
    "Where upper(gp.period_set_name) = 'AMRIT_CALENDAR'\n" +
    "And gp.adjustment_period_flag = 'N'\n" +
    "And trunc(:1) between nvl(gp.start_date,trunc(sysdate))\n" +
    " and nvl(gp.end_date,trunc(sysdate))\n";
    PreparedStatement PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setDate(1,new java.sql.Date(AccountingDate.dateValue().getTime()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PeriodName = QryOutputRS.getString("period");
    v$Script = "Select attl.vendor_id vendorid\n" +
    " ,asp.vendor_name vendor \n" +
    "From apps.amrit_transport_trips att\n" +
    " ,apps.amrit_transport_trip_lines attl\n" +
    " ,ap.ap_suppliers asp\n" +
    "Where att.org_id = :1\n" +
    "And att.trip_id = :2\n" +
    "And att.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(att.start_date_active,trunc(sysdate))\n" +
    " and nvl(att.end_date_active,trunc(sysdate))\n" +
    "And attl.org_id = att.org_id\n" +
    "And attl.trip_id = att.trip_id\n" +
    "And attl.enabled_flag = 'Y'\n" +
    "And trunc(sysdate) between nvl(attl.start_date_active,trunc(sysdate))\n" +
    " and nvl(attl.end_date_active,trunc(sysdate))\n" +
    "And attl.location_type = 'HZ'\n" +
    "And asp.enabled_flag = 'Y'\n" +
    "And asp.vendor_id = attl.vendor_id\n" +
    "And trunc(sysdate) between nvl(asp.start_date_active,trunc(sysdate))\n" +
    " and nvl(asp.end_date_active,trunc(sysdate))\n";
    PreExecuteQuery = Conn.prepareStatement(v$Script);
    PreExecuteQuery.setInt(1,Integer.parseInt(OrgId.toString()));
    PreExecuteQuery.setInt(2,Integer.parseInt(TripId.toString()));
    for (ResultSet QryOutputRS = PreExecuteQuery.executeQuery();QryOutputRS.next();) {
    PartySet.put(QryOutputRS.getString("vendorid"),QryOutputRS.getString("vendor"));
    }catch (Exception e) {}
    /* vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    PartyEntryValid = PartySet.add((Number)vo2.getCurrentRow().getAttribute("VendorId"));
    //debugMessage.add(new OAException("Set VendorId: "+vo2.getCurrentRow().getAttribute("VendorId")));
    vo2.next();
    //debugMessage.add(new OAException("PartySet: "+PartySet.entrySet()));
    for (Iterator iter = PartySet.entrySet().iterator();iter.hasNext();) {
    Map.Entry entry = (Map.Entry)iter.next();
    String VendorName = (String)entry.getValue();
    Number Cost = null;
    int PartyId = Integer.parseInt(entry.getKey().toString());
    float Qty = 0;
    try {
    vo2.first();
    for (int i = 1;i <= DlvryRowCount;i++) {
    //debugMessage.add(new OAException("VO VendorId: "vo2.getCurrentRow().getAttribute("VendorId")" Cancelled: "+vo2.getCurrentRow().getAttribute("CancelFlag")));
    if (vo2.getCurrentRow().getAttribute("CancelFlag").equals("N")) {
    int VendorId = Integer.parseInt(vo2.getCurrentRow().getAttribute("VendorId").toString());
    float Quantity = Integer.parseInt(vo2.getCurrentRow().getAttribute("Quantity").toString());
    if (PartyId == VendorId) {
    Qty+= Quantity;
    //debugMessage.add(new OAException("Quantities: "Quantity" "+Qty));
    vo2.next();
    Qty*= Float.parseFloat(Rate.toString());
    Float totalQty = new Float(Qty);
    Cost = new Number(totalQty);
    }catch (Exception e) {}
    //debugMessage.add(new OAException("PartyId: "PartyId" VendorName: "VendorName" Cost: "Cost" EntryKey: "entry.getKey()" EntryValue: "+entry.getValue()));
    Row row = vo1.createRow();
    row.setAttribute("OrgId",OrgId);
    row.setAttribute("TransportationId",TransportationId);
    row.setAttribute("TransportationNum",TransportationNum);
    row.setAttribute("EventType",EventType);
    row.setAttribute("AccountingDate",AccountingDate);
    row.setAttribute("PeriodName",PeriodName);
    row.setAttribute("CodeCombinationId",CodeCombinationId);
    row.setAttribute("PartyId",PartyId);
    row.setAttribute("VendorName",VendorName);
    row.setAttribute("CurrencyCode",CurrencyCode);
    row.setAttribute("Amount",Cost);
    row.setAttribute("TransportationAmount",Amount);
    vo1.last();
    vo1.next();
    vo1.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    vo1.first();
    vo2.first();
    OAException.raiseBundledOAException(debugMessage);
    Regards
    Ari :)

  • Not saving the data in two tables

    Hello,
    its my production problem, i have an update form where you can update the records and these
    records will sit in the temp tables until the final approval from the supervisor.
    In this update form i have two table where i am saving the data one is dup_emp to save the
    officer data and another is the dup_address to save the officer where he worked data.
    in this form address form is pop up screen where you can update and gets back to the original
    form where you can see all the other fields. my problem is if a user hit the cancel button on
    address form example the user doesnt want to update any information on that screen so user
    cancel that screen, and comes to the other screen where the user makes the changes to the
    appropriate fields and hits the SAVE button. in this case its saving only to the dup_emp table
    data not the address data from the address form to dup_address table for the same record.
    if the user cancels in both the screens cancel button it should delete the record from both the
    tables but cancel in form and saves in another form it should save the record in both the
    tables.
    here is my code from both cancel buttons from both the forms.
    this is code is from address form cancel button.
    delete from dup_address
    where address_id=:address_id
    and parent_table_name='emp';
    commit;
    CLEAR_BLOCK;
    go_block('DUP_EMP');
    This code is from dup form of the cancel button
    declare
    temp_address_id varchar2 (12);
    begin
    delete from dup_emp
    where secondemp_id =:dup_emp.secondemp_id;
    delete from dup_address
    where parent_t_id=:global.secondemp
    and parent_table_name='emp';
    commit;
    clear_block;
    go_block('secondaryemp');
    END;

    Hi,
    As Aravind mentioned, it's nothing related to workflow. You have to find a BADI in tcode PA30 that could be used after the infotype is updated. So, you can use FM SAVE_TEXT.
    Regards,

  • Data form not saving enter data after hit of submit

    Hi,
    Entered data on Data from not saving after hitting the submit button in smartview.
    A rules is attached to the same data from and its running on save, after retrieve it's not display enter data.
    it's urgent, please help.
    Regards

    You need to have the below updates done on the affected PC.
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=00dbba00 (hexadecimal)
    "KeepAliveTimeout"=300000 (decimal)
    "ServerInfoTimeout"=300000 (decimal)
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=00dbba00 (hexadecimal)
    "KeepAliveTimeout"=300000 (decimal)
    "ServerInfoTimeout"=300000 (decimal)
    if its windows 7 machine the same key has to be added under wow6432node under same path.
    once the changes are done reboot the machine and try launching the BR. Hope it works !!!
    Thanks
    Amith

  • Photoshop edits not saved in iPhoto

    I've set up Photoshop CS4 as my external editor in iPhoto, and this has been working well for quite a while. I usually edit in Photoshop and save over the original (both jpeg files) in iPhoto. However, today I noticed that my edited work was not showing up in the gallery view (i.e. even after saving over, the original version of the photo was shown in my gallery). On close-up I can view the edited photo, but once I edit another photo the previous photo I edited reverts to its original form. I've tried repairing the library and permissions by pressing option + command on startup, but the problem still remains. None of my edited work is saved once I close and reopen iPhoto. Please help! :-(

    You are saving as a jpg (if the original file is a jpg), right? Check this workflow and see if you're doing anything significantly different than what's described.  Screenshots are from Photoshop CS3 but should be similar to later versions.
    Using Photoshop or Photoshop Elements as Your Editor of Choice in iPhoto.
    1 - select Photoshop or Photoshop Elememts as your editor of choice in iPhoto's General Preference Section's under the "Edit photo:" menu.
    2 - double click on the thumbnail in iPhoto to open it in Photoshop.  When you're finished editing click on the Save button. If you immediately get the JPEG Options window make your selection (Baseline standard seems to be the most compatible jpeg format) and click on the OK button. Your done.
    3 - however, if you get the navigation window
    that indicates that  PS wants to save it as a PS formatted file.  You'll need to either select JPEG from the menu and save (top image) or click on the desktop in the Navigation window (bottom image) and save it to the desktop for importing as a new photo.
    This method will let iPhoto know that the photo has been editied and will update the thumbnail file to reflect the edit..
    With Photoshop Elements  the Saving File preferences should be configured as shown:
    I also suggest the Maximize PSD File Compatabilty be set to Always.  In PSE’s General preference pane set the Color Picker to Apple as shown:
    Screenshots are from PSE 10
    Note 1:  to switch between iPhoto and PS or PSE as the editor of choice Control (right)-click on the thumbnail and select either Edit in iPhoto or Edit in External Editor from the contextual menu. If you use iPhoto to edit more than PSE re-select iPhoto in the iPhoto General preference pane. Then iPhoto will be the default editor and you can use the contextual menu to select PSE for your editor when desired.
    Note 2:  editing a RAW file with either PSE or PS creates a new file which must be saved outside of iPhoto, i.e. the Desktop, and imported as a new photo into the iPhoto Library.

  • Photoshop changes not saving in Aperture

    Greetings,
    I'm having a frequent but inconsistent problem that when I open images in Photoshop. After saving the changes and closing the PS file, the copy is still there in Aperture but it remains a copy of the original, it does not record any changes made in PS. When I quit out of Aperture and restart, I get the stacked images thumbnail but with only one image in it, and only marked as one image in the corner (whereas it said two and there were two images in it before quitting Aperture).
    any ideas?

    Hmm! hadn't done that yet (this happens both ins PS CS3 & CS4 by the way, saved as either 8 or 16 bit TIFFs) and maybe this is a piece of the puzzle--went to show package contents and found the original files, including all the copies, which were each given individual folders with successive numbers. For example, the original files is "Bottega_432" and can be found in its folder names as such. Each PS saved version was given its own folder with the same name but numbered successively in brackets after the folder name. Should these be going into the same folder and are not for some reason? The images themselves seem to be fine. I'm guessing it has something to do with Aperture not seeing the new folder it created for the new version? directories? this is beyond me.

  • Photoshop CS6 not saving

    I am using Windows 7 with an i7 core and 18gb of RAM. I recently purchased a CC subscription.
    In Photoshop CS6 I have noticed that at times after having saved a .psd file, after I come back to it later the changes are gone. At first I thought perhaps I fogot to save, but last night I saved several photos I had been restoring and was careful I did save them. This morning once again the changes on one of the photos were not saved, they had reverted to the original file before the restoration was done.
    Has anyone else noticed this problem? What could be causing it?

    Well, they never save properly on the operating system level or something on your system is restoring older versions of files. There's literally a gigazillion potential causes like PS's own recovery mode restoring files, because the app crashes on exit, Windows' system restore, backup tools, virus scanners interferring in the safe process, permissions issues preventing file writes or even genuine hardware issues with your harddrive and its controller. Impossible to know. Definitely not a general PS fault. If at all, I might imagine something being awry with history states, but that would still be fixable by simply picking the correct state on the saved file...
    Mylenium

  • Adobe Audition not saving Meta Data

    I'm trying to save file information within an mp3 or wav file for our broadcast software (AudioVault) to read it and the information does not save.
    We use versions 1.5 and Version 3 and they both exhibit the same behavior.
    I have followed the info below but it doesn't work.
    The File Info command opens a dialog box in which you can see and add metadata—descriptive information that a computer can process and search—about the open audio file. For example, metadata can include history, loop, and Broadcast Wave information.
    For audio files in WAV, mp3, or CEL format, you can use the File > XMP Info command to add XMP metadata. This extensive metadata can be shared across databases, file formats, and platforms. (See Add or edit XMP metadata.)
    1. In Edit View, choose File > File Info.
    2. Click the tabs at the top of the dialog box to navigate between different sets of properties.
    3. Set properties as desired, and click OK.
    To preserve file information when you save files, select Save Extra Non‑Audio Information in the Save dialog box.
    It is not saving the start and end date. Here's what I'm doing. Open mp3 file. File-File Info, toggle text field names to Radio Industry.
    Fill out Description, Advertiser, start date, end date, click ok. click file, save as (clicking save extra audio infomation)
    now close the file and reopen it and the start and end date are gone. Ideas?

    After talking with BE I discovered that the following procedure will save
    the
    meta data providing it is saved in a WAV format (mp3 doesn't work.)
    Open your mixdown in the waveform view.
    Hit ctrl P and the wave properties window will appear.
    Fill out title, artist. Cut number, category and date.
    When you save as make sure save extra non-audio info is checked
    Then in the dropdown save as type choose WAV windows pcm.
    Your completed file can now be dropped into an AV import folder that should
    transfer
    Into the system with all the information in their proper fields.

  • Photoshop elements not saving edits/captions

    I am perplexed how to get my photoshop elements 4 to save my photo edits and captions. It has worked well for many years but something happened a couple of months ago and now it is not saving either my photo editing or captions in organizer...HELP!

    DJ, My computer is windows 8, below are the system requirements for PSE12 - looks like it will run in 64-bit. Thanks for pointing me in the right direction!
    No, you have seriously misunderstood what I said. PSE will not run as a 64 bit application under Windows. Even though you have a 64 bit version of Windows, PSE will NOT run as a 64 bit application under Windows. It will run as a 32 bit application under Windows 64bit, giving it a maximum of approx 3 GB of memory to work with. I don't know if that will make your problems go away or not. Please download the 30-day free trial of PSE 12 and see if your problems go away or not before you make a purchase.
    From the system requirements
    all other applications run native on 32-bit operating systems and in 32-bit compatibility mode on 64-bit operating systems

  • Form created with LiveCycle is not saving the data of a fillable form.

    I had posted this in another forum, which got moved over to this forum.  Forgive the double post, I wasn't sure if it was assumed that it was resolved.
    This document:  http://www.southark.edu/employment/application-v5.pdf  was created a couple of years ago in Acrobat and LiveCycle.
    I wanted visitors to have the ability to fill in the document and save their data.
    So, I opened it in Adobe Acrobat X and saved it using the Save As > Reader Extended PDF > Enable Additional Features.
    However, after filling in the document and saving, no data is saved.
    I was informed that since it was an XFA form created in LiveCycle Designer, that they have special considerations that don't apply to forms created in Acrobat.
    Still needing help in giving my visitors the ability to save their form data.
    Thanks,
    Charley

    Thanks so much for your reply.
    Employing your solution our website visitors can save the data using Acrobat Pro.
    They cannot save their data using Reader (most of them don't have Acrobat Pro).  See image below.
    Any other thoughts?
    Thanks very much for your time and interest. 
    Charley

  • Add button not saved binded data

    The below code call when my forms Add button clicks.
    The issue is it runs only procedure and not saved binded value to the table.Pls suggest me any alternative code to this
    If pVal.ItemUID = "1" And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK) And pVal.BeforeAction = True And pVal.FormMode = 3 Then
                    If Soft_Application.MessageBox("Is the GPP-GCP Confirmed ?", 1, "OK", "Cancel") = 1 Then
                            Call Card_Num
                            Call Createjournal
                    End If
    End if

    Hi Dhanraj,
    If objMain.objApplication.MessageBox("Advance Payment Not Recieved.Do you want to Proceed Further !!!", 1, "Continue", "Cancel")= "2" Then
                                                BubbleEvent = False
                                                Exit Sub
                                            End If
    ''''''write ur code here
    Rgds
    Micheal

  • Saving vector data from Photoshop?

    Hi,
    I was wondering if anyone could help me out here: I've created a Photoshop document with some stylized text (gradient overlays), and I need for this to be transparent. If I save it as a PSD file it retains the transparency when I add it to InDesign. However, I'd like to keep the text as vector if possible (I have not rasterized it). I know I'd have to use a Photoshop PDF for that, but I can't figure out how to make a PDF transparent. Should I be trying to go through Illustrator somehow? Or stick with the rasterized type? Hope that makes sense.
    Any advice would be appreciated.
    Thanks, Phyllis

    I checked that (and set it to transparent), but it still makes it white. I guess it flattens the Photoshop document which makes it no longer transparent? My original document was just on a transparent background in Photoshop. I tried a clipping path just now, but there's no option to save that into the PDF (as far as I can tell). I'm guessing I need to switch to Illustrator if I need transparency on a vector?
    Thanks, Phyllis

  • Photoshop does not create reflow data anymore

    Hi, i started using Reflow and somehow "generate > reflow project" doesn't quite work anymore.
    Photoshop creates "...dataname...-reflow" folder and all the Assets but no project.rflw data is found.
    I tried reinstalling photoshop and reflow but it didn't help...
    I'm using Mac, Photoshop CC2014, EdgeReflow..

    Thank you,
    I have checked and found out that the projects have been saved regularly for LP9 until I bought LPX. Thanks a lot
    In regards to what you said about where the LPX Backups are stored I can access earlier backups of my project by clicking File > Revert to > Backup 1 ; Backup 2 (as described in the users guide)
    even though these two backups are from earlier today
    These are the only Backups that I found.
    Or maybe then I was not able to locate the correct folder...

  • Standard transaction CG02 is not saving the data through F4 help.

    Hi Guru's,
    I have a standard transaction CG02 for this i need to maintain the data for few of the fileds like Heat sensitive, Thermal energy hazard etc for updating Derived C-Alpha code. So for i can able to maintain data in two ways either directly or through F4 help. when i supply data through F4 help, on the F4 help window im providing the value and clicking on continue button. when i press on the contine button it has to update the Derived C-Alpha code if all the required fields filled. If suppose i do nt fill the required fileds it has to through the error message on the status bar like 'Invalid Data Combination'. Now the problem is when i clicking on continue button of F4 help window im displaying error message. when i try to change the value or try to fill the required fields so for im clicking on F4 button then its directly taking me out from the transaction. If i press on any key also samething is happening but the same is not happening when i supplied the value directly and saving. Please let me know the reason and help me for the same with needful solution. If anyting required plz ask me i wil provide u.
                          Here we are using the user-exit EXIT_SAPLC107_001 and is used in FM C107_CUSTOMER_FUNCTION_CALL.
    Thanks in advance.
    Yours,
    Somu.

    Hi Guru's,
    I have a standard transaction CG02 for this i need to maintain the data for few of the fileds like Heat sensitive, Thermal energy hazard etc for updating Derived C-Alpha code. So for i can able to maintain data in two ways either directly or through F4 help. when i supply data through F4 help, on the F4 help window im providing the value and clicking on continue button. when i press on the contine button it has to update the Derived C-Alpha code if all the required fields filled. If suppose i do nt fill the required fileds it has to through the error message on the status bar like 'Invalid Data Combination'. Now the problem is when i clicking on continue button of F4 help window im displaying error message. when i try to change the value or try to fill the required fields so for im clicking on F4 button then its directly taking me out from the transaction. If i press on any key also samething is happening but the same is not happening when i supplied the value directly and saving. Please let me know the reason and help me for the same with needful solution. If anyting required plz ask me i wil provide u.
                          Here we are using the user-exit EXIT_SAPLC107_001 and is used in FM C107_CUSTOMER_FUNCTION_CALL.
    Thanks in advance.
    Yours,
    Somu.

Maybe you are looking for