How to make pdf file smaller

hi there, i scanned 2 newspaper reports and one is 5.5mb and the other is 4.4mb. yet this takes a while to send, receive and open. can i make the file smaller but still have readable text. i have some magazines on my computer with higher quality and the whole document is 150 pages yet it ads to 25mb. so can i make the file smaller. i am using preview and a canon scanner with the canon software

If it is just text, not pictures, scan to a TIFF file with a depth of 1 bit (black and white, no grey scale). Then use Graphics Converter to save as TIFF with CCITT 4 compression option. I usually get more than 10 to 1 compression with no loss of sharpness.

Similar Messages

  • How to make pdf files smaller

    Hello, is there a simple way to make a pdf file smaller. E.g. to convert 2Mb file into 100-200Kb file in one or 2 steps?
    And is there a program to make it for several files - folder - in one action?

    a. I have Adobe Reader 8.
    b. creation: conversion from Word file, not scan.
    I usually create files 2 ways:
    1. 'save as pdf' at work (not sure what a program does it, can`t check today)
    2. I have a PDF Creator installed at home, so I print on 'printer' PDF Creator
    c. content: any. currently mostly pictures, ot text with pictures

  • How to make pdf file auto open with adobe reader after downloaded

    how to make pdf file auto open with adobe reader after downloaded

    I note from your system details that you have the plugin for adobe pdf s so I would have expected the files should open in firefox '''without''' you needing to explicitly download them.
    Once the files are open in firefox, you will also get the option to save them permanently to a location on your computer. If you wish I suppose you could set the file type pdf to be associated with and be opened by firefox instead of with the Adobe Acrobat Reader, but that would just seem to be an additional complexity.

  • How to make PDF file size smaller from an Illustrator file without changing the quality or size (length and width) of the file?

    Is there a way to make a 30x42 size (40 GB) Illustrator file as a PDF but make the file smaller in size (able to email to clients) with out compromising the quality of the file or the size of the file?

    If you are working in RGB you can embed a colour profile. Embed ICC Profiles is one of the Acrobat save options. It will increase files size dramatically.
    When you save your pdf you can choose the compression method for placed images. Default is ZIP which is really no compression at all for pixel images. Instead you should opt for JPG compression (of varying degree according to how sensitive the images are to compression).
    You should also examine the other Acrobat save options. To minimize file size you should not have any of the options checked (Preserve Illustrator Editing Capability, Embed page Thumbnails etc. etc.).
    40 gigabytes for a file like the one you show is ridiculous. Did you maybe embed the placed images? If so, don’t. Keep them linked unless you really need to embed them.

  • How to Make PDF files searchable?

    I am scanning hundreds of Meeting Minutes into PDF files.  How do I make sure they are searchable so that I won't have to create a separate index?  I prefer to let the reader type a word in the  "Search" box.  Thanks.

    You're right.  Fortunately there is an OCR in my scanning software, so I tested one PDF file I had already scanned, and yes it was searchable.  Apparently not all PDF files I see are searchable because whoever scanned those files did not have OCR in their scanning software.  I am now glad I spent a fortune on my Epson scanner. 

  • How to make pdf files save protected

    Hi,
         We have displayed some company policy documents on our portal, we want to make those pdf files save protected and print protected, i.e we want to make the save and print button disabled.
    Can you please help out with this issue.

    Hi,
    In your case, you cannot do much to protect the PDF unless you create a Repository Filter (Content Filter) in which you change the security settings of the PDF file.
    This needs some expertise in modifying PDF documents with some Java PDF libraries.
    Check googling for Java PDF libraries, you will find some and get acquainted to them and start programming.
    http://help.sap.com/saphelp_nw70/helpdata/EN/55/921d7bb0c611d5993800508b6b8b11/frameset.htm
    Regards,
    Praveen Gudapati

  • How do I make a PDF file smaller in size?

    How do I make a PDF file smaller in size?

    Do you have images on your PDF? You might want to use smaller images (smaller in file size and not in necessarely in image dimension).
    I'm not sure what else could be done to make your PDF form smaller. How big is your form?
    Gen

  • How to compress PDF files

    I have a 72MB PDF file that I want to email. How do I compress this file.

    A curious observation confounded me. I was using OS X to create PDF files from the Print dialog box of  an application, and I found the file size that OS X was creating to be rather large. I used Adobe Acrobat Pro to reduce the file size by using the product's capability to do so. A rather time consuming task, but necessary since the original file sizes were too large to email.
    Completely by accident one day i used Preview within OS X to view a newly created file (4.9 Mb in size), and then "saved" the file to disk. For some reason in doing so, Preview had automatically reduced the file size from 4.9 Mb to less than 200 Kb (coincidentally the same size reduction that Acrobat Pro was doing manually).
    I don't know why, but simply opening in Preview and then saving the file was initiating a massive reduction. To this day, I find that the two step proces of creating a PDF, then doing the Preview reduction is necessary to make the files smaller for email.

  • How to save pdf file in database

    Dear All,
    my application is forms 6i and database is 8i,requirement is that how to save pdf file in database and users can view through forms

    I'll apologize up front for the length of this post. I have a few database procedures I created that write a file to a BLOB column in a table as well as retrieve the BLOB from the column after it stored there. I have successfully stored many different types of binary file to the database using these procedures - including PDF files. I have not used these procedures in a Form so I can confirm that they will work, but theoretically they should work. I'm including the code for each procedure in this posting - hence the apology for the long post! :-)
    Also, since these procedures reside on the database you will need to use Forms TEXT_IO built-in package to write your file to the server before you can use these procedures to store and retrieve the file from the database.
    These procedures reads and writes a binary file to a table called "LOB_TABLE." You will need to modify the procedure to write to your table.
    -- Author :  Craig J. Butts (CJB)
    -- Name   :  load_file_to_blob.sql
    --        :  This procedure uses an Oracle Directory called "IN_FILE_LOC".  If you
    --           already have a directory defined in the database or would prefer to use
    --           a different Directory name, make sure you modify line 21 to reflect the
    --           new Directory name.
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE load_file_to_blob (p_filename IN VARCHAR2) IS
       out_blob    BLOB;
       in_file     BFILE;
       blob_length INTEGER;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- set the in_file
       in_file := BFILENAME('IN_FILE_LOC',p_filename);
       -- Get the size of the file
       dbms_lob.fileopen(in_file, dbms_lob.file_readonly);
       blob_length := dbms_lob.getlength(in_file);
       dbms_lob.fileclose(in_file);
       -- Insert a new Record into the tabel containing the
       -- filename specified in P_FILENAME and a LOB_LOCATOR.
       -- Return the LOB_LOCATOR and assign it to out_blob.
       INSERT INTO lob_table (filename, blobdata)
          VALUES (p_filename, EMPTY_BLOB())
          RETURNING blobdata INTO out_blob;
       -- Load the file into the database as a blob.
       dbms_lob.open(in_file, dbms_lob.lob_readonly);
       dbms_lob.open(out_blob, dbms_lob.lob_readwrite);
       dbms_lob.loadfromfile(out_blob, in_file, blob_length);
       -- Close handles to blob and file
       dbms_lob.close(out_blob);
       dbms_lob.close(in_file);
       commit;
       -- Confirm insert by querying the database
       -- for Lob Length information and output results
       blob_length := 0;
       BEGIN
          SELECT dbms_lob.getlength(blobdata) into blob_length
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data Found';
       END;
       vErrMsg := 'Successfully inserted BLOB '''||p_filename||''' of size '||blob_length||' bytes.';
       dbms_output.put_line(vErrMsg);
    END;
    -- Author   :  Craig J. Butts (CJB)
    -- Name     :  write_blob_to_file.sql
    -- Descrip  :  This procedure takes a BLOB object from a database table and writes it
    --             to the file system
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE write_blob_to_file ( p_filename IN VARCHAR2 ) IS
       v_blob      BLOB;
       blob_length INTEGER;
       out_file    UTL_FILE.FILE_TYPE;
       v_buffer    RAW(32767);
       chunk_size  BINARY_INTEGER := 32767;
       blob_position INTEGER := 1;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- Retrieve the BLOB for reading
       BEGIN
          SELECT blobdata
            INTO v_blob
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data found';
       END;
       -- Retrieve the SIZE of the BLOB
       blob_length := DBMS_LOB.GETLENGTH(v_blob);
       -- Open a handle to the location where you are going to write the blob
       -- Note:  The 'WB' parameter means "Write in Byte Mode" and is only
       --          available in the UTL_FILE pkg with Oracle 10g or later.
       --        USE 'W' instead for pre Oracle 10q databases.
       out_file := UTL_FILE.FOPEN('OUT_FILE_LOC',p_filename, 'wb', chunk_size);
       -- Write the BLOB to the file in chunks
       WHILE blob_position <= blob_length LOOP
          IF ( ( blob_position + chunk_size - 1 ) > blob_length ) THEN
             chunk_size := blob_length - blob_position + 1;
          END IF;
          dbms_lob.read(v_blob, chunk_size, blob_position, v_buffer );
          UTL_FILE.put_raw ( out_file, v_buffer, TRUE);
          blob_position := blob_position + chunk_size;     
       END LOOP;  
    END;Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question please mark the response accordingly. Thanks!

  • Adobe Acrobat 9 can't make pdf files in 2003 Word

    Hello, Can you help me?
    I purchased Adobe Acrobat 9 Pro four years ago when I went onto Windows 7 as I needed the 64 bit version. Prior to this I had Adobe Acrobat 7.
    Recently I have been unable to make PDF files in Word although it is working in all the other Word applications and through the HP scanner.
    It also won’t make PDF files through the Adobe programme and comes up with the message “Missing PDF files”and the repair command fails to save the problem.
    I am using Word 2003 but prior to now the programme has worked without a problem.
    Can you tell me how to solve the problem as I need the facility as I manage numerous websites for different charities.
    My serial number is 1118-1780-5717-0649-5947-1289 and I am reluctant to unload the programme incase I can’t reload it.
    I have tried to load Acrobat 7 onto my laptop which still has Windows Vista on it.  The serial number for this is 1016-1284-2194-6099-0208-1387 but it refuses to activate this.  Can you advise me on this ?
    I am desperate..
    Many thanks, Sheila 

    Pro's Safari Plugin is not updated for Mountain Lion yet.
    Remove the plugin and use Preview for now in Safari.
    Guide on removing Safari plugins: http://macs.about.com/od/usingyourmac/qt/safariplugin.htm

  • How to create pdf files in UNIX directory from oracle reports

    I would like to know how to create pdf files in UNIX directory from oracle reports.
    Thanks,

    Please make your question more clear . Also mention the reports version.
    1) If you are runnning reports in Unix, you can give
    .... destype=file desformat=pdf desname=<filename>
    in command line
    Please refer docs below.
    2) If by your question you mean
    "My reports server is running in Windows but I want to ftp my files to Unix after creating it"
    then the answer is that you can use pluggable destination "ftp"
    .... destype=ftp desformat=pdf desname=<ftp url>
    Pluggable destinations download
    http://otn.oracle.com/products/reports/pluginxchange/index.html
    Thanks
    Ratheesh
    [    All Docs     ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf

  • How to split pdf files also how to downsize a pdf file?

    how to split pdf files also how to downsize a pdf file?

    Hi Ali,
    If the PDF file you're starting with is larger than 100MB, ExportPDF won't be able to convert it.
    To convert a file of that size and to create separate files, you'll need Adobe Acrobat.  You'd need Acrobat to divide the file into smaller chunks for ExportPDF anyhow, so Acrobat is probably the best solution for you.  You can learn more about Acrobat here: http://www.adobe.com/products/acrobat.html
    Kindest regards, Stacy

  • Using pages how to insert pdf files on ipad?

    using pages how to insert pdf files on ipad?    
    Anybody have any idea, have pdf files in ibook do not see where to insert pdf's.
    Also trying to get word files onto ipad using drop box, do these word files need to be saved in another format?
    Also for pages.
    thnx

    No - the Word files do not need to be saved in any other format if you have Pages on your iPad. There are other apps that provide better compatibility than Pages but it will work for you. You have to have DropBox on your PC and the free DropBox app on the iPad to use DropBox to transfer files.
    To send the file using DropBox -  make sure DropBox is running on your computer. Then place the file in one of the folders that you have set in your DropBox folder on your PC. Launch DropBox on your iPad and find the folder that you placed the file into and tap on that folder. Find the document and tap on it. It will open in the window on the right. Tap the arrow icon in the upper right corner and select Open in Pages.
    If you have pdf files in iBooks that you want to put into Pages you have to email them to yourself and use the Open In feature when you open the email. You cannot send a file from iBooks other than to email it - at least I am not aware of any other way.

  • How to make a photo small so I can send it by e-mail

    want to know how it make a photo small on my desktop so I
    can send it by e-mail, thank you

    I suppose there might be an extension, but you would be better off using a free photo editor.
    I use "IrfanView" (irfanview.com) to work with photographs.
    I use "PicPick" (picpick.org) to work from a screen print ("PrtSc") or capture to crop and annotate.
    *Also see http://kb.mozillazine.org/Posting_a_screenshot_on_the_forum#Windows
    *also see http://en.wikipedia.org/wiki/Screenshot
    Something simpler may or may not be:
    :Picnik (picnik.com), online photo editing, fix photos, crop, resize, rotate, artsy effects, fonts, shapes.
    You also have alternatives storing the picture and./or elsewhere and providing a link
    * imageshack.com
    * dropbox.com
    If you have access to the image through Firefox, this extension looks promising
    *ResizR :: Add-ons for Firefox (10 KB)<br>https://addons.mozilla.org/firefox/addon/resizr/
    Saving files to your desktop is not the best place.

  • How to make PDF forms work in DreamWeaver

    How to make PDF forms work in Dreamweaver

    Look at DW's starter pages called "liquid" (FILE | New > Blank Page > "2 column, liquid" etc., or Google "liquid layouts".

Maybe you are looking for

  • Geting null vaules with request.getParameter().....

    Hello Experts, I am sending a data from one jsp page to another using java script (document.form.txtbx.value = myData), on same page I cheked and got the correct value but on the next page, I am getting null vaues. I am giving my code just check out

  • DVD-R Upgrade

    Hi folks I have a G3 B&W (Rev. A) and I have a question about upgrading my drive. First in the world of dvds I have found that a dvd-r drive just doesn't cut it anymore. Does anyone out there have experience upgrading to a dvd/cd RW drive in the B&W?

  • SAN for accepted domain

    I'm absorbing a company into our exchange and added them as an accepted domain.  There current certificate is pretty standard mail and autodiscover SAN names.  Currently RPC over http is not working correctly and that is to be expected since I pointe

  • LCP timeout problem

    I got PPP LCP timeout problem with ISDN connection. Line was drop every 20 sec. I already try to change speed already.(56k , 64k). Only saw Open confreq message(BR0/0:1 LCP: O CONFREQ [Closed] id 113 len 32)  not reply from other side. Pls advice me

  • Printing from my iPad to my hp printer

    Have a HP 8600 Office jet printer and want to print from my ipad