Reducing AI file size, without converting to another file type CS6

I designed artwork for a large banner (84" x 32") so my AI artboard is that large. As you can imagine, with all the text and graphics I used, this file size is 22.8 MB. I need to email this art to the printer, but the file size is too large to email. How do i go about reducing the file size in AI so it still maintains large format print resolution? Will saving to a PDF lose the print quality? I'm at a dead end... help!

For a 84" x 32" banner (vinyl, fabric/paper) a small amount of compression should be fine.
I would start out with the high quality setting which gives you compression but at maximum quality 300 dpi.  this should make your 22.8mb file much smaller, (my guess without seeing your art is you have an image in there and will get under 10mb)
If you need a smaller file yet,  go down to 200 dpi (change top 4 values to 200) and max to high quality to make the .pdf even smaller, and for a medium sized banner as you have that would look very good and you would have to look hard to see the difference, at a distance would be unnoticeable.

Similar Messages

  • When I import my Sony video, which is in m2ts format, the file size is a few times larger.  This affects the volume of clips for creating the blu-ray or DVD discs.  How can I squeeze the file size without sacrificing the quality of output?

    When I import my Sony video, which is in m2ts format, the file size is a few times larger.  This affects the volume of clips for creating the blu-ray or DVD discs.  How can I squeeze the file size without sacrificing the quality of output?  Is there any other ways of achieving this?

    wongrayd wrote:
    Thanks.  I do not have the experience on burning discs from iMovie for the movie after editing (ie for video discs players).  It seems that i cannot find the relevant command in the tool bar for this purpsoe.  Would you please show me the way?
    The command is gone because iDVD has been discontinued by Apple. After Apple discontinued iDVD they removed the iDVD burning link from iMovie. I still use iDVD sometimes, only because I have an old copy.
    wongrayd wrote:
    You have mentioned about Handbrake as a converter.  What is the RF no. (under Constant Quality) meant?  It seems that the smaller the no. is, the better quality will be.  What is the optimal no.? or should we use the Average Bitrate? Again, what is the best rate?  Furthermore, which format is more suitable or the best: H264 or mpeg 2/4?
    I don't know what RF means. When I have used HandBrake, I've used presets that apply to what I want to do, so I don't know the meaning of each individual setting. However, it appears that many of them are listed in the HandBrake User's Guide that is linked from the Help menu in the program:
    https://trac.handbrake.fr/wiki/HandBrakeGuide
    wongrayd wrote:
    For iMac, except iMovie, what other software is the best for the amateur?  I have read Photoshop.  Can this support m2ts files and user friendly?
    Photoshop is not amateur-level software, and although it can edit a video, it cannot burn a DVD. Unfortunately, because I still use iMovie, I haven't tried anything else. You might want to read the reviews of various DVD-burning applications in the Mac App Store.
    And maybe another forum member will jump in and help us here!

  • How to decrease PDF file size without losing quality of images and vector lines?

    I have several ai files that I saved as PDFs. Now I'm having problem with the size of this combine files. Can some one assist me with the proper way on decreasing file size without losing quality.
    Thank you.

    I am having the same problem with a different file that's in a different format mentioned above. I'm trying to convert a ".srf" file and turn it into a ".pdf." I was successful doing this but my image, once in a .pdf was also pixilated.
    I thought if I convert my ".srf" file to a ".jpeg" first, then bring this newly created ".jpeg" into a ".pdf," I would have more luck. But unfortunately the free download I got on my computer that's supposed to convert any file to any file, CANNOT convert ".srf" files to ANYTHING!
    Does anyone have any ideas? Or any specific programs I should get?
    Thanks!

  • SQLLDR to load data in Excel file without converting to CSV file

    Hello Guys,
    We are getting data in excel sheet and we need to insert data into oracle table. Is it possible to do with SQLLDR command that too without converting the excel file to csv format.
    If its possible can any one share a pseudo code to do that.
    Your help is well appreciated.
    Thanks in advance

    Is it possible to do with SQLLDR command that too without converting the excel file to csv format
    SQL*Loader does not know how to process the microsoft proprietary binary format of Excel files.  If you really want to use SQL*Loader then the data will have to be exported from Excel to a format that SQL*Loader can use, such as CSV... otherwise, don't use SQL*Loader (see the FAQ I posted already)

  • How to get the file size (in bytes) for all files in a directory?

    How to get the file size (in bytes) for all files in a directory?
    The following code does not work. isFile() does NOT recognize files as files but only as directories. Why?
    Furthermore the size is not retrieved correctly.
    How do I have to code it otherwise? Is there a way of not converting f-to-string-to-File again but iterate over all file objects instead?
    Thank you
    Peter
    java.io.File f = new java.io.File("D:/todo/");
    files = f.list();
    for (int i = 0; i < files.length; i++) {
    System.out.println("fn=" + files);
    if (new File(files[i]).isFile())
         System.out.println("file[" + i + "]=" + files[i] + " size=" + (new File(files[i])).length() ); }

    pstein wrote:
    ...The following code does not work. Work?! It does not even compile! Please consider posting code in the form of an SSCCE in future.
    Here is an SSCCE.
    import java.io.File;
    class ListFiles {
        public static void main(String[] args) {
            java.io.File f = new java.io.File("/media/disk");
            // provides only the file names, not the path/name!
            //String[] files = f.list();
            File[] files = f.listFiles();
            for (int i = 0; i < files.length; i++) {
                System.out.println("fn=" + files);
    if (files[i].isFile()) {
    System.out.println(
    "file[" +
    i +
    "]=" +
    files[i] +
    " size=" +
    (files[i]).length() );
    }Edit 1:
    Also, in future, when posting code, code snippets, HTML/XML or input/output, please use the code tags to retain the indentation and formatting.   To do that, select the code and click the CODE button seen on the Plain Text tab of the message posting form.  It took me longer to clean up that code and turn it into an SSCCE, than it took to +solve the problem.+
    Edited by: AndrewThompson64 on Jul 21, 2009 8:47 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • While saving a file, I have converted all my files to Pdf.  The only way to restore previous is to delete Adobe.  Does anyone have a soution?

    While saving a file, I have converted all my files to Pdf.  This made everything inaccessible, even Explorer.  I had to delete Adobe to get back to some of the previous files.  I tried to restore system to previous, but I kept getting a pop up message that said I did not have enough shadow space.  Does anyone have a solution?  Greatly appreciate your help.

    Application, file icons change to Acrobat/Reader icon

  • After I connected my hard disk to a friend's windows system all my files have been converted to .ink files and do not open....what do i do? They had important content

    after connecting my hard disk to a windows laptop all my files have somehow converted to .ink files and are not accessible.....what do i do?

    What do you mean by "all files", surely only one category of files got their default open program changed.
    Choose the affected files, right click on an individual file, and "open with",...change to default program.
    For a group, right click > show info > open with > change ALL
    If more than one group of files has had its default opening program changed, a time machine roll-back would be the easy option. Do you have a TM backup?

  • Which Version of Adobe do I need to be able to "extract" a page from a existing  file and save/download to another file?

    Which Version of Adobe do I need to be able to "extract" a page from a existing  file and save/download to another file?

    Acrobat Pro or Standard.

  • Get Total DB size , Total DB free space , Total Data & Log File Sizes and Total Data & Log File free Sizes from a list of server

    how to get SQL server Total DB size , Total DB free space , Total Data  & Log File Sizes and Total Data  & Log File free Sizes from a list of server 

    Hi Shivanq,
    To get a list of databases, their sizes and the space available in each on the local SQL instance.
    dir SQLSERVER:\SQL\localhost\default\databases | Select Name, Size, SpaceAvailable | ft -auto
    This article is also helpful for you to get DB and Log File size information:
    Checking Database Space With PowerShell
    I hope this helps.

  • Reducing file size without loosing clarity

    I have two designs for labels that have to be approved by the government for type size regulations.  The current size of the illustrator files are 133.3 MB and 24.7 MB I need to provide these at no larger than 450 kb AND the type must be readable and measurable for approval.
    I have tried everything I can think of to provide the artwork small enough yet still retaining enough resolution to not make the type fuzzy and not able to be measured for size.  I've tried making the files from within illustrator, I've tried taking everything into Photoshop to make the JPEGS with no luck.  They want either a gif, jpeg or tiff no larger than 450 kb that is viewable at the print size of the label with no loss of resolution... Does anyone have any suggestions on how to create these?
    Thanks in advance,
    Nina

    Photos, type gradients, complex paths, etc... and yes I know if they would just accept PDF files it would be no problem, but this is the Federal Government.  Do they ever do anything the easiest way.
    I think I figured out a way to get these down in size without lossing too much... I took the background with all the complex paths and I made a separate JPEG put that back into an illustrator file, placed the type over it and made an RGB JPEG out of illustrator...used the type hinting and a low setting.  Got it down to 425 kb and well the type looks pretty darn good.  I hope this works because I've done this well over a dozen times and they've all been rejected.  This is the info the agency sent regarding it being rejected:
    "Per Industry Circular 2011-4, your application and label(s) have not been reviewed for type size, characters per inch or contrasting background. The responsible industry member must continue to ensure that the mandatory information on the actual labels is displayed in the correct type size, number of characters per inch, and on a contrasting background in accordance with the TTB labeling regulations, 27 CFR parts 4, 5, 7, and 16, as applicable."
    "One or more of your label images appear too small for the proper evaluation of your label(s). When the dimensions you specify are applied to the label, the system renders your label as a blurred image. Please remove the current image(s) and replace it with new, larger image(s). We advise that, when you develop your label images, the compression ratio should be set at MEDIUM or LOW so that the file is still within the file size limit of 450KB"
    Thanks for your comment!

  • Reducing file size in batch processes (multiple files)

    I am now using a canon XTi 10.5 megapixel camera. I'm loving it, taking tons and pics, and see my memory on my computer shrinking rapidly. I'm not too worried about hard drive space as I can simply buy another hard drive. Where I'm running into problems is on my iPod. I have an 80gb video iPod. It is suddenly full, Almost 1/2 with audio, 1/2 with photos. I'm realizing that I need take the 5-7 megabyte files each (photos) in iPhoto and reduce them down a bit in dimensions and/or jpeg compression.
    I use photoshop elements and am familiar with the multiple files option. I've used that a bit, nice feature.
    Heres my question:
    I know iPhoto is sensitive to manipulation of photos/changes if the changes aren't done through its interface. How can I go about taking the original pics for a number of events (talking about perhaps 2000 pics right now) and batch process them down in size a bit without weirding out iPhoto?
    Does iPhoto have an option to batch change files in such a fashion? Is it as simple as finding the originals in the finder and simpy reducing them in size and making iPhoto update its thumbnails?
    and how do I make iPhoto update its thumbnails, I forget...
    Thanks

    If you just want displayable image files on the iPod and not the full sized files then a very good solution, IMO, is to export those photos you want on the iPod to a folder on the Desktop. Then use Resize! to batch change the pixel dimension and the jpg compression level of the files. For my iPod Nano I use 640 x 480 and have Resize! compress them to medium. That gives me files in the 100 KB size range. If you want a smaller file just increase the compressions level a bit. Resize! automatically creates a new folder for the resized images so you can try different levels on the same folder. You can get a lot of photos on your iPod at that size. I then put that folder of resized files in my Pictures folder and have iTunes use it instead of using iPhoto.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • How can I reduce the file size of my .cp project file?

    I am working in CP3 and creating training programs via computer simulations.  Generally I try to eliminate any unnecessary animation in my slide (use of scroll bars, drop down menus etc.) because these seemed to increase my file size.  I do have audio narration on almost every slide and I know that this helps to bump up my size.
    Here's what I found to be so odd.
    I have to create a new training module and I simply opened one of my .CP projects and did a SAVE AS with a new file name.  I reduced the number of slides from 25 to 3.  The three slides I kept are the title slide, closing slide and one slide that I'll call a content slide that has the color for my highlight boxes and text formatting.  (I keep the content slide so I can simply copy and paste the boxes as I need them.)  I removed all the audio.  Finally I saved the new project.  Imagine my surprise when the new file is 96,333 KB with only 3 slides, no audio and no animation.  This is almost the same size as the original file.  I published my 3-slide project, thinking it might change the size, but that was wishful thinking.
    I telelcommute from my home and I am required to check these files out of a secured document library each time I need to update them.  The upload time is KILLING ME!
    What am I doing wrong?  The Information section shows the file size as 783.9KB which seems more in line with what I would expect.
    Any help, as always is appreciated.

    Hi BIMB,
    Here's my guess, others can correct if I'm way off.
    What you see as the file size under the Cp4 Storyboard View Information is what the published file size would be sans any unused pics, audio, or swfs. So it should be relatively small given you only have 3 slides in your project.
    What you see as the 'save as' version reflects all of the pics, audio, and/or .swfs you still have in your project's library.
    Now if you've actually removed the audio files and pics from the Cp Library, then I'm not sure.
    Curious to know if this helps,
    Keith

  • 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.

  • File Size TOO LARGE with linked files

    Recently, I am working with illustrator CS6.
    After inserting quite a lot of linked images (without embadding), the file size becomes much larger, up too nearly 400MB.
    I saved without pfd competatble funcion already, but the file size is sill verry large
    I did not face the same problem working with CS5 before, is that a bug for CS6?
    or are there any suggested ways to solve?
    THANKS

    Are you "Placing" the image files or are you copying and pasting the files as so-called smart objects where they come in on their own layer?  See if you can flatten the file.  Another option is build the images in Photoshop and bring them in as one image.

  • Is there a Maximum file size limit when combining pdf files

    I am trying to combine files 8 PDF files created with i Explore using Acrobat XI Standard, the process is completed but when opening the file not all 8 individual files have been combined only the first two have been combined, the process shows all eight being read and combined.
    I can open and view each of the original 8 individual files and read the content without any issue, the largest of the eight files is 15,559kb and the smallest is 9,435kb
    if anyone can assist that would be most appreciated

    Hi Tayls450,
    This should not have happened as there is no maximum file size limit when combining PDFs.
    Please let me know if there are some password protected PDFs also?
    Also, I would suggest you to choose 'Repair Acrobat Installation' option from the Help menu.
    Regards,
    Anubha

Maybe you are looking for