Can we extract the "Save" preference info (resolution, JPG quality, etc.) from an existing PDF file?

Hi,
Is it possible to obtain *ALL* the save preference data from a PDF file with Adobe Reader alone?
I'm referring to document resolution, but also what JPG quality and vector settings were used.
Thanks!

ridgeline50 wrote:
I saw a thread that suggested using the sever version of Adobe Acrobat because its OCR engine performs better.
There isn't a server version of Adobe Acrobat.

Similar Messages

  • I can't seem to save a high resolution jpg. from a raw file?

    I am trying to save a large resolution jpg. from a raw file. When I save as at the highest level its only saving the image at around 2mb ?

    I am trying to upload a file to print on canvas in raw my photo is 30mb but when i try and save it thru photoshop as a jpg. Its so compressed the site wont even except it because the resolution is to low?  
    Thanks for any ideas,
    Tom Pytel
    480-650-2495
    Tom Pytel
    480-650-2495

  • How can I extract the create preference script from database

    I have 10.2.0.3 database. I have a schema that has text schema indexes. I need to load the data to another user.
    Here is my steps:
    1. create a new user dev.
    2. expdp user prod
    3. impdp prod to dev META_DATA_ONLY
    4. drop schema indexex, otherwise, there is error.
    5. recreate schema index.
    My problem is when I recreate the indexes. I got this error
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-10700: preference does not exist: OCS_IDCCOLL1_LEXER
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 364
    I ran
    select pre_name from CTX_PREFERENCES wehre pre_owner='PROD'
    OCS_IDCCOLL1_LEXER
    How can I recreate the OCS_IDCCOLL1_LEXER for user dev?
    Thanks a lot!

    Try running CTX_REPORT.CREATE_INDEX_SCRIPT: see http://download.oracle.com/docs/cd/B14117_01/text.101/b10729/admin.htm#CACFCCDA.

  • When creating a fillable form fields from an existing pdf file, how do you set or allow end user to set the font size in the fields?

    I successfully created a form filled pdf using an existing pdf document.  However, the font size is too large to allow end user to type in information in the form box.  Is there a way to 1)globally set all  of the form fields when generated to a much smaller font size &/or 2) allow end user to change the font size if needed to put all information in one box without font being so large?

    Hi DenisonDoc,
    There is no option right now to set properties globally primarily for Text fields. You may make sure fields doesn't contain anything.
    Select all the text filed from the form and right click any of the selected field make sure all of them are selected choose properties --> Appearance there you can choose Font Size and Font type.
    - End users cant change size and type of font. It is up to designer.
    Regards,
    Ajlan Huda.

  • How can I extract the info from my Time Capsule?

    How can I extract the info from my Time Capsule?

    What info would that be??
    If you mean how to recover TM back to a computer.. see Pondini Q14-17
    http://pondini.org/TM/FAQ.html
    If that isn't it .. we do not know what.. "the info" you are talking about.

  • Can you extract the audio from a music video?

    Some of my favorite songs were purchased from Itunes as music videos. (Because they are also my favorite videos.) Now I'm trying to figure out how to move those songs to the iPod +without having to buy the songs as just songs!+ It's been very frustrating. "Create iPod or iPhone version" doesn't convert to anything useful for a Shuffle. How do I extract the audio from the video?
    Or do I have to buy the same music over again?

    Hello RoyFeni,
    And welcome to Apple Discussions!
    Can you change the music video's *Media Type* to Music from under the Options tab of the *Get Info* window for the track in iTunes?
    I'm not sure if you can, but hey its at least worth a try. It's all I have though.
    Otherwise, this is not possible via iTunes. The only way you would be able to extract the audio is through the help of some third party application. Not sure how simple or complicated the process is.
    B-rock

  • How can i get the HTTP header info using Java

    Hi,
    I kinda need to extract the HTTP header info from a page that i goto through a URL objecrt and socket. Java.
    Can someone please help me.. thanks!!!!
    System.out.println("Enter URL : ");
    String getAdd; // The URL that the crawler begins at.
    // Manually take in URL
    Scanner sc = new Scanner(System.in);
    getAdd = sc.nextLine();
    URL myURLobj = new URL(getAdd);
    String hostName = myURLobj.getHost();
              Socket s = new Socket(hostName, 80);

    URL url = new URL(getAdd);HttpURLConnection conn = (HttpURLConnection)url.openConnection();
    Map<String, List<String>> headerFields = conn.getHeaderFields();

  • Can i use the same payment info on more than one iphone?

    Can i use the same payment info on more than one iphone?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Accepted forms of payment  >  http://support.apple.com/kb/HT5552

  • How can I extract the two channels from a stereo track?

    Hi,
    I am writing a class that is able to draw an audio signal. It seems to be working well but I have a question. If I load a mono audio file I am able to draw it on a graph by using the byte[] array and everything is ok until now. That's the code:
    void Draw(byte[] x)
                Graphics g=getGraphics();
                Graphics2D g2=(Graphics2D)g;
                g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,                     RenderingHints.VALUE_ANTIALIAS_ON);
                for(int i=0; i<x.length-6; i++)
                    g2.draw(new Line2D.Float(((i*(getWidth()-6))/x.length)+5, (getHeight()/2)-          ((x*(getWidth()-6))/x.length), (((i+1)*(getWidth()-6))/x.length)+5, (getHeight()/2)-     ((x[i+1]*(getWidth()-6))/x.length)));
    The results is correct only if I have a mono track. Obviously when I get a stereo track the array becomes very large so here the question. How can I extract the two audio channels from a stereo track?
    Thanks in advance.
    Maurizio Di Vitto                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    A mono audio stream is stored [sample, sample, sample, sample], so just a list of samples in an array.
    A stereo sample is interleaved in the same manner, so you get [left-sample, right-sample, left-sample, right-sample]
    So every nth sample is the 1st channel, every nth+1 is the 2nd channel...

  • How can I extract the data from Xstring .

    Hi Gurus ,
    How can I extract the data from a XSTRING  .
    I have to get the data which is filled in the survey form the data is getting saved in form of xstring .
    Someone told me that there is a standard FM for that . but I am not able to find .
    Please reply with the FM in case some one knows about it .
    Thanks in advance .

    The following code works as of 7.0 (in any SAP system):
    FORM XSTRING_TO_STRING USING input TYPE xstring CHANGING output TYPE string.
    TYPES : BEGIN OF ty_struc,
              line TYPE c LENGTH 100,
            END OF ty_struc.
    DATA lt_char TYPE TABLE OF ty_struc.
    DATA length TYPE i.
    length = xstrlen( input ) / cl_abap_char_utilities=>charsize.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer                = input
      tables
        binary_tab            = lt_char.
    CONCATENATE LINES OF lt_char INTO output RESPECTING BLANKS.
    output = output(length).
    ENDFORM.
    Edited by: Sandra Rossi on Mar 30, 2010 12:24 AM

  • A lot of my music is on an external Hard Drive, currently "H" drive.  When I try to play a song in the Library in Itunes I get the message that it can't find the music.  Info says it's in a different location "G" Drive.  But it's not. it's in "H" Drive.

    A lot of my music is on an external Hard Drive, currently "H" drive.  When I try to play a song in the Library in Itunes I get the message that it can't find the music.  Info says it's in a different location "G" Drive.  But it's not. it's in "H" Drive.  How do I tell it where to go?

    What if you take this same topic of an external hard drive with music but instead of directly attached to the computer the music is on a Network Attached hard drive(NAS)? Will I be able to add music to my ipod without any problem? Step that up a notch, will the two computers on my network be able to recognize the music on the NAS? Will the two users be able to create their own playlists and update their ipods independently? Now step up that up one more notch, will I be able to do this with one PC running XP and my macbook with OS X?
    Before I run out and buy a NAS I want to be certain. I also would like to convert my DVD library in the future and put it on the network available to an AppleTV or other UpNp media player in the future, because I love having power at my finger tips.

  • TS3276 Having trouble sending jpeg images as attachments in Mac email.....they go thru as images and PC users can't see the SAVE or QUICK LOOK boxes that Mac mail has.  One friend scrolled over the image, right clicked on it and saved as a PNG file.

    Having trouble sending jpeg images as attachments in Mac email.....they go thru as images and PC users can't see the SAVE or QUICK LOOK boxes that Mac mail has.  One friend scrolled over the image, right clicked on it and saved as a PNG file.

    Apple Mail isn't going to change the format of any of your attachments. it isn't going to corrupt them either.
    Exchange is a transport protocol and server. The issue you describe is not related to Exchange.
    There are many different versions of Microsoft Outlook in use and they all have e-mail bugs. Different versions have different bugs. Some Apple Mail hack to get around a bug in Outlook 2003 may cause the same message to be problematic in Outlook 2000. Fix them both and another issue will cause trouble in Outlook 2007. You can't fix this. Apple can't fix this. Microsoft can and has but that is irrelevant if your recipients are using older versions.
    One specific problem is that Apple Mail always sends image attachments inline, as images, not as iconized files. You can change this with Attachment Tamer. Just be aware that use of this software will break other things such as Stationery. E-mail is just a disaster. To date, no one outside of Apple has ever implemented the e-mail standards from 1993. Apple has continually changed its e-mail software to be more compatible with the de-facto standards that Netscape and Microsoft have unilaterally defined and people documented as "standards" after the fact. The e-mail messages that Apple Mail sends are 100% correct and do not violate any of the original standards from 1993 or the Microsoft/Netscape modifications. The problem is entirely bugs and limitations in various versions of Outlook.

  • DVD: can I extract the movie files?

    DVD: can I extract the movie files?
    I created a DVD (burned on DVD media). I did not archive the project since the files are too large. Can I extract the movie files from the DVD? I want to make a edit to the DVD.
    I know if I have the movies (clips) in iMovie I can do it but how do I do it from a completed DVD that I created and dont have the assets?
    I really don't want to pay for software that I will use once. Low or No cost alternative that won't sacrifice file quality? Thanks! Steve
    Message was edited by: Steve Woron

    As far as set up goes, others on this forum feel free to add. I rarely use either of the above (although I have access to them on separate power macs).
    Reason: Apple's DVDSP works natively with Mpeg-2. I personally have no need for anything else since these features are already included in apple's pro apps.
    Q: Doesnt DVDxdv watermark the demo version?
    A: Yes. It does, until you pay for it in full.
    ========================================
    Q:what is QT playback component??
    A:The QuickTime MPEG-2 Playback Component provides QuickTime users with the ability to import and play back MPEG-2 content, including both multiplexed (a.k.a. muxed, where the audio and video tracks are interleaved into one track) and nonmultiplexed (a.k.a. elementary) streams.
    You can read the description here:
    http://www.apple.com/quicktime/extending/components.html
    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software / products that may be mentioned in this topic. Apple encourages you to first seek a solution at Apple Support. The following links are provided as is, with no guarantee of the effectiveness or reliability of the information. Apple does not guarantee that these links will be maintained or functional at any given time. Use the information above at your own discretion.
    Message was edited by: SDMacuser

  • HT5824 where can i found the back up info that I have backed up from my iphone?

    where can I found the back up info that I have backed up from my Iphone?

    If you mean your iPhone backup, you can't see any files in the backup, you can only restore it to your phone.  You can confirm that you have one by going to Settings>iCloud>Storage & Backup>Manage Storage and seeing that your phone is listed at the top under Backups.

  • Can't get the current bitrate info use SMPTE-TT Plugin

    Using OSMF2.0 to stream a smil title.
    Add the MediaPlayerCapabilityChangeEvent.IS_DYNAMIC_STREAM_CHANGE event listener, after the event dispatch then add the DynamicStreamEvent.SWITCHING_CHANGE event listener.
    The bitrate info can be report, normal. But after I add the SMPTE-TT plugin and load it like this:
    var pluginResource:MediaResourceBase = new PluginInfoResource(new SMPTETTPluginInfo);mediaFactory.loadPlugin(pluginResource);
    The title can be stream correct and the quality of the video can be set by the bandwidth, but only the DynamicStreamEvent.SWITCHING_CHANGE event can not be dispatch, so I can't get the current bitrate info.
    I debug it in the OSMF source code and find the issue in the org.osmf.elements.compositeClasses.ParallelDynamicStreamTrait class line 323
    FYI:
    onSwitchingChange function that the numChildrenSwitching property always 0, so it can not call the setSwitching function and can not dispatch DynamicStreamEvent.SWITCHING_CHANGE event.
    So, I add some changes from line 333 to line 336 and it has be fix:
    Environment:Flex SDK 4.6 + flash player 11.8.
    I don't know it is a bug in the OSMF framework and I want to get more info about it.
    Thanks.

    can you turn off the message pane (F8) between restarts? I am guessing it will turn on again as well.

Maybe you are looking for

  • Problem with applications and accessing database

    Hi I have a serious problem with my applications.I was trying to change "users"'s folder icon so I changed the setting in information.I don'y know what I did but It made these problems: many of applications does not open for example itunes-->The fold

  • After load test is completed, "90% Page Time", "95% Page Time" columns appear blank and "99% Page Time" column is not available.

    Hi, I am using visual studio 2013. After running a load test on my application, I need to view the "90% Page Time", "95% Page Time" and "99% Page Time" percentile data in tabular results view. But since I have started using visual studio 2013, these

  • From which place i get the sap netweaver software

    hi I want to purchase sap netweaver software. I have p4 computer at my home and what are the configuration of computer to install sap netweaver software. Can you help me to get sap netweaver software? Plz give me reliable or helpful information. I m

  • ABAP-HR or XI

    Hi Experts, I am a Computer Science engineering Graduate with approx 2 years of SAP experience. My experience includes: OOPS-ABAP programming (8+ months) ABAP-HR (7+ months) SAP-NW –XI (4+ months) I am getting option to choose ABAP-HR or XI for my ne

  • How to override pie graph label

    Hi, I have a dvt pie graph component on my page. I want to programatically set my pie graph label in a java bean. For example, in my pie graph, there are 2 values, paid and unpaid. In my bean, I programatically format my paid amount, and I want to se