Ask a Question related to Adobe Acrobat Macintosh, Design and Development.

  1. #1

    Default Reduce file size

    Hi all, I have a couple of very very big pictures, would like to reduce the size down just enough to print out on letter size at a rought quality (but still look decent on the browser). What is the best procedure to get this done. My first time using fw so I would really appreciate your inputs on this task. I will probably reduce a 20 to 30 pictures down and add them to thumbnails then when click these pictures will enlarge big enought for me to print out on letter size, portrait. Thanks again for your inputs.


    cadder1 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. How to Reduce a PDF file size??
      I have a file size 65 MB, the less I can reduce the size is 58 MB using the PDF reduce size option, also I tried using colorsync utility, Quartz...
    2. Reduce file size as a batch
      The reduce file size command doesn't seem to be available in the batch processing list. Does anyone know how to do this?
    3. Reduce File Size Command
      Afraid nor everyone's gone to PDF's. I'd whole lot rather look at a "Dead Tree" manual because I can scan through the book and mark the passages...
    4. Reduce file size with Imager
      Hi, all. I'm using Imager to create gifs, but the resultant file sizes are /huge/. I'm writing the files out like so: $img->write(type => 'gif',...
    5. CAN I CHANGE SIZE (PIXELS) OF A PROJECTOR TO REDUCE THE FILE SIZE?
      as far as I know you would have to transform bitmap scale all bitmap members to the new size, then readjust their positions to score, and adjust...
  3. #2

    Default Reduce File Size

    I'm running Acrobat 7, and I have a question about the File > Reduce
    File Size feature. How can I check/set the settings for this feature?
    If I want to set my default res to, say, 120 dpi?

    Thanks!
    JR

    johnricha@gmail.com Guest

  4. #3

    Default reduce file size

    I have written some code to save a pdf file.
    However, i want to add code to reduce the file size of the pdf.
    (optimized)
    How can I do this?

    My code:

    Dim AcroExchApp As Acrobat.CAcroApp
    Dim PDDoc As Acrobat.CAcroPDDoc
    Dim avdoc As Acrobat.CAcroAVDoc


    AcroExchApp = CreateObject("AcroExch.App")

    PDDoc = CreateObject("AcroExch.PDDoc")
    avdoc = CreateObject("AcroExch.AVDoc")

    avdoc.Open(<sourceFile>, <sourceFile>)
    avdoc = AcroExchApp.GetActiveDoc

    If avdoc.IsValid Then
    PDDoc = avdoc.GetPDDoc
    If PDDoc.Save(1 Or 4 Or 32, <targetFile>) <> True Then
    'messagebox.show("Error while saving")
    End If
    PDDoc.Close()
    PDDoc = Nothing
    End If

    avdoc.Close(True)
    avdoc = Nothing

    AcroExchApp.Exit()
    AcroExchApp = Nothing
    wouterdebo@gmail.com Guest

  5. #4

    Default reduce file size

    Hello!

    I have written some code to save a pdf file.
    However, i want to add code to reduce the file size of the pdf.
    (optimized)
    How can I do this?

    My code:

    Dim AcroExchApp As Acrobat.CAcroApp
    Dim PDDoc As Acrobat.CAcroPDDoc
    Dim avdoc As Acrobat.CAcroAVDoc

    AcroExchApp = CreateObject("AcroExch.App")

    PDDoc = CreateObject("AcroExch.PDDoc")
    avdoc = CreateObject("AcroExch.AVDoc")

    avdoc.Open(<sourceFile>, <sourceFile>)
    avdoc = AcroExchApp.GetActiveDoc

    If avdoc.IsValid Then
    PDDoc = avdoc.GetPDDoc
    If PDDoc.Save(1 Or 4 Or 32, <targetFile>) <> True Then
    'messagebox.show("Error while saving")
    End If
    PDDoc.Close()
    PDDoc = Nothing
    End If

    avdoc.Close(True)
    avdoc = Nothing

    AcroExchApp.Exit()
    AcroExchApp = Nothing

    Thanks in advance
    Wouter Debo
    wouterdebo@gmail.com Guest

  6. #5

    Default Re: reduce file size

    Nobody knows how to optimize the pdf?
    There has to be a way to do this in code. I read the adobe sdk, i
    searched google.
    Can anybody help me?
    wouterdebo@gmail.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139