How to reduce the size of the InDesign file?

I need to reduce the size of the InDesign file without disturbing the properties of output as the option exists in Acrobat "Reduce file size", pl. help.

Thank you

ArcRaj

A simple "save under" erases all information cancellation that could have been implemented over time.

If you * really positive * want to clean up your file something suspicious, export to INX (or, using CS4 to IDML) and opens. Save a copy of your original file somewhere else first, because this isn't a 100% free error warranty procedure.

If your file size is always beyond a reasonable limit: you have all images incorporated, rather than as a link? (Just don't do it.)

You have pictures with a very small (72 dpi) "ppi" real and a high (300 dpi) "effective ppi"? Who can make the images of very large preview - and they * are * included in your file ID.

Tags: InDesign

Similar Questions

  • How to export the indesign file to coreldraw

    Hi all

    I had created a brochure that would be printed to a professional printer. There, they use Indesign. Instead, they use Corel Draw.

    How to export the indesign file created in corel draw.

    and printing

    @Dov, sorry. But there are places on Earth where the upgrade to a more modern workflow just will not happen either by choice, or more often, because of the money. I've dealt with a few printers to India use CD (beautiful dig to Corel, btw) or Illy. Just like that.

    @srikanth977, all printers I treated using an older workflow and equipment that use CD or Illy for output agreed a PDF file. In addition, each of them wanted to PDFX-1A a PDF file without crop marks, bars of color, etc.. So check with your printer. They then add these features when they print.

    Best regards, Mike

  • How to get the indesign files subfolder

    Hi experts

    How can I tell the script what I get is the subfolders but not sub sub folder or sub sub sub... folder files.

    my script like this:

    function GetFiles (theFolder) {}
    var = [] files,
    fileList = theFolder.getFiles (),
    i, file;

    for (i = 0; i < fileList.length; i ++) {}
    file = list of files [i];
    If {(instanceof file folder)
    files = files.concat (GetFiles (file));
    }
    ElseIf (file instanceof file & & file.name.match(/\.indd$/i)) {}
    files.push (file);
    }
    }

    return files;
    }

    How can it change?

    Thank you

    Respect of

    John

    Hi John,.

    Try this code...

    The Final PDF files stored in the desktop / folder PDF

    //======================================================================================
    var gScriptName = "Batch export INDD-files to PDF"; // Name of the script
    var gScriptVersion = "1.0"; // Version
    var gSet = GetSettings();
    var flag=0,files = [];
    var fileLs=[];
    CreateDialog();
    //===================================== FUNCTIONS  ======================================
    function CreateDialog() {
    var pdfPresetsList =app.pdfExportPresets.everyItem().name;
    var win = new Window("dialog", gScriptName + " - " + gScriptVersion);
    win.p = win.add("panel", undefined, "");
    win.p.alignChildren = "right";
    win.p.alignment = "fill";
    
    win.p.g = win.p.add("group");
    win.p.g.st = win.p.g.add("statictext", undefined, "PDF-presets:");
    win.p.g.ddl = win.p.g.add("dropdownlist", undefined, pdfPresetsList);
    win.p.g.ddl.selection = gSet.selectedPdfPresetIndex;
    win.p.g.ddl.preferredSize.width = 220;
    win.buttons = win.add("group");
    win.buttons.orientation = "row";
    win.buttons.alignment = "center";
    win.buttons.ok = win.buttons.add("button", undefined, "OK", {name:"ok" });
    win.buttons.cancel = win.buttons.add("button", undefined, "Cancel", {name:"cancel"});
    var showDialog = win.show();
    if (showDialog == 1) {
      gSet.selectedPdfPresetIndex = win.p.g.ddl.selection.index;
      app.insertLabel("Kas_" + gScriptName + gScriptVersion, gSet.toSource());
      Main();
    }
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function Main() {
    var folder = Folder.selectDialog("Select a folder with InDesign files to export");
    if (folder == null) exit();
    var files = GetFiles(folder);
    var pdfFolder = new Folder(Folder.desktop+ "/" + "PDF");
    if (files.length == 0) {
      alert("No files to open.", gScriptName + " - " + gScriptVersion);
      exit();
    }
    if(!pdfFolder.exists)pdfFolder.create();
    //VerifyFolder(pdfFolder);
    var pdfPresets =app.pdfExportPresets.everyItem().getElements();
    var selectedPdfPreset = pdfPresets[gSet.selectedPdfPresetIndex];
    var count = 1;
    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.INTERACT_WITH_ALL;
    // Progress bar -----------------------------------------------------------------------------------
    var progressWin = new Window ("window", gScriptName + " - " + gScriptVersion);
    var progressBar = progressWin.add ("progressbar", [12, 12, 350, 24], 0, files.length);
    var progressTxt = progressWin.add("statictext", undefined, "Starting exporting files");
    progressTxt.bounds = [0, 0, 340, 20];
    progressTxt.alignment = "left";
    progressWin.show();
    // Progress bar -----------------------------------------------------------------------------------
    for (var i = 0; i < files.length; i++) {
      var currentFile = files[i];
    
      try {
       var doc = app.open(currentFile, false);
       var docName = doc.name;
       // Progress bar -----------------------------------------------------------------------------------
       progressBar.value = count;
       progressTxt.text = String("Exporting file - " + docName + " (" + count + " of " + files.length + ")");
       // Progress bar -----------------------------------------------------------------------------------
       var file = new File(pdfFolder + "/" + GetFileName(docName) + ".pdf");
       if (file.exists) {
        var increment = 1;
        while (file.exists) {
         file = new File(pdfFolder + "/" + GetFileName(docName) + "(" + increment++ + ").pdf");
        }
       }
    
       doc.exportFile(ExportFormat.pdfType, file, false, selectedPdfPreset);
       doc.close(SaveOptions.NO);
       count++;
      }
      catch(e) {}
    }
    // Progress bar -----------------------------------------------------------------------------------
    progressWin.close();
    // Progress bar -----------------------------------------------------------------------------------
    alert("Done.", gScriptName + " - " + gScriptVersion);
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function VerifyFolder(folder) {
    if (!folder.exists) {
      var folder = new Folder(folder.absoluteURI);
      var array1 = new Array();
      while (!folder.exists) {
       array1.push(folder);
       folder = new Folder(folder.path);
      }
      var array2 = new Array();
      while (array1.length > 0) {
       folder = array1.pop();
       if (folder.create()) {
        array2.push(folder);
       } else {
        while (array2.length > 0) {
         array2.pop.remove();
        }
        throw "Folder creation failed";
       }
      }
    }
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function GetFiles(theFolder) {
        var file,filesub;
            fileList = theFolder.getFiles();
        for (i = 0; i < fileList.length; i++) {
            file = fileList[i];
            if(file.name==".DS_Store") continue;
            if (file instanceof Folder) {
              fileLs = file.getFiles();
              alert(fileLs.length);
                for (j = 0; j < fileLs.length; j++) {
                    filesub = fileLs[j];
                    if (filesub instanceof File && filesub.name.match(/\.indd$/i)) {
                       files.push(filesub);
                    }
                }
            }
          else if (file instanceof File && file.name.match(/\.indd$/i)) {
           files.push(file);
          }
        }
        return files;
        }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function GetFileName(fileName) {
    var string = "";
    var result = fileName.lastIndexOf(".");
    if (result == -1) {
      string = fileName;
    }
    else {
      string = fileName.substr(0, result);
    }
    return string;
    }
    //---------------------------------------------------------------------------------------- ----------------------------------------------------------------
    function GetSettings() {
    var set = eval(app.extractLabel("Kas_" + gScriptName + gScriptVersion));
    if (set == undefined) {
      set = { selectedPdfPresetIndex : 0 };
    }
    return set;
    }
    
  • How to reduce the size of the records Quicktime file?

    On my Mac, they take as much space as 1 GB for a film record or a screen for 2 minutes.

    iPad records take up much less space and are of a higher quality.

    Anyone know how to reduce the size of the file, or at least tell me why they use so much space? I have only 128 GB.

    A big thank you to you all, good people.

    I don't see that you can export out of other than QT. MOV

    but you can use an external converter

    While it is mainly used to convert video files to DVD it will also convert video files.

    https://handbrake.fr

  • Can anyone suggest how to reduce the size of the text

    Can anyone suggest how to reduce the size of the text here, and most of the other programs

    used? I'd be happy if someone could tell me how. I looked everywhere, but

    no luck!

    Best regards, Reltsen

    Hello

    Where exactly you want to reduce the text (browser, Explorer or on any application)?

    If you try to do it on a web browser like Internet Explorer see the link for the procedure.

    You can also check this link

    Thank you.

  • How to reduce the size of the text only 500 CV Ko asked

    original title: word format

    How to reduce the size of the text only 500 CV Ko asked

    This is a forum for Windows Vista - so I assume you are using WordPad or Notepad?  What is an email that you put together without attachments?

    Type less.  More abbreviate.  Choose the unnecessary parts.

    If you have a single given pure text document you posted and assumptions that must be made because of that-, then these are your choices.

    If you have a version of some processing (such as Microsoft Office Word 2000, XP, 2003, 2007, or 2010) and this is what you are asking about - everything will depend on the version of Word that you have, etc.-, but the General advice above remains true with the addition of "stay away from fancy formatting.

  • How to reduce the size of the file CPTX in 8 Captivate?

    Hi all

    How to reduce the file size of my .cptx in captivate 8? It is the size of the cptx 380MB file, but what I have inside are only a few images to start a new module.

    I deleted all unused items in the library and I have only 4 slides with some images in each slide. No interaction and audio included still not even in my master slide.

    Please help me. Thank you.

    Pak-choi

    Copy a new project and test slides.

    Anthony

  • How to reduce the size of the file for documents

    How to reduce the size of the file for documents

    The full version of Acrobat can do (not for free Acrobat Reader) for the pdf files.

    Please give us some info like what type of file you are talking about and software that you have at least.

  • PDF file is too big (7MB). Need a pdf with max file size 4 MB. How to reduce the size of a pdf file?

    PDF file is too big (7MB). Need a pdf with max file size 4 MB. How to reduce the size of a pdf file?

    Try optimizing PDF of Acrobat Pro.

  • How to reduce the size of the jpg file, not the size of pixel?

    I prepare images for the web and I really have 2 questions: one on gifs and the other on the jpg files.
    My standard procedure is to reduce the image to the desired at 600 dpi pixel dimensions
    It gives me a little crisp image. can I use this what if the file size is quite low (I try for less than 600 KB) or convert to gif with the save for Web and devices.

    Here are my 2 questions (I'll count this solved with each answer)

    (1) when I convert a gif that I have 4 boxes: one with the original size, the other 3 with options but, often, the options are too low resolution for me how can I change my 3 options starting with a higher res gif?

    (2) if I try to reduce the size of the jpg in the image size box I put the lower resolution (400, 300), which reduces the pixel dimensions and the size of the file, but I don't want to change the pixel dimensions. If I reset the dimensions in pixels to the size I want, even if it is a lower resolution that the file size does not change. How to reduce the size of the jpg file using only the resolution, the pixel dimensions not?  PS I tried to play with the checking and unchecking the 3 small boxes (scale of styles, constrain the proportions and re - sample) but nothing has worked.

    GIF is not a type of large file, especially if you want a sharp image. What are the dimensions of the pixel?

    For the web, it is immaterial that the dpi is, only the last pixel dimensions, so once you have that you want to use 'save for Web and devices' and you can reduce quality - 100% being the maximum and 0% being the lowest. I wouldn't save anything less than 55%. For an image of 600 KB, the size must be large enough.

  • How to reduce the size of the request

    Hi all

    Can anyone suggest me how to reduce the size of the query.



    / * In format on 12/07/2011 11:02 (trainer more v4.8.8) * /.
    SELECT prs.pa_rqst_srvc_sid,
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5031'
    AND ped.aaa_segment_loop_nmbr = "2000F") revenue_iid,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5013'
    AND ped.aaa_segment_loop_nmbr = "2000F") x12_code_list_qlfr_lkpcd,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5026'
    AND ped.aaa_segment_loop_nmbr = "2000F") procedure_iid,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5027'
    AND ped.aaa_segment_loop_nmbr = "2000F") mdfr_code,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5028'
    AND ped.aaa_segment_loop_nmbr = "2000F") mdfr2_code,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5029'
    AND ped.aaa_segment_loop_nmbr = "2000F") mdfr3_code,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5030'
    AND ped.aaa_segment_loop_nmbr = "2000F") mdfr4_code,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5014'
    AND ped.aaa_segment_loop_nmbr = "2000F") rqst_prcdr_amt,.
    (SELECT prpre.erroneous_data_value
    OF pa_error EP,.
    pa_error_detail ped,
    pa_request_procedure_run_error prpre
    WHERE pe.pa_error_sid = ped.pa_error_sid
    AND ped.pa_error_sid = prpre.pa_error_sid
    AND ped.oprtnl_flag = 'A '.
    AND prpre.oprtnl_flag = 'A '.
    AND prpre.pa_rqst_prcdr_sid = prp.pa_rqst_prcdr_sid
    AND pe.pa_error_nmbr = '5015'
    AND ped.aaa_segment_loop_nmbr = "2000F") srvc_line_rate,.
    "NA" drug_desc, product_service_id "NA", "NA" uom_code,.
    "NA" rqst_prcdr_units
    IN ptr pa_transaction_request.
    input_acknwldgmnt AI,
    input_batch_file ibf,
    PR pa_request,
    PRS pa_request_service,
    pa_request_procedure prp
    WHERE ptr.input_acknwldgmnt_sid = ia.input_acknwldgmnt_sid
    AND ia.input_batch_file_sid = ibf.input_batch_file_sid
    AND ptr.pa_trnsctn_rqst_sid = pr.pa_trnsctn_rqst_sid
    AND pr.pa_rqst_sid = prs.pa_rqst_sid
    AND prs.pa_rqst_srvc_sid = prp.pa_rqst_srvc_sid
    AND pr.oprtnl_flag = 'A '.
    AND prs.oprtnl_flag = 'A '.
    AND ptr.oprtnl_flag = 'A '.
    AND prp.oprtnl_flag = 'A '.
    AND prs.rqst_ctgry_lkpcd = 'AR '.
    AND ibf.original_file_name = 'HIPAA.165760000.20110613I001.278_IRej.dat ';


    Thank you
    Prakash P

    OK, I guess it's the 2 typos I just corrected (see previous posts)

  • How to reduce the amount of storage to free up more space

    How to reduce the amount of storage to free up more space

    There are several things you could do.

    Save your iPad to iTunes on a computer or create an iCloud account, find out how much storage space you need for data and if you need to buy storage space monthly, to do. Then save your iPad to iCloud.

    HOWEVER the data backup on your iPad using WiFi or Bluetooth wireless, local devices such as portable hard drives or small flash memory drives designed for use with mobile devices, like the iPad.

    Remove the applications that you use is no longer. If you start to use them in the future, you can re-download them the iOS App Store.

    Thin out / remove the amount of music and movies you have on your iPad.

    If you make a backup of your iPad, you can thin out / delete all images stored in the iOS App Photos.

    Thin out / remove all books electronic, iBooks, eMagazines, and PDF documents, you have stored on your iPad. Magazines and e-books can be redownloaded at a later date.

  • How to reduce the brightness of the screen under the standard level

    Hello!

    How to reduce the brightness of the screen under the standard level in ThinkPad T520?

    I think we can somehow, but I don't know how. I reduced the brightness to zero with the Fn button + button end, but this is not enough, I want to make the screen darker, because my eyes get tired.

    The last (from Lenovo) Intel graphics driver is here:
    http://support.Lenovo.com/us/en/downloads/MIGR-77038

    This should provide a decent lower limit on the brightness. If the installation complains about the non supported hardware, force the installation using the devices and Disk Manager. (Something like this: http://forums.laptopvideo2go.com/topic/11997-have-disk-method-for-windows-7-vista/ )

    If this does not work, try f.lux (https://justgetflux.com/). It has a dimming function software (of course, he loses the contrast).

  • How to reduce the coverage area

    Hello

    We have our office in a campus IT several floors with other businesses in the area. We plan to go wireless in the whole of the Office (full 1 floor). Can we do anything to reduce the signal from outside the offices in order to avoid the attacks/hacks? We use 1240AP.

    Outside the use of security, I want o know how to reduce the coverage area... the parameters of power etc.?

    Thank you

    There are a few things that can help.

    Placement of the AP, down the power, by cutting basic-rate further down to shrink the cell, using directional antennas to better focus the signal and the deployment of obstacles that affect signals (sheet Tin, plants, people, etc.).

    It will take some creativity, planning and measurement

  • How to reduce the height of a table which is with PanelCollection and pc will find panelbox and pb is panelgridlayout and pgl is at the center of tableFirstTemplate?

    Mr President.

    How to reduce the height of a table which is with PanelCollection and pc will find panelbox and pb is panelgridlayout and pgl is at the center of tableFirstTemplate?

    Concerning

    Normally at the height of the table control you need property autoheightRows -1 and then set height in the table like this inlinestyle

    height: 300px;

Maybe you are looking for

  • Need help to organize music

    Hi all I just build my first PC, after my last laptop was stolen. The thing is I need a good way to organize my music collection now and I have a problem with that. I'm a DJ so I have two computers, one is my office where I listen to music every day

  • Why do I get error-200525 in DAQmxReadDigitalXX

    I have a hard time to figure out why I get this runtime error, so I ask for help. Here is the code Line reserve DAQ DIGITAL INPUT 23-31char chanP1TestIn [] = ' dev1/port0 / line30:31 ";        30: test, 31:retest ........ Digital inputs.DAQmxErrChk (

  • How to create own IDE for LABVIEW (such as vision builder)

    Hi all My pretty funny question, I know that. I like to create Labview Application IDE like Vision Builder. How to do this?

  • I would like to reinstall Windows XP from my reinstall drive

    I had a few rogue malware on my machine that I managed to take off with the help of the other members.  My system is 4 years old and I think it would be really beneficial to have reinstalled Windows.  I have the disc that came with my system, but are

  • Horizontal size of the taskbar button is TOO SMALL! (possibly a programmer for this one)

    This is a revised repost. I downloaded a program called Styler which changes the appearance to look like Windows 7 or Royal themes. It worked fine for the first days, until that day when my laptop could not start after hibernation, so I hard-rebooted