Possible to get the color space and resolution from the .eps file

Hi all,
We have using the InDesign CS3 5.0.4, windows, javascript.  We need to get the color space and resolution of the graphics (.eps) file using scripting.
The properties of the image like (actualPpi and effectivePpi will return the value only for the .tiff. and .jpg etc) but it will not return the .eps file resolution values.
Kindly give me the suggesting for the decrepancies.
Regards,
Nagaraj

... open them programmatically in PhotoShop, read out resolution and color space ...
On opening them in Photoshop, it asks you "what resolution shall I use, and what color space shall I apply?"
A single EPS may contain any number of embedded bitmaps, with any horizontal and vertical resolution, and in any color space. You can use only a few of these with Illustrator -- and even only one at a time with Photoshop --, but other programs allow just about every possible combination.
Not to mention procedurally generated bitmaps, also possible with PostScript.

Similar Messages

  • How to display the height, width and resolution of an EPS file

    Hi friends,
    I have to do a small module.. in that I have to display height, width and resolution of a given EPS file..
    please help..
    Thank you very much..
    Regards,
    krishna.

    Hi friends,
    I have to do display the resolution of an eps file..
    I have to use only Java.
    Can any body know the eps file format...
    I searched through net but I didn't find any best tutorial for that format..
    I am able to find the height and width from the eps file..
    By just opening that eps file.. I found %%Bounding box height width....as in some post posted by our jive member...
    In this way, is there any way to find the resolution..
    if any body knows this details.. please post.. Even if you have the file format tutorial post that one..
    Thank you.
    Regards,
    Krishna.

  • I recently downloaded Mountain Lion and am not happy with it at all.  Is it possible to get rid of it and return to the OS X version that I had previously?

    I recently downloaded Mountain Lion and am not happy with it at all.  Is it possible to get rid of it and return to the OS X version that I had previously?

    rwilkof wrote:
    I recently downloaded Mountain Lion and am not happy with it at all.  Is it possible to get rid of it and return to the OS X version that I had previously?
    Yes, just reinstall from your Time Machine backup you made before updating to Mountain Lion.
    Cheers
    Pete

  • I use aperture 3 since a long time. Using slit viewer, now the bigger image become bigger then the given space and shifted to the right, so that I can't see the complete picture anymore. And I also don't see the last few picture in the strip below. How ca

    I use aperture 3 since a long time. Using slit viewer, noe the bigger image become bigger then the given space and shifted to the right, so that I can't see the complete picture anymore. And I also don't see the last few picture in the strip below. How can I splve this problem?

    This lloks like your preferences file might have become corrupted.
    you probably have a problem with corrupted user preferences.
    Remove the Preferences: Remove the Aperture's user preferences from the User Library as described here:
    Aperture 3: Troubleshooting Basics   http://support.apple.com/kb/HT3805
    Note:Your User Library is hidden by default in 10.7.x or later - to open it in a Finder window use the "Go" menu from the Finder's main menu bar.
    Quit Aperture, if it is running. Log off and on again.
    Open the user library by using the Finder's "Go > Go to Folder" menu and hold down the options-key, until "Library" appears in the drop down menu. Select it.
    In the widow that will open, scroll down to "Preferences"
    From the "Preferences" folder  remove "com.apple.Aperture.plist".
    Then try to launch Aperture again.
    But deleting the "Preferences" file will cause Aperture to forget the preferences settings. Be prepared to have to reset all options you set using the Aperture Preferences panel.
    Regards
    Léonie

  • HT4859 i broke my iphone and got a new one. My iCloud backup has a backup from the old phone and one from the new phone. The new phone didnt download everything from icloud. Is there a way to download the stuff i didnt get back?

    i broke my iphone and got a new one. My iCloud backup has a backup from the old phone and one from the new phone. The new phone didnt download everything from the original icloud backup. Is there a way to download the stuff i didnt get back? please help

    You'll have to do another restore from the old phone backup.  But before doing that, tell us what was not restored.  For example is it just photos that didn't get restored?  If so, that seems to be a common problem for many users, judging by the posts left in the forum.  There doesn't seem to be a solution to that problem (other then to tell users to ALWAYS sync photos to a computer and never trust an iCloud backup/restore to save photos.

  • I have purchased the app geowalk and garaband from the ipad itself and found it was very slow to get it installed. Then I used a pc (not mac) to download the app and found that I cant install to the ipad. It said error... anybody can help?

    Help! I have purchased the app geowalk and garaband from the ipad itself but found the files were too big and the process is too slow. I later use non mac pc to install the 2 apps but I couldnt tranfer to the ipad. It always said error. anyone can help?
    Thanks

    WHat does the error say?  Is there an error code?

  • I have a new lion server and 4 lion laptops. The laptops loose connection to the shared documents and printers from the server after roughly 1 hour. By disconnecting and re-connecting wireless the connection is regained to shares and printers

    I have a new lion server and 4 lion laptops. The laptops loose connection to the shared documents and printers from the server after roughly 1 hour. By disconnecting and re-connecting wireless the connection is regained to shares and printers. We can still surf the web when it goes down.

    Ok 1st one. The warning restriction message relates to this line in main.cf:
    smtpd_helo_restrictions = permit_sasl_authenticated  permit_mynetworks  check_helo_access hash:/etc/postfix/helo_access  reject_non_fqdn_hostname  reject_invalid_hostname  permit reject_invalid_helo_hostname
    The last reject occurs after the single word "permit" and is ignored.
    However, that's not the problem.
    I'm not exactly sure what's happening, but this might be a clue.
    It would appear that either postfix is not being able to create the socket for private/policy or it's somehow created with the wrong permissions.  You might need to ramp up the debug level to get a better idea.
    You could check if it's being created by "netstat -a | grep private/policy" in terminal.
    My guess is that it's not being created because there is no setup statement in your master.cf file, but I don't understand why postfix would be looking for it if it isn't set up.  Private/policy I think relates to grey listing.  Maybe gives you a hint.

  • How to get the server port and id from the Initialcontext

    hi
    i know that i can get the server port and id where the jndi service is listening from the InitialContext ( when i create InitialContext ic = new InitialContext(); from within a EJB. ). Does this work on any application server and where (at what position is for example the port) in the Enumeration at the ic are the different things put?

    I would usually just get the PROVIDER_URL property from the InitialContext and use that to determine the location of the naming service:
    String providerURL = (String)ic.getEnvironment().get(Context.PROVIDER_URL);You'll then need to parse that string to obtain the port and the server name. For example:
    // Assume that the provider URL is of form "protocol://server:port"
    int serverStartIndex = providerURL.indexOf("://" + 3);
    int serverEndIndex = providerURL.indexOf(:, serverStartIndex);
    String server = providerURL.substring(serverStartIndex, serverEndIndex);
    String port = providerURL.substring(serverEndIndex + 1);It's a fairly universal approach but there'll doubtlessly be some special cases (for example, the provider URL could be null and the InitialContextFactory class defaults it).
    You might have to adjust the server/port parsing stuff a bit as I just made that up and your URL might not conform to the pattern I described.
    Hope this helps.

  • HT4500 I downloaded my hard drive contents from a hard drive Holder to my lap top. I have all of those files but now I cannot find the original pictures and such from the computer before the trasnfer. Hoe do I get them back without losing what I just tran

    I down loaded my entire contents of my desk top hard drive to my lap top. Now I don't know where my original files and pictures are. How do I find them or down load just what I am missing with out losing what I just installed ?

    Hi Again, Well I found Carbon Copy Clone on my old hard drive so I didn't even need to download it. I just dragged it onto my desktop and I did as you said.  Using CCC and within the folder of users which has my folder of old hard drive there now shows a file called.autodiskmounted (whatever that means) and then it has a version of my hard drive below that called hard drive 1, which has nothing, but above both of these folders, there is a folder with an old user name which shows up empty on the hard drive when I search it, but actually shows lots of folders on the CCC. So without getting too excited, it lists some folders and amongst them are folders I cant see normally in the old hard drive, like my safari settings and favourites, and movies music and pictures. However in the movies pictures and music folders I can only see a  blackish square that looks a bit like a blank screen with the text.localised after it .
    Does this mean anything to you / Is there  apossibility they may be there? When I selected my new laptop as the destination i got this message below so I did not proceed any further as I'm not sure it will back up the files I need..
    To avoid system instability, CCC has applied a filter that will exclude system files from the backup task.
    If you would like to restore your Mac OS X system files, restart your computer from the backup volume and try the backup task again.
    If you are trying to restore a single item or folder, click the "?" button for additional suggestions.
    Is it worth giving it a try? Thanks for this btw, its further than I've got before!!

  • Getting the Month value and Name from the Ranges of the Date given input.

    Hi Techies,
    I am developing Monthly wise report in FICO. My Inputs are Company Code, Fiscal Year and Date Range. From the Date Range I have to get the month and Generate the Report.
    For Ex:
    BUKRS : 1000
    GJAHR : 2009
    FKDAT : 01.04.2008 to 01.04.2009
    From the Above Date range how can I get the individual month names or periods. As per my Knowledge I can get the month value when the date is parameter but here the date is ranges.  Is any code available for this ?
    Thanks in Advance
    Regards,
    Muralikrishna Peravali.
    Edited by: muralipsharma on Aug 31, 2010 10:30 AM
    Edited by: muralipsharma on Aug 31, 2010 12:57 PM

    DATA: lv_dat          TYPE dats,
          lv_day          TYPE c LENGTH 2,
          lv_month        TYPE c LENGTH 2,
          lv_year         TYPE c LENGTH 4.
    DATA: lv_poper        TYPE t009b-poper.
    DATA: lt_poper        TYPE TABLE OF t009b-poper.
    SELECT-OPTIONS: so_dat        FOR sy-datum.
    break fis-kemmer.
    lv_dat = so_dat-low.
    DO.
      CLEAR: lv_poper.
      CALL FUNCTION 'FI_PERIOD_DETERMINE'
        EXPORTING
          i_budat        = lv_dat
        IMPORTING
          e_poper        = lv_poper
        EXCEPTIONS
          fiscal_year    = 1
          period         = 2
          period_version = 3
          posting_period = 4
          special_period = 5
          version        = 6
          posting_date   = 7
          OTHERS         = 8.
      APPEND lv_poper TO lt_poper.
      lv_day    = lv_dat+6(2).
      lv_month  = lv_dat+4(2).
      lv_year   = lv_dat(4).
      lv_month = lv_month + 1.
      IF lv_month LE 9.
        CONCATENATE '0' lv_month INTO lv_month.
      ENDIF.
      CONCATENATE lv_year lv_month lv_day INTO lv_dat.
      IF lv_dat GT so_dat-high.
        EXIT.
      ENDIF.
    ENDDO.
    after that you have a list of all the FI periods in internal table LT_POPER.
    get the idea?

  • HT1349 cannot get lion to download and install from the app store

    the lion os app took 2 days to down load then did not install from the app store.

    Do you mean the install button stays on install, or do you notice a loading bar under your Launchpad icon?
    This may help...
    http://asia.cnet.com/having-problems-installing-os-x-mavericks-look-here-6222279 2.htm

  • How can I hide the user name and password from the url address?

    Good afternoon every body,
    I have a form running with Oracle9i Developer Suite Release 2 and when I run the form on the web it shows the user name and password of my data base. Can anyone of you please help me to hide the user name and password, if there's any way of course?.
    Thanks a lot!!.

    Luis,
    Then, as inolau's notice, create logon screen (or use the default one) and force the users to logon at runtime. Do not pass username/password as parameters.
    inolau,
    True that if the connection is specified in the config it will be the same for everyone. However, every case is different. For example one of our apps gets S3 credentials (from non-Oracle S3) as session parameters. It uses this common db connection to validate some stuff with the database, read security definitions and then it re-connects the forms using the credentials.

  • Starting a WSAD server from the command prompt and not from the IDE UI

    Hi,
    is there a way to run the WSAD server from the command prompt instead of using the IDE UI . i have tried starting the server from the Directory i have installed WSAD " D:\Program Files\IBM\WebsphereStudio\runtimes\base_v5\bin>startServer.bat" but it gives the Following error " The system cannot find the path specified." i am working . do i have to specify the workspace that i am currently working on

    to see if the network adapter has registered with OPMN run: opmnctl status
    the 6200 message is a timeout which can be set in opmn.xml, the reports server(s) and other processes managed by OPMN should still stop.
    Try opmnctl stopall or opmnctl shutdown
    Does the timeout shows up regularly ie can you repeat it?
    After the stopall or shutdown try to start everything up again and try to stop the single reports server process again.

  • I want to get back all contactss and app from the old iphone is it possible ? and will the old iphone that i gave to have access on getting what i sync ?

    need help on this. as i'm selling off my used iphone and get a new one.

    Hello Lindster,
    Congratulations on your new computer!  I recommend following the steps in the article below to transfer your entire library from your previous computer to your new computer:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How do I delete my Bookmarks on a Macbook Pro? According to the directions on "Help" it says to open the Bookmark icon and delete from the right. I don't see anything on the right.

    I have opened the Bookmark Icon. I see individual bookmarks on the left side of my computer screen. There isn't anything on the right side of my screen so how do I remove my Bookmarks?

    Highlight the Bookmark...hit the delete key.

Maybe you are looking for