Reduce smartform generated PDF size

Hi,
How to reduce the smartform generated PDF size. I have tried removing few tables,windows, logo(size 10KB) etc.. but the size didnt vary much. I am using new Font 'CorpoS' in my smartstyle and using PT language (has special characters).
Current size of my PDF is 286KB and i want it to be 20-50KB.
Please give me valuable suggestions on how to reduce the size.
Please treat this as urgent.
Thanks in advance.
Regards,
Manjeera.
Edited by: Manjeera Chinigiri on Jan 30, 2008 11:02 AM

Hello,
please check the note 843480.
Kind regards
Marcin

Similar Messages

  • Reducing generated pdf size

    Hi,
    I have a simple xdp containing only text fields set to read only. A xsd data connection have been set up and the fields are bound to this. Topmost subform are set to repeat when encountering a specific elemet in the xsd.
    All works fine when a limited amount of xml is sent to the adobe server. However, when I try with bigger xml files the server times out.
    I have noticed that files generated by Adobe LC is generally much bigger than whats generated in a product like Jasper reports. I've tried setting up a similar report in Jasper an after about 3 minutes it returnes with a generated pdf file containg about 700 pdf pages (Adobe LC timed out presented with the same xml-file)
    Sending just a small snippet of the xml to Adobe LC Server and Jasper yielded following results:
    PDF-size from LC Server: 1MB
    PDF-size from Jasper: 150KB
    There is no difference in the visual appearance of the pdf files.
    (The 700 pages pdf from Jasper reports had just a size of 1MB.)
    My questions are:
    1. Is there a way to reduce the pdf file size generated by Adobe LC server? (Using a service or somehow?)
    2. Can I tweak anything on the server or else where that would make the big-xml job complete without timeout?
    Kind regards
    Lars

    Hi Paul,
    These options are already turned off. Further more it says on the tab: "These options aply only when saving form designs as PDF files. They do not apply to pdf files rendered using LiveCycle Forms ES."
    Speaking of fonts, I am using Times New Roman, which as I understand already should be included in adobe reader (No embedding should therefore occur).
    Here is a bit more about my setup:
    I am using the following services: renderPDFForm and AssembleService (for flattening the document).
    I have tried optimizing the xdp in every possible way. Setting read only on text fields, setting a max length on text fields, using only few subforms etc. Still I find the rendered pdf to be quite big, compared to the contents and what Jasper report generates (from the same xml).
    With regards to the xml feeding. Is it possible that the served xml file is to big for the Adobe Server to handle?
    I can easily send you an archive containing the processes, xdp, xsd and sample xml file, if you would like that. Maybe you can spot something which could be optmized.
    Kind regards
    Lars

  • Error in opening smartform generated PDF attachments

    Hi every one,
        my smartforms generate multiple emails based on the widely used code as shown below.
    The emails are successfully being sent to different locations, but the problem is the first PDF file is opening, but the others followed by it are not opening. It's giving an error ' File damaged and cannot be opened!'
    Pls see the below code and help me out.
    Points would be awarded.
    Thanks to all in advance!!
    Arnab
    REPORT  zvenkat_smartform_via_mai.
    *&  Structures and Infotype Internal tables.
    TABLES pernr.
    INFOTYPES:
      0000,
      0001,
      0002,
      0006,
      0022,
      0023.
    INCLUDE dbpnpmac.
    *&  Declaration part
    Types
    TYPES:
       BEGIN OF t_emp_info,
         pernr TYPE pa0001-pernr,
         ename TYPE pa0001-ename,
         bukrs TYPE pa0001-bukrs,
         persk TYPE pa0001-persk,
         stell TYPE pa0001-stell,
         gblnd TYPE pa0002-gblnd,
       END OF t_emp_info,
       BEGIN OF t_mard,
         matnr TYPE mard-matnr,
         werks TYPE mard-werks,
         labst TYPE mard-labst,
         meins TYPE mara-meins,
       END OF t_mard.
    Work areas
    DATA:
      w_emp_info TYPE t_emp_info.
    Internal tables
    DATA:
      i_emp_info TYPE STANDARD TABLE OF t_emp_info,
      i_mard     TYPE STANDARD TABLE OF t_mard.
    "  Mai related declarations
    "Variables
    DATA :
         g_sent_to_all   TYPE sonv-flag,
         g_tab_lines     TYPE i.
    "Types
    TYPES:
         t_document_data  TYPE  sodocchgi1,
         t_packing_list   TYPE  sopcklsti1,
         t_attachment     TYPE  solisti1,
         t_body_msg       TYPE  solisti1,
         t_receivers      TYPE  somlreci1,
         t_pdf            TYPE  tline.
    "Workareas
    DATA :
         w_document_data  TYPE  t_document_data,
         w_packing_list   TYPE  t_packing_list,
         w_attachment     TYPE  t_attachment,
         w_body_msg       TYPE  t_body_msg,
         w_receivers      TYPE  t_receivers,
         w_pdf            TYPE  t_pdf.
    "Internal Tables
    DATA :
         i_document_data  TYPE STANDARD TABLE OF t_document_data,
         i_packing_list   TYPE STANDARD TABLE OF t_packing_list,
         i_attachment     TYPE STANDARD TABLE OF t_attachment,
         i_body_msg       TYPE STANDARD TABLE OF t_body_msg,
         i_receivers      TYPE STANDARD TABLE OF t_receivers,
         i_pdf            TYPE STANDARD TABLE OF t_pdf.
    PARAMETERS:
               p_mai_id(99) TYPE c.
    *& Start-of-selection.
    START-OF-SELECTION.
    GET pernr.
      PERFORM get_data.
      PERFORM show_smartform.
    *& End-of-selection.
    END-OF-SELECTION.
    *&      Form  get_data
    FORM get_data .
      rp-provide-from-last p0000 space pn-begda pn-endda.
      rp-provide-from-last p0001 space pn-begda pn-endda.
      rp-provide-from-last p0002 space pn-begda pn-endda.
      MOVE-CORRESPONDING: p0000 TO w_emp_info,
                          p0001 TO w_emp_info,
                          p0002 TO w_emp_info.
      SELECT matnr werks labst
      FROM mard
      INTO CORRESPONDING FIELDS OF TABLE i_mard.
    ENDFORM.                    " get_data
    *&      Form  show_smartform
    FORM show_smartform .
      DATA :
        l_sform_name TYPE tdsfname,
        l_fm_name    TYPE rs38l_fnam.
      DATA :
            l_sf_control TYPE ssfctrlop,
            l_sf_options TYPE ssfcompop.
      DATA: i_otf LIKE itcoo OCCURS 100 WITH HEADER LINE.
           i_pdf LIKE tline OCCURS 100 WITH HEADER LINE.
      DATA: op_option TYPE ssfctrlop,
            job_output TYPE ssfcrescl.
    op_option-getotf = 'X'.
      l_sform_name = 'ZVENKAT_SMARTFORM'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = l_sform_name
        IMPORTING
          fm_name            = l_fm_name
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc  0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        CALL FUNCTION l_fm_name
          EXPORTING
            control_parameters = op_option
            output_options     = l_sf_options
            w_emp_info         = w_emp_info
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
       job_output_info            = job_output
          TABLES
            p0006              = p0006
            p0022              = p0022
            p0023              = p0023
            i_mard             = i_mard.
        IF sy-subrc   0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        CALL FUNCTION 'CONVERT_OTF'
          EXPORTING
            format = 'PDF'
          TABLES
            otf    = job_output-otfdata
            lines  = i_pdf.
        IF sy-subrc  0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
        PERFORM send_mai.
      ENDIF.
    ENDFORM.                    " show_smartform
    *&      Form  send_mai
    FORM send_mail .
      "Subject of the mai.
      w_document_data-obj_name  = 'MAI_TO_HEAD'.
      w_document_data-obj_descr = 'Regarding Mai Program by SAP ABAP'.
      "Body of the mai
      PERFORM build_body_of_mai
        USING:space,
              'Hi,',
              'I am fine. How are you? How are you doing ? ',
              'This program has been created to send simple mai',
              'with Subject,Body with Address of the sender. ',
              'Regards,',
              'Venkat.O,',
              'SAP HR Technical Consultant.'.
      "Write Packing List for Body
      DESCRIBE TABLE i_body_msg LINES g_tab_lines.
      w_packing_list-head_start = 1.
      w_packing_list-head_num   = 0.
      w_packing_list-body_start = 1.
      w_packing_list-body_num   = g_tab_lines.
      w_packing_list-doc_type   = 'RAW'.
      APPEND w_packing_list TO i_packing_list.
      CLEAR  w_packing_list.
      "Write Packing List for Attachment
      w_packing_list-transf_bin = 'X'.
      w_packing_list-head_start = 1.
      w_packing_list-head_num   = 1.
      w_packing_list-body_start = 1.
      DESCRIBE TABLE i_attachment LINES w_packing_list-body_num.
      w_packing_list-doc_type   = 'PDF'.
      w_packing_list-obj_descr  = 'PDF Attachment'.
      w_packing_list-obj_name   = 'PDF_ATTACHMENT'.
      w_packing_list-doc_size   = w_packing_list-body_num * 255.
      APPEND w_packing_list TO i_packing_list.
      CLEAR  w_packing_list.
      "Fill the document data and get size of attachment
      w_document_data-obj_langu  = sy-langu.
      READ TABLE i_attachment INTO w_attachment INDEX g_tab_lines.
      w_document_data-doc_size = ( g_tab_lines - 1 ) * 255 + STRLEN( w_attachment ).
      "Receivers List.
      w_receivers-rec_type   = 'U'.      "Internet address
      w_receivers-receiver   = p_mai_id. "here mai Id should be given
      w_receivers-com_type   = 'INT'.
      w_receivers-notif_del  = 'X'.
      w_receivers-notif_ndel = 'X'.
      APPEND w_receivers TO i_receivers .
      CLEAR:w_receivers.
      "Function module to send mai to Recipients
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = w_document_data
          put_in_outbox              = 'X'
          commit_work                = 'X'
        IMPORTING
          sent_to_all                = g_sent_to_all
        TABLES
          packing_list               = i_packing_list
          contents_bin               = i_attachment
          contents_txt               = i_body_msg
          receivers                  = i_receivers
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
      IF sy-subrc = 0 .
        MESSAGE i303(me) WITH 'Mai has been Successfully Sent.'.
      ELSE.
        WAIT UP TO 2 SECONDS.
        "This program starts the SAPconnect send process.
        SUBMIT rsconn01 WITH mode = 'INT'
                        WITH output = 'X'
                        AND RETURN.
      ENDIF.
    ENDFORM.                    " send_mai
    *&      Form  build_body_of_mai
          text
         -->L_MESSAGE  text
    FORM build_body_of_mai  USING l_message.
      w_body_msg = l_message.
      APPEND w_body_msg TO i_body_msg.
      CLEAR  w_body_msg.
    ENDFORM.                    " build_body_of_mai

    Hi,
    Check the code below
    1.converting smartform to PDF
    Summury: Converting the smartfrom to PDF is process of 3 simple steps.
    • Calling the Smart form, then it returns the OTF data in Return.
    • Converting the OTF data into required format using the Function Module CONVERT_OTF_2_PDF.
    • Download the File
    *& Report ZTEST_NREDDY_PDF
    REPORT ZTEST_NREDDY_PDF.
    DATA: it_otf TYPE STANDARD TABLE OF itcoo,
    it_docs TYPE STANDARD TABLE OF docs,
    it_lines TYPE STANDARD TABLE OF tline,
    st_job_output_info TYPE ssfcrescl,
    st_document_output_info TYPE ssfcrespd,
    st_job_output_options TYPE ssfcresop,
    st_output_options TYPE ssfcompop,
    st_control_parameters TYPE ssfctrlop,
    v_len_in TYPE so_obj_len,
    v_language TYPE sflangu VALUE 'E',
    v_e_devtype TYPE rspoptype,
    v_bin_filesize TYPE i,
    v_name TYPE string,
    v_path TYPE string,
    v_fullpath TYPE string,
    v_filter TYPE string,
    v_uact TYPE i,
    v_guiobj TYPE REF TO cl_gui_frontend_services,
    v_filename TYPE string,
    v_fm_name TYPE rs38l_fnam.
    CONSTANTS c_formname TYPE tdsfname VALUE 'ZTEST'.
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
    EXPORTING
    i_language = v_language
    i_application = 'SAPDEFAULT'
    IMPORTING
    e_devtype = v_e_devtype.
    st_output_options-tdprinter = v_e_devtype.
    *st_output_options-tdprinter = 'locl'.
    st_control_parameters-no_dialog = 'X'.
    st_control_parameters-getotf = 'X'.
    .................GET SMARTFORM FUNCTION MODULE NAME.................
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = c_formname
    IMPORTING
    fm_name = v_fm_name
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ...........................CALL SMARTFORM............................
    CALL FUNCTION v_fm_name
    EXPORTING
    control_parameters = st_control_parameters
    output_options = st_output_options
    IMPORTING
    document_output_info = st_document_output_info
    job_output_info = st_job_output_info
    job_output_options = st_job_output_options
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ELSE.
    .........................CONVERT TO OTF TO PDF.......................
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
    IMPORTING
    bin_filesize = v_bin_filesize
    TABLES
    otf = st_job_output_info-otfdata
    doctab_archive = it_docs
    lines = it_lines
    EXCEPTIONS
    err_conv_not_possible = 1
    err_otf_mc_noendmarker = 2
    OTHERS = 3.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ........................GET THE FILE NAME TO STORE....................
    CONCATENATE 'smrt' '.pdf' INTO v_name.
    CREATE OBJECT v_guiobj.
    CALL METHOD v_guiobj->file_save_dialog
    EXPORTING
    default_extension = 'pdf'
    default_file_name = v_name
    file_filter = v_filter
    CHANGING
    filename = v_name
    path = v_path
    fullpath = v_fullpath
    user_action = v_uact.
    IF v_uact = v_guiobj->action_cancel.
    EXIT.
    ENDIF.
    ..................................DOWNLOAD AS FILE....................
    MOVE v_fullpath TO v_filename.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = v_bin_filesize
    filename = v_filename
    filetype = 'BIN'
    TABLES
    data_tab = it_lines
    EXCEPTIONS
    file_write_error = 1
    no_batch = 2
    gui_refuse_filetransfer = 3
    invalid_type = 4
    no_authority = 5
    unknown_error = 6
    header_not_allowed = 7
    separator_not_allowed = 8
    filesize_not_allowed = 9
    header_too_long = 10
    dp_error_create = 11
    dp_error_send = 12
    dp_error_write = 13
    unknown_dp_error = 14
    access_denied = 15
    dp_out_of_memory = 16
    disk_full = 17
    dp_timeout = 18
    file_not_found = 19
    dataprovider_exception = 20
    control_flush_error = 21
    OTHERS = 22.
    IF sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDIF.
    Regards,
    Raj.

  • How can I reduce a fotobook pdf size for online printing

    Hello aperture,
    I have been creating a large customer book (33 x 28 cm) with aperture.
    I'm working with RAW datas and the fotobook has got around 150 pages.
    My online printing office accepts only PDF X3 2002 datas and I can get this with adobe acrobat X Pro.
    I print the book in aperture an save it as an Adobe PDF and than, I can save the datas as a PDF X3:2002. It works perfectly.
    My problem is that the online printing office accepts only 2 GB and my pdf, which I've printed with aperture, has got around 7 GB.
    What can I do in aperture to reduce the pdf size and get a smaller one?
    My aperture settings for Export is: 300 dpi.
    Thanks for you help,
    Best
    Andrea

    Actually in LR4 and Camera Raw 7 in Photoshop CS, you CAN create a downsampled DNG by using the Lossy Compression method of converting to DNG. In the LR 4 Export, select DNG then you have the ability to specify long dimensions or the size in Megapixels. Note, a Lossy DNG isn't un-demosiaced, it's been demosiaced but is still stored in Linear Gamma, so it's like a partially baked file, not a true unbaked raw file.
    Note, in Camera Raw 7 when you set up your save dlog, it's a bit different. You select Lossy DNG and then have a dropdown for size presets...
    Couple of things about the Lossy DNG, you SHOULD name it to distinguish between the downsampled DNG and your original DNG...you don't want to get into the situation where you overwrite your original. Also note that some things won't work totally as expected. For example, sharpening and noise reduction will be working but on a downsampled file. While the numbers will correlate, the actual effects will be a bit different because it's a downsampled file and more prone to potentially over sharpening. It all works, and the controls will work fine if you work at 100% zoom, but don't expect the high resolution your original file had.

  • PDF Size will increase in size dramatically with every submit.

    I have a PDF Form desinged using Adobe LiveCycle Desinger ES2.
    It has a submit button which will submit the form to the server (IIS and ASP.NET) using this javascript command:
    event.target.submitForm( {cURL: "http://server/ASPNETWebPage.ASPX", aPackets:["datasets","pdf"], cSubmitAs: "XDP"});
    On the server, from ASP.NET, I use the following code to extract the submitted "chunk" element and convert it from Base64 to Binary PDF File:
                fs = New System.IO.FileStream(mFormFileNameFolder, IO.FileMode.Create)
                bw = New System.IO.BinaryWriter(fs)
                ' Get chunk element form the submitted XML
                Dim srChunk As New StringReader(mXML.GetElementsByTagName("chunk")(0).InnerXml)
                Do While True
                    Dim theChunkLine As String
                    theChunkLine = srChunk.ReadLine
                    If Not String.IsNullOrEmpty(theChunkLine) Then
                        theReadBytes = theChunkLine.Length
                    Else
                        theReadBytes = 0
                        Exit Do
                    End If
                    Dim theBase64Length = (theReadBytes * 3 / 4)
                    Dim buffer() As Byte
                    buffer = Convert.FromBase64String(theChunkLine)
                    bw.Write(buffer)
                Loop
                bw.Close()
                bw = Nothing
                fs.Close()
                fs = Nothing
    The above code is working fine, and PDF is generted successfully.
    I have one problem.
    With every submit, the generated PDF Size will increase dramatically. I reported this to Adobe Support, and they cofirmed that this is by desing and that with every submit, the previous PDF State is saved, and the new state is added. That is why I get huge PDF File.
    I was told that the only way to solve this problem is to submit the form as PDF ONLY, and after I save the PDF File on a file system, I then must use Adobe Service/Process "exportData" to extract the XML Data from the PDF.
    I think this is really big change to me. I was hoping that there is a way to indentify the latest PDF State from the chunk element.
    Any help will be greatly appreciated.
    Tarek.

    Thanks a lot C. Myers,
    You explanation helped me understand what is happening.
    I have been following the same method for the past 4 years, and I was hit by this problem (OutOfMemoryException) only when some users started using image size more than 500KB. Then, I decided to report this problem.
    I was able to rewrite the code to convert from Base64 to binary using buffering:
    http://forums.asp.net/t/1662571.aspx/1?URGENT+Exception+OutOfMemoryException+thrown+when+w hen+converting+to+String+
    So far, I am not getting OutOfMemoryExceptions, but the PDF Size will continue to grow with every submit. However, if the all the images size is less than 50KB, the increase is not significant.
    Please allow me to ask this question:
    Is there a way to change the above code so that I can extract only the last version of the submitted PDF from the Data Stream "chunk" element ?
    Sooner or later, some one will notice that such PDF sizes are not logical. Even when the PDF does not have images, I have noticed in the past, some PDF Sizes (for Staff Profile Data Collection Form) are something like 15MB !!! I was not able to figure out why. But now I understand. I think the user must have submitted the form for saving many times.
    Now, things are OK. But, I will post back if this problem will fire back.
    Tarek.

  • Reduce pdf size for Livescribe files

    Does anyone have Livescribe for Mac? I am trying to reduce the pdf size of these files once I convert, and having no luck with ColorSync filters.
    Any help would be appreciated!

    When you have those scanned documents in the computer, and choose
    Print> Save as PDF> what size file(s) are generated at the page level?
    This may reduce files size from that of the original scan, since it would be
    using a print alternative to 'save as pdf' instead of printing the file. Since
    the system's Preview application as well as Adobe Reader can open the
    print> save as pdf> files; you can check to see if this makes smaller pdf.
    You could also set the defaults so screen-shot captures are .jpg and then
    check their per-page file size to compare the difference. Perhaps one of
    these methods could result in a way to send a smaller file of the content.
    The .jpegs could be combined in a folder to be sent as a .zip attachment.
    I've used OnyX to change the default screen capture to jpg from png; so
    all screen shots (command shift 4, or 3) will make jpegs automatically.
    There used to be some good freeware tools to change .PDFs, but the
    ones I'd tried some years ago are either extinct or cost real money...
    Good luck & happy computing!

  • I am on a Windows 7 OS attempting to reduce pdf size with my Adobe Acrobat Standard XI & Pro.  The application keeps timing out and  at the Subsetting embedded fonts portion and the application gives "Adobe Acrobat has stopped working" and then closes.  T

    I am on a Windows 7 OS attempting to reduce pdf size with my Adobe Acrobat Standard XI & Pro.  The application keeps timing out and  at the Subsetting embedded fonts portion and the application gives "Adobe Acrobat has stopped working" and then closes.  The document is 275 pages.  Is there something I can do to stop this?

    Hi Ricci,
    Since when are you facing this issue? Did you tried system restore to a date before this problem occured.
    Does acrobat stop working when you open this specific pdf file or with any pdf file that you open?
    Regards,
    Rahul

  • Reducing PDF-size: automatic reduction of datapoints that are used to draw lines in a 2d-axis system within report

    Creating fancy pdf-files for costumers and other purposes is great. However, if the experimental data include many datapoints (>200000) a line-2d-graph ends up in a very big pdf-file. Especially when many pages need to be used.
    Explanation:
    When I use lines to show experimental data in 2d-plots the size of my PDF-file is directly influenced by the number of datapoints used. The more datapoints are used to draw lines within the graph, the bigger the exported PDF-files of the report are.
    It would be great to limit the number of points used to draw a line as it can be done with markers without using the curve transformation option. - Hence, e.g. plotting a line with the help of 200 datapoints is usually as good as showing the same line based on 200000 datapoints but the pdf-size is significantly reduced. You can imagine that when this would be done via the transformation option a long lasting script would be needed for each line to reduce the number of datapoints shown. Hence, the plotting within the report and the actualisation of data would need very long.
     

    Since a while DIAdem optimizes the size of exported PDF-files in a related way as it is suggested here. In principle the PDF-file is exported in a very high resolution, so you can display it in a reader with a very high zoom value (e. g. 6000 %) to look into details of your data. If you have a huge dataset, this could lead in fact to a bigger file size, if data points could be displayed because the high PDF-resolution. But in general, DIAdem only saves information in a PDF-file which is really necessary - but with a high resolution.

  • I want to reduce pdf size up to 5mb for mailing perpose, anybody have any option to reduce it since I have used optimiser & reduce file size option but its not helpfull.

    I want to reduce pdf size up to 5mb for mailing perpose, anybody have any option to reduce it since I have used optimizer & reduce file size option but its not helpful.

    The optimizer can reduce space, but some things can't get smaller. Text for example. Play with the settings, examine the results of Audit Space Usage.
    Or give up. Even 5 MB is too large for a bulk mailing, by far. Instead put it on your web site and mail a link - done!

  • Trimming Designer generated PDF file size.

    I recently had a PDF generated in Acrobat that I downloaded from Adobe. I opened this file in Designer, made no changes, and re-saved the PDF. The file size went from 60k to over 600k. I understand that Designer and Acrobat use two totally different engines for generating PDF's, but what possible explanation is there for the enormous file size difference? Does anyone know of a utility to trim the file size of designer generated PDF's?

    There is another post by Jennifer Manarang who had the same issues and she found her solution. You can take a look at this post to see if it helps.
    http://www.adobeforums.com/cgi-bin/webx?128@@.3bba7a73
    also, posted by Sriniva Surapaneni.
    Srinivas Surapaneni, "increasing the size when unlocking" #, 14 Jul 2005 7:08 pm

  • How to reduce pdf size through c# in winrt app?

    Hi,
        I am creating an app in window 8 which will reduce the pdf size. But I am not getting how I can achieve this task. I searched a lot on google but not getting any suitable answer. I heard that Acrobat has sdk that reduces the pdf size. Can you guide me how I can get that sdk and how can I use it in window 8 app?

    The Acrobat SDK is an interface to Adobe Reader (which cannot reduce file sizes) and to Adobe Acrobat.
    However, neither one can be installed on Windows RT, nor used from a metro app.

  • Reduce PDF size

    How can I reduce the size of my pdf?  The reduce size option is grey out, is there any other way to reduce a large pdf?

    Were the versions split up @ version 6 Bill ? I stand to be corrected if so; but my memory serves that this wasn't until version 7 ...
    Update: You're correct Bill and I stand corrected ! However both versions have the optimzer, yay ! Source via Planet PDF. Apparently it's called "Reduce File Size" in the Standard version.
    Acrobat 6 First Look - PDF Optimizer
    By Richard Crocker
    Both Acrobat Standard and Professional include a menu item (File, Reduce File Size) for reducing the file size of the current document. Professional includes additional new optimization tools.
    Message was edited by: S.D.A.

  • Difference in generated PDF file size between distiller 6.0 and 10.0

    Hi,
    we are currently using Distiller server 6.0.1 on Windows server 2003 to convert PS to PDF, we want to upgrade our operating system to Windows server 2008 R2 but distiller server is not supported on this,
    so we are evaluating Acrobat distiller 10 which comes along with Acrobat pro x but we noticed some slight difference in the generated PDF file size, for the same PS the distiller server 6.0 generated PDF
    file size of 55 KB whereas Acrobat distiller 10 generated PDF file is 53 KB. The output looks same but wondering whether is it safe to continue further with the file size difference, it would be good
    if you could provide some insight into why the file sizes are different between these two versions.
    Thanks,
    Anand

    LiveCycle PDF Generator is the successor to Distiller Server
    Modules | Adobe LiveCycle Enterprise Suite 4

  • Reduce PDF size by flattening InDesign file??

    i have a 68 page catalog design in InDesign. i export as PDF/X-1a:2001 for printing. it comes out as 96MB and the printers site wont accept it. so they are telling me to flatten the images and layers in the PDF. I thought that type of PDF already does flatten everything so im not sure what they are talking about. Another project i worked on the transparencys were not coming through right to the printer, they also asked me to flatten the transparencies. but that i did in photoshop before bringing it into InDesign. This catalog file im on now... there are a ton of images and it wont take forever to flatten every image and re-place in InDesign. is there a better option to reduce the PDF size but still keep high quality for print? Thank you.

    There are several different, and contradictory, meanings of "flatten" so it's on order to ask exactly what kind of flattening they want and what tools to do it with.
    One meaning of "flattening" is to flatten transparency, turning it into images or composite shapes.
    Now
    1. This sort of flattening almost always makes things bigger, not smaller - if there is transparency in the first place.
    2. When you save as PDF/X1-a or PDF/X-3 it will always be flattened; that's the rules.
    3. So the choice of PDF/X-1a forces flattening and often makes files much bigger.
    Do the printer require PDF/X-1a?

  • Reducing .pdf size with InDesign

    Good morning everyone!
    I have downloaded the trial version of InDesign to see if its the right tool to a very specific problem we are having in our engineering office and I have never used InDesign before.
    I need to dramatically reduce the overall file size of multi-page PDFs for underlaying in AutoCAD while retaining the detail from the original.  The PDF files we recevied from our client are rather large and underlaying them "as is" brings AutoCAD to a crawl.  I have been able to shrink the files appropriately in Illustrator but I would have to do it one page at a time to be able to reduce the file size which does not solve our time problem (I have one project in the pipeline that is going to require 200 pages).  JPEG's kind of work which I can do in batches in Illustrator, but AutoCAD does not have automation for underlaying JPEGs.  Keeping the PDF in vector fomat is the ideal solution if we can get the file size down.
    So far I have opened illustrator and tried to run the script for adding a multi-page PDF and what I bring in retains absolutely no detail from the PDF.
    So two questions:
    1) Can/How do I bring in a PDF drawing so it retains the vector detail, and
    2) Can I use Illustrator to shrink down the file size of a multi-page PDF (Adobe pro doesn't bring it down far enough)
    I know this is nowhere near the purpose of InDesign, but its our last avenue to solve our underlay issue in a way where everyone might win.
    Thank you!

    You have to check where is highest amount of space used in the pdf? Are these images or structures you need or you don't need? Is it a profile? Use the audit function in the Acrobat Pro Optimizer dialog.
    When you know which part of the content of the pdf could be dismissed you can set up a properly pdf export setting or use a different export functionality to create pdfs like the export of interactive pdfs which will output smller pdfs.

Maybe you are looking for

  • Customer  Open Item Analysis with Aging

    Hello, Our company currency is INR. Naturally many transactions will be posted with different document currency like USD / HKD etc. Now we would like see the outstanding of the customer with aging where the currency is Not Equal To INR Please suggest

  • Help Required for Denormalization

    Hi Guys , Need help in denormalising table: SQL > DESC SAMPLE Name Null? Type CNO VARCHAR2(10) CTYPE VARCHAR2(1) CED DATE EED DATE STATUS VARCHAR2(2) REASON VARCHAR2(3) CFROM DATE CTO DATE My data looks like this CNO C CED EED ST REA CFROM CTO 123456

  • MaxDB 7.6.05.09 Create db inst fails on 'auto_extend'

    Hello I have loaded MaxDB 7.6.05.09 and DBMGUI 7.6.00.37 (148140) on Windows Server 2003 SP2. I try and create a database instance with the DBMGUI but it fails on 'auto_extend' with return code -24805. Here are the steps I did: Start DBMGUI Use the C

  • QM Notificatiom

    Dear All, In system (QA32 t.code) there is facility to reject the material with Quality notification. I want to know the use of this ud code and when to use and how to configure the settings for use of this code. Thanks in advance Gkude

  • New Mac Pro and now no FLV Export option in FCP

    Hi Folks, I have a new MAc PRo and just loaded final cut studio 2 and flash 8 onto it.. I know have no option in the quicktime conversion setting to export to FLV? Please any help would be huge at this point... Oh.. I loaded After Effects 7 to the ne