How to reduce the file size or reduce the document during the conversion to PDF.

I have to download an onlind doc and can't download it if it is in PDF format.  I converted it all right, but they limit the saize equal to or less than 5 Meg file.  The file is a page, and it says it's Meg 6.3, so it won't, except the transfer of files.

Hi speck300,

If you want to reduce the file size of a PDF document, you must use Acrobat. If you do not have Acrobat, you're certainly welcome to try for http://www.adobe.com/products/acrobat.html. Acrobat Pro, there are several options to reduce the size of the file, including the file > save as other > PDF of reduced size and file > save as other > PDF optimized.

Best,

Sara

Tags: Adobe

Similar Questions

  • How to disable the built-in PDF Viewer and use another Viewer at all times?

    How to disable the built-in PDF Viewer and use Adobe Reader to view the PDF files, without having to set this preference, whenever I open Firefox? The default setting to "Use Adobe Acrobat (in Firefox)". Thank you.

    It's strange. The integrated Viewer - Viewer by default - is described by the expression 'Preview in Firefox' and you will have changed to "Use Adobe Acrobat (in Firefox)".

    Well... you or an add-on or another program on your system must be changed.

    What happens if you disable the Adobe Acrobat plugin (not the extension to create a PDF file, leave it active). Here's how you can try this:

    Open the page modules using either:

    • CTRL + SHIFT + a
    • "3-bar" menu button (or tools) > Add-ons

    In the left column, click on Plugins. On the right side, find "Adobe Acrobat" and change the permission 'never enable '.

    Then in the Options page, Applications Panel, change your preference for "Portable Document Format (PDF)" to "Always ask" so you get the dialog box to download instead of the PDF, open in a tab.

    It sticks?

  • The WCChromeExtn file does not exist in the Acrobat folder, so that I can't use the extension of the conversion of PDF in Chrome.

    I installed Acrobat Pro 11.0.10. The WCChromeExtn file does not exist in the Acrobat folder, so that I can't use the extension of the conversion of PDF in Chrome.

    I do not know how to find this file, but it worked after the repair! Thank you.

  • How to register the movieclip to PDF in AS3.0?

    ActionScript3.0 Flash

    How to register the movieclip to PDF?

    Thanks in advance.

    Use the class bitmapdata and script (such as php) server-side to save a bitmap of the movieclip and then use fpdf to create a PDF with the bitmap image.

  • The name of the free program to test the conversion from PDF to Word on Mac?

    The name of the free program to test the conversion from PDF to Word on Mac?

    Hi ulfs29898036,

    There is no free program to export the PDF file.

    You will need Adobe PDF Export service https://cloud.acrobat.com/exportpdf to export the PDF file, which can be used with free Acrobat Reader DC help of Acrobat Reader | Help of Acrobat Reader DC.

    Otherwise you can purchase/subscription application Acrobat DC Plans and price | Adobe Acrobat DC

    Kind regards
    Nicos

  • Effects do not come in the conversion to PDF

    I'm doing some tests with the catalog, I created and must be sure that everything is fine until I send to print.  I have a white background, which the opacity is set to 50%, and when I did the conversion to PDF, the background came to the course.  Is that all I need to know what is printing this document when the effect has been applied to the images?  I send a PDF over to the printer, that's what they prefer.

    Thank you...

    Fill the frame with [paper], and then set the tansparency for filling at 50%, leaving the normal blending mode. :

  • How to get the path of PDF file?

    Hello

    Adobe Livecycle ES2 V9

    Here is the code that I currently use (postSave):

    var fileName = event.target.documentFileName;

    at this point, fileName is (myForm.pdf), there is no path to the file

    fileName = fileName.substring (0, fileName.indexOf("."));

    xfa.host.exportData (".") ("/" + name + ".xml", 0);

    In fact, when the user saves the document PDF an XML file is automatically saved in the same directory with the same name as the PDF file.

    The problem is event.target.documentFileName only gets the pdf and the extension (ex: site_checklist.pdf)

    If the client opens two or more PDF files, it tries to export the XML file in the directory of the first open PDF file (or the last, it have not narrowed down).

    How can I get the path of the current PDF (not PDF more recently opened)?

    I can find no documentation for .documentFileName, I tried documentFilePath too.

    The property you are looking for is the 'path' property: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.411.html

    Here is the documentation for documentFileName: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.389.html

  • How to apply the Conversion Table of file FM.

    I have a conversion table generated for a group of files that I am trying to structure. I want to be able to apply the conversion with Extendscript table. The script that I have does not save any file converted. I don't know why is it not save the file. I was under the impression that the "Structure Generator" should create the new file. If this incorrect.

    Here is the code I am using.

    var myFile = File.openDialog ("Select File to Convert"); 
    
    var myCT = File.openDialog ("Select ConversionTable"); 
    var CT = openFile (myCT.fsName, 0); 
    
    applyConversionTable (myFile.fsName, CT) 
    closeFile (CT); 
    
    function applyConversionTable(fileName, CT){ 
        var doc= openFile (fileName, 0); 
        var name = fileName.replace(/[\w\.]+$/,"test.fm")  
        CallClient("Structure Generator", "InputDocId " + doc.id); 
        CallClient("Structure Generator", "RuleDocId " + CT.id); 
        CallClient("Structure Generator", "OutputDocName " + name); 
        CallClient("Structure Generator", "GenerateDoc"); 
        closeFile (doc); 
    } 
    
    function openFile( fileName, visible){ 
         
        var i = 0; 
        var doc = 0; 
         
        var openParams = GetOpenDefaultParams(); 
        var retParams = new PropVals(); 
         
        i = GetPropIndex(openParams, Constants.FS_AlertUserAboutFailure); 
        openParams[i].propVal.ival = false; 
        i = GetPropIndex(openParams, Constants.FS_MakeVisible); 
        openParams[i].propVal.ival = visible; 
        i = GetPropIndex(openParams, Constants.FS_FileIsOldVersion); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FileIsInUse); 
        openParams[i].propVal.ival = Constants.FV_ResetLockAndContinue; 
        i = GetPropIndex(openParams, Constants.FS_FontChangedMetric); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FontNotFoundInCatalog); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FontNotFoundInDoc); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_RefFileNotFound); 
        openParams[i].propVal.ival = Constants.FV_AllowAllRefFilesUnFindable; 
         
        doc = Open(fileName, openParams, retParams); 
         
        if (doc.ObjectValid() ===1){ 
            doc.openedByScript = true; 
        } 
        else{ 
            PrintOpenStatus(retParams); 
        } 
        return doc 
    } 
    
    function closeFile(doc){ 
        Constants.FF_CLOSE_MODIFIED = 1; 
        var res = doc.Close(Constants.FF_CLOSE_MODIFIED); 
    }
    

    Ah, found the problem. I noticed this earlier, but do not think that it was important, it apparently. The other arguments must be all uppercase. Like this:

        CallClient ("Generator of Structure", "INPUTDOCID" + doc.id);
        CallClient ("Structure Generator", "RULEDOCID" + CT.id);
        CallClient ("Generator of Structure", "OUTPUTDOCNAME" + name);
        CallClient ("Structure Generator", "StructureDoc");

    I tested it and it works for me. FWIW, I think that it is a poor quality of a client API feature otherwise very slippery.

    Russ

  • How to fix the missing lines of text and formatting lost, hyphenated words and text disturbed flow, after the conversion of PDF in word doc to allow editing? using WPS office application on Android Galaxy tablet. tried Polaris app and got a blank document

    How to fix the missing text and updated lines shaped, hyphenated words and patterns disrupted, lost after export PDF document to word doc to allow editing? using WPS office application on Android Galaxy tablet. tried Polaris app and got a blank document.

    Thank you!

    Hi Spider,

    Adobe Acrobat on mobile devices can be used for editing. I will suggest you to perform the task on PC or Mac.

    Thank you

    Abhishek

  • Word format / style rules to improve the conversion of PDF forms

    I remember seeing in a help file guides for people who use Office to adhear to a few simple rules to help when converting to a PDF form.

    We have many check list in different bets on the page and by different people with often little or no training or understanding.  (Notepad is complicated for their understanding - but I digress).

    Thus, we have checklists / Questions etc. in Word tables or in a document, etc.

    There are no guides I can find it recommends no spicific formatting to improve the conversion of Word to PDF format.

    For example.

    Name: OR name: _______ OR name.    Name the name in a field and the next field empty or _ _ or (_ = Undersore)

    So inconsistent as to what is a field and what is NOT...

    Then, it is the common problem of the users using "Insert symbol" like a box (how I hate forms of words that are filled with this Jem)

    Is there a formatting guide 101, which could help to provide assistance to those who are often responsible for "make a form / check list" so that when these documents are then required to be converted into a form PDF; do not start from scratch.

    There must be a document that identified what looks like the PDF Converter in deciding whether or NOT it is a domain!

    OH...  And is there a setting that will allow these symbols of checkbox dredded be recognized as a checkbox form?

    Thanks in advance.

    Mark

    First of all, when you set up the form in WORD, make sure that the Adobe PDF printer is selected in the menu of the printer so that the provision complies when converting to PDF. That has long been a problem with WORD documents/forms that reflow based on the connected printer.

    Acrobat Search essentially everything that seems to be a standard form element (a line of underscores, box or circle) and create a field related to these items. If you leave space, easy to use form tools in Acrobat to create your own fields (or modify those that Acrobat has attempted to add). The key is therefore what would be a normal type of the input in a form field. I'm not sure that the spaces after the colon are recognized as such. I suggest you create a simple shape style in WORD and add a variety of aspects of different shape type to the document and try the conversion. The manual says really nothing more that I mentioned. There are a few tutorials on the creation of the form at Adobe.

    You might find these useful tutorials: http://acrobatusers.com/tutorials/filter/search&keywords=wizard&channel=tutorials&category = 8 & 86 & tut_type = video-OnDemand-graphics-HTML /. I didn't help much in the present, but they can be useful for you.

  • How to find large file sizes?

    I tried to use the search and advanced search, looking for large files on a drive that has 64 GB of information.
    But when I search using the size is greater then > any number, nothing is found.  I'm looking for c drive and selected and check include not indexed, hidden and system files.  Results are the same "no match points get you.

    I can't believe how it is difficult to find large files with the VISTA operating system, wasted hours.   I got just what he must find what is using 64 GB of disk space.

    The OS is Vista business with SP1 is installed.

    Thanksor comment.

    Mikey

    You probably forgot to include the 'size' or an indicator of size KB:

    *. * size: > 100, 000 KB

    Messages rating helps other users

    Mark L. Ferguson MS - MVP

  • How to activate the reader of PDF file on my site?

    http://appdownloadforpc.com

    http://phpassport.com

    Here are my sites

    N ° all you have to do is link to a PDF on your site. The user must have Adobe Reader installed on their computer to see.

  • How to select a file folder to send scanned documents to?

    I have a photosmart 6525.  I would like to send the documents in a folder specific file in My Documents.  How?

    You have the full recommended software installed for the Photosmart 6525? If not, click here.

    If so, then open the HP printer Assistant software installed with the printer.
    * Select analysis a Document/Photo option to open the scan window
    * Select Advanced... settings option on the right side of the screen
    * Select the Destination tab
    * In the middle of the window is a box containing the destination of the file scan. You can choose "Browse" and set the folder desired as the scan destination.
    * Click Save

    I would like to know how this happens.

  • After the conversion from PDF to Word, how I change (add text)?

    My document is a certificate and I converted it to PDF at the thought of Word I could fill in the blanks with the names of the recipients and other info.  How do I do that?

    Hi djpzebra,

    To start, try triple click where you want to insert text in the converted Word doc. If this does not work, we have to look closer the PDF file and how it was created (he was born of a scanned document, what application created it and so on).

    Please let us know how it goes.

    Best,

    Sara

  • How to reorder the pages in pdf format

    I have a pdf file that is 16 pages long, and I want the first page to the last!

    How can I achieve this using Acrobat?

    Thank you

    Open the palette pages left. Drag the page thumbnails to rearrange.

Maybe you are looking for

  • The Portege S100 graphics card problem?

    I have a Portege S100-S113TD, and I was watching a youtube fullscreen video, when the screen went suddenly full of horizontal lines and the laptop became unresponsive - I had to physically hold the power button for about 10 seconds turn off. Now it t

  • album photo in Icloud. How to delete pictures on all of the photo album?

    I made several albums in Icloud library. In the end, I noticed that all the pictures of the albums also were placed in the central plan "all photos". How can I prefend who and how do I remove all albumphotos out of this card (now 4,244 photos) I thin

  • cleaning multithreaded DLL

    Hi all I'm building a small DLL (for use from matlab) for acquisition of data. One of the functions may take several hours: streaming over 1 million samples in a file. So for this particular function, I want (read: I'm trying) to run it as a backgrou

  • Pavilion dv9660ev: ftp site updated BIOS for HP dv9660ev

    Hi, my laptop is a HP Pavilion dv9660ev. I try to find the file executable sp # .exe on the ftp site of HP for the BIOS update. He did for years, I've updated the BIOS and I don't remember the exact file. My Information System shows: HP Pavilion dv95

  • Windows Vista, DVD problem

    in Device Manager: "windows cannot start this hardware device because its info conifguration in the registry is incomplete or damaged (code 19).