Reducing image file size ???

i dont this accidentally and dont know how to do it again, i think it invloves iphoto/preview and exporting or saving as.....
basically i have a batch of digi cam pics averaging at 3mb and want to reduce to like 150kb each like ive managed to do unintentionally before
dont want to export in iphoto or create workflow where you have to specify pixel size ratios because i dont want them to be limited size-wise, just want to do it the way i did before, mac done most of the work
if anyone knows what i mean or has an alternative solution, it would be much appreciated, thanks

dont want to export in iphoto or create workflow where you have to specify pixel size ratios because i dont want them to be limited size-wise, just want to do it the way i did before, mac done most of the work
But you don't know how you did that and there's no way anyone else can know either. I suspect that you've accessed the files in the DATA folder of the iPhoto Library Folder - these are the thumbnails that iPhoto creates and uses for display.
It is strongly advised that you do not move, change or in anyway alter things in the iPhoto Library Folder as this can cause the application to fail and even lead to data loss
Regards
TD

Similar Messages

  • How to reduce image file size in spreadsheet

    I have created a spreadsheet that contains cells with small amounts of text, and images that I brought in from the Media Browser from iPhoto. This has caused the file size to become HUGE, on the order of 234 MB. Saving it as a pdf only reduces it to 220 MB.
    I have tried the Format>Image>Reduce Image File Size, as well as File>Reduce File Size, but in both cases, those options are grayed out.
    What am I doing wrong? All I really want is thumbnail versions of my image files.
    I don't understand what the Reduce Image File Size command would be used for, if it doesn't work for this?

    When you insert a picture in a cell, it's used as a background.
    To do that, the app keep it in a size allowing it to accomodate the larger cell size permitted.
    If you want to get small images matching the cell size which you use, you must reduce the picture by yourself before inserting it. For instance, cells are often 72 * 16 pixels ones so you may reduce your pictures so that thir width become 72 pixels.
    Of course, if the user enlarge the cell, the picture will become highly pixelated.
    Look at this example.
    In B4 is the original : 202 x 177 pixels
    In C3 is the reduced one : 72 x 63
    in B2 is the reduced one in a 202 x 177 pixels cell. It's awfully pixelized
    We must arbitrate between size and quality.
    Yvan KOENIG (VALLAURIS, France) samedi 10 septembre 2011 16:50:24
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • What is image dpi after "Reduce Image File Size"

    Does anyone know the resulting image dpi after using the "Reduce Image File Size" command in pages? My mother is trying to prepare some things for pre-press, and can't send her document to the printing press, because the pages docs are friggin huge! I'm trying to give her the easiest option for resizing all of the many images in the document, but don't know if this is a viable option if the end product needs to be printed. I need the output to be at least 300dpi.

    As fruhulda wrote, asking Pages to apply changes to the pictures isn't the good path.
    In fact, it's a perfect way to get a fat file.
    My practice is :
    Prepare the document in Pages to define the wanted size of every embedded pictures.
    Edit the picture files in a tool dedicated to this task so that the resulting files will be 300 dpis ones for the wanted sizes.
    Then, replace the original pictures by the definitive ones.
    In most cases, the file will be lighter than the original one and you will have the 300 dpis resolution (except if you apply shadows but it's an other story).
    Yvan KOENIG (VALLAURIS, France) lundi 20 décembre 2010 19:36:56

  • Using Pages with iOS. How do I reduce image file size when I create a document with embedded images?

    Hi,
    I have created an annual family news letter in Pages on my iPad which incorporates pictures of events, holidays, occasions etc etc. I've then gone to covert it to pdf with the intention of sharing it via email but get a warning message about the resulting file size (in this case 16Mb).
    Is there any way of reducing the file size - which is obviously being driven by the images?  The pics are being pulled in from the iPad photo library.
    Thanks Mike

    (1) you are asking about Pages for iOS in a forum dedicated to Pages for OSX.
    Most of us aren't using Pages for iOS so it would be more efficient to ask in the forum dedicated to iWork for iOS (at this time this discussion area isn't divided in three areas).
    https://discussions.apple.com/community/app_store/iwork_for_ios
    (2) As you understood why your file is huge, the answer is simple : reduce the size of your picture files before inserting them in Pages documents.
    Drop the unneeded areas, reduce the resolution in tools dedicated to image processing before inserting them.
    Yvan KOENIG (VALLAURIS, France) mercredi 21 décembre 2011 18:32:19
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Reducing image file size for web use without pixelation

    Can anyone help me figure out how to best reduce images for fast web loading (in slideshows in Muse). I have done the save for web in PS and they are super pixelated now. The only versions that do not lose quality are the original size and they are huge files. Any help is appreciated.
    Also can anyone tell me how big each image should be, what is considered a too big size (kb) for web images? Thanks Hillary

    The settings I used were in the save for web panel and I saved the image as "medium" and the quality was 30, optimized was checked and it was scaled down to 16kb instead of 700kb. Is there a guideline as to how large in kb an image should be for good loading, it seems like with faster internet speeds we can go a bit larger for asset size. Is it OK to have an image as 65 kb if it is quite large (8 inched wide)?
    I think I solved the problem. I just went in and saved the images as larger quality. I hope it does not slow things down too much. Any advice would help.

  • ** Reduce jpg file size...returns black image

    Hey Guys,
    I have this function to reduce the image file size.
    It works but returns a black image when I view it.
    This code is what I have found on other boards...I just can't seem to get it to work..
    Any ideals??
    Phil
    ======================================
                     try
                         FileInputStream inFile = new FileInputStream(imagePathName);
                         ImageIcon imageIcon = new ImageIcon(imagePathName);                    
                         Image image = imageIcon.getImage();                    
                         int height = image.getHeight(null);
                         int width  = image.getWidth(null);                    
                         if(height > MAX_HEIGHT || width > MAX_WIDTH)
                             //See which one was over the most by percentage
                             float widthOver  = (float)(height - MAX_HEIGHT) / (float)MAX_HEIGHT;
                             float heightOver = (float)(width - MAX_WIDTH) / (float)MAX_WIDTH;         
                             int newWidth;
                             int newHeight;                        
                             if(widthOver > heightOver)
                                 float ratio = (float)MAX_HEIGHT / (float)height;                            
                                 newWidth = (int)(width * ratio);         
                                 newHeight = MAX_HEIGHT;
                             else
                                 float ratio = (float)MAX_HEIGHT / (float)height;                            
                                 newWidth = (int)(width * ratio);         
                                 newHeight = MAX_HEIGHT;
                             System.out.println("Original size was: width = " + width + "  height = " + height);
                             System.out.println("New size is: width = " + newWidth + "  height = " + newHeight);                        
                             System.out.println("Phil -- New size is: width ---> " + newWidth + "  height ----> " + newHeight);                 
                             Image newImage = image.getScaledInstance(newWidth, newHeight, Image.SCALE_SMOOTH);
                             //============================
                             try
                                 BufferedImage bufferedImage = createBufferedImage(newImage,newWidth,newHeight);                                                                               
                                 try
                                     File file77 = new File("newimage_ps.jpg");
                                     ImageIO.write(bufferedImage, "jpg", file77);
                                    catch (IOException ioe)
                                      System.out.println("IOExcepotion caught: " + ioe.toString());
                             catch (Exception buffError)
                                 System.out.println("IOExcepotion BufferedImage: " + buffError.toString());
                     catch(IOException ioe)
                         System.out.println("IOException reading: " + imagePathName + "\n" + ioe.toString());
    // ==============================================================                
        static public BufferedImage createBufferedImage(Image imageIn, int pass_newWidth, int pass_newHeight )
               System.out.println(" " );     
                 System.out.println("+++++ imageIn   " + imageIn.getWidth(null) ); 
                 System.out.println("pass_newWidth " + pass_newWidth);
               System.out.println(" " );     
    //          BufferedImage bufferedImageOut = new BufferedImage(imageIn.getWidth(null),
    //                                                             imageIn.getHeight(null),
    //                                                             BufferedImage.TYPE_INT_RGB);
              BufferedImage bufferedImageOut = new BufferedImage(pass_newWidth,
                                                 pass_newHeight,
                                                                 BufferedImage.TYPE_INT_RGB);         
              // Graphics g = bufferedImageOut.getGraphics();
              Graphics2D g2 = bufferedImageOut.createGraphics();
              g2.drawImage(imageIn, 0, 0, null);
             // g.drawImage(imageIn, 0, 0, null);
              return bufferedImageOut;
        }     

    >
    Hi Andrew,
    Thanks for your reply..Your links sent me to this ...
    Page Not Found
    We are sorry, the page you have requested was not found on our system. >Ahh. That is because I foolishly hand edited those links and did not check them. They included 'api' twice.
    In any case they were simply the links to the javadocs for those two classes.
    Search [google for bytearrayoutputstream|http://www.google.com.au/search?hl=en&q=bytearrayoutputstream&meta=] and you will end up in the same or similar place.
    As to using them, you simply put an appropriate ByteArray stream in place of the other streams (e.g. File based) that you were using.
    I'd have to search for an actual example, but you could do the same (probably faster).
    Edit 1:
    Adding 'imageio' to 'bytearrayoutputstream' as a search led to this as top hit [Memory Efficiency of BufferedImage and ImageIO|http://forum.java.sun.com/thread.jspa?threadID=5261937&tstart=0].
    Edited by: AndrewThompson64 on Jul 6, 2008 2:37 PM

  • Email-to facilitate emailing a photo by gmail or AOL, I reduce the file size.  Is it better to reduce the image size or increase the jpg compression?

    To facilitate emailing a photo by gmail or AOL and avoid overwhelming the recipient's screen, I reduce the file size.  Is it better to reduce the image size or increase the jpg compression?  I have been making a duplicate image of 35 MB and reducing the image size to 8"x12" at 72 resolution giving a file size of 1.4 MB.  Then I SAVE AS a jpg of medium compression giving a  file size of about 111 KB.  Overkill?

    Go to File>save for web.
    I usually make the long side 800 px
    At the bottom of the dialog, check "constrain proportions."
    At the top, select JPEG in the dropdown for the file format.
    All the work is done for you! 72px/in is ok for web work. 240-300px/in is the recommended range for printing.

  • A simple and free way of reducing PDF file size using Preview

    Note: this is a copy and update of a 5 year old discussion in the Mac OS X 10.5 Leopard discussions which you can find here: https://discussions.apple.com/message/6109398#6109398
    This is a simple and free solution I found to reduce the file size of PDFs in OS X, without the high cost and awful UI of Acrobat Pro, and with acceptable quality. I still use it every day, although I have Acrobat Pro as part of Adove Creative Cloud subscription.
    Since quite a few people have found it useful and keep asking questions about the download location and destination of the filters, which have changed since 2007, I decided to write this update, and put it in this more current forum.
    Here is how to install it:
    Download the filters here: https://dl.dropboxusercontent.com/u/41548940/PDF%20compression%20filters%20%28Un zip%20and%20put%20in%20your%20Library%20folder%29.zip
    Unzip the downloaded file and copy the filters in the appropriate location (see below).
    Here is the appropriate location for the filters:
    This assumes that your startup disk's name is "Macintosh HD". If it is different, just replace "Macintosh HD" with the name of your startup disk.
    If you are running Lion or Mountain Lion (OS X 10.7.x or 10.8.x) then you should put the downloaded filters in "Macintosh HD/Library/PDF Services". This folder should already exist and contain files. Once you put the downloaded filters there, you should have for example one file with the following path:
    "Macintosh HD/Library/PDF Services/Reduce to 150 dpi average quality - STANDARD COMPRESSION.qfilter"
    If you are running an earlier vesion of OS X (10.6.x or earlier), then you should put the downloaded filters in "Macintosh HD/Library/Filters" and you should have for example one file with the following path:
    "Macintosh HD/Library/Filters/Reduce to 150 dpi average quality - STANDARD COMPRESSION.qfilter"
    Here is how to use it:
    Open a PDF file using Apple's Preview app,
    Choose Export (or Save As if you have on older version of Mac OS X) in the File menu,
    Choose PDF as a format
    In the "Quartz Filter" drop-down menu, choose a filter "Reduce to xxx dpi yyy quality"; "Reduce to 150 dpi average quality - STANDARD COMPRESSION" is a good trade-off between quality and file size
    Here is how it works:
    These are Quartz filters made with Apple Colorsinc Utility.
    They do two things:
    downsample images contained in a PDF to a target density such as 150 dpi,
    enable JPEG compression for those images with a low or medium setting.
    Which files does it work with?
    It works with most PDF files. However:
    It will generally work very well on unoptimized files such as scans made with the OS X scanning utility or PDFs produced via OS X printing dialog.
    It will not further compress well-optimized (comrpessed) files and might create bigger files than the originals,
    For some files it will create larger files than the originals. This can happen in particular when a PDF file contains other optomizations than image compression. There also seems to be a bug (reported to Apple) where in certain circumstances images in the target PDF are not JPEG compressed.
    What to do if it does not work for a file (target PDF is too big or even larger than the original PDF)?
    First,a good news: since you used a Save As or Export command, the original PDF is untouched.
    You can try another filter for a smaller size at the expense of quality.
    The year being 2013, it is now quite easy to send large files through the internet using Dropbox, yousendit.com, wetransfer.com etc. and you can use these services to send your original PDF file.
    There are other ways of reducing the size of a PDF file, such as apps in the Mac App store, or online services such as the free and simple http://smallpdf.com
    What else?
    Feel free to use/distribute/package in any way you like.

    Thanks ioscar.
    The original link should be back online soon.
    I believe this is a Dropbox error about the traffic generated by my Dropbox shared links.
    I use Dropbox mainly for my business and I am pretty upset by this situation.
    Since the filters themsemves are about 5KB, I doubt they are the cause for this Dropbox misbehavior!
    Anyway, I submitted a support ticket to Dropbox, and hope everything will be back to normal very soon.
    In the meantime, if you get the same error as ioscar when trying to download them, you can use the link in the blog posting he mentions.
    This is out of topic, but for those interested, here is my understanding of what happened with Dropbox.
    I did a few tests yesterday with large (up to 4GB) files and Dropbox shared links, trying to find the best way to send a 3 hour recording from French TV - French version of The Voice- to a friend's 5 year old son currently on vacation in Florida, and without access to French live or catch up TV services. One nice thing I found is that you can directly send the Dropbox download URL (the one from the Download button on the shared link page) to an AppleTV using AirFlick and it works well even for files with a large bitrate (except of course for the Dropbox maximum bandwidth per day limit!). Sadly, my Dropbox shared links were disabled before I could send anything to my friend.
    I may have used  a significant amount of bandwidth but nowhere near the 200GB/day limit of my Dropbox Pro account.
    I see 2 possible reasons to Dropbox freaking out:
    - My Dropbox Pro account is wronngly identified as a free account by Dropbox. Free Dropbox accounts have a 20GB/day limit, and it is possible that I reached this limit with my testing, I have a fast 200Mb/s internet access.
    - Or Dropbox miscalculates used bandwidth, counting the total size of the file for every download begun, and I started a lot of downloads, and skipped to the end of the video a lot of times on my Apple TV.

  • How can I reduce the file size of a pdf when exporting?

    I don't want to just choose between high quality print or smallest file size.
    I want to export it from 60MB to 40MB.
    Can I do this manually? When I use smallest file size the quality is too low and the content looks bad.
    But high quality print exports my PDF at 60MB which is too big.

    You cannot simply legislate the size of a PDF file. If you content is primarily text and vector, there is not much at all you can do to reduce PDF file size other than to cut out content. Otherwise, the only other variables are those of downsampling and compressing the raster images from your content.
    You must be very careful in choosing the PDF export settings. The “smallest size” settings yield PDF files that realistically really are not fit for printing and may mess up any CMYK colors. The “high quality print” and “PDF/X-4” settings yield best print output, but yield the largest PDF files since they do less image resolution downsampling and only the maximum quality lossy JPEG compression.
    I would recommend that you start with either the “high quality print” or the “PDF/X-4” settings and make a custom set of export settings. Assuming that you aren't going for offset or gravure printing, change the color image and grayscale image downsampling values from 300 and 450 to either 200 and 275 or no less than 150 and 225. If that doesn't give enough file size reduction, change the compression image quality from “Maximum” to either “High” or no less than “Medium.” Beyond these changes, you may end up with PDF files that will neither print nor display with any reasonable quality.
            - Dov

  • Exporting a book to pdf - any way to reduce the file size?

    Hi,
    So I have made a book using iPhoto and would like to send a pdf copy of it to another person who will fill in the texts. I am able to save the book as pdf via the print menu but the resulting file is over 300 mb in size (the book has only 20 pages)! On the one hand i like the fact that iPhoto is not downsampling my photos but it's a bit difficult trying to send a 300+ mb file over email Is there any way to create a pdf with the images compressed so i could send it as an attachment?

    http://beyondteck.blogspot.com/2008/11/how-to-reduce-pdf-file-sizes-on-mac.html
    Google is your friend.
    Regards
    TD

  • Reducing PDF File Sizes

    We create and use numerous pdf files, some with fill-in fields and some without. Is there a way to reduce the file size without adversely affecting response time to open the file? Some of us are running Acrobat Professional version 7 and others are running version 8. Some of us have Windows XP and some have Windows 2000.
    Any help you can give us would be greatly appreciated.
    Thanks.
    Ken K

    >I thought that if a file was compressed in some way that it might take some time to decompress the file.
    I see - entirely reasonable to think that. However, almost every PDF
    is already compressed using technologies like ZIP or JPEG. When you
    reduce the file size you are usually doing some combination of
    * reducing image resolution
    * using more agressive JPEG compression
    * deleting stuff you can live without
    So this doesn't affect the load time.
    JPEG 2000 compression is stronger and a bit slower, but probably
    nothing to worry about, especially if you don't have high resolution.
    Aandi Inston

  • How can I reduce the file size when saving a psd as a pdf

    I have a psd with graphics and text, it is 8.5 x 11, 300 ppi
    I flatten the image and go to save as .pdf I un-check all of the options in general.
    In compression, I have tried a dozen different combinations and the way I've found to get a document that is not pixelated or blurry is to use jpeg 2000 > lossless or jpeg > maximum.
    So I have a high quality document but the file sizes are around 900 kb.
    I have downloaded other people's documents of the exact same type and size (8.5 x 11, 300 ppi) that I am making and viewed them in Photoshop, they are not pixelated or blurry and their file sizes are 300 kb or even less than 200 kb
    How are they doing this?!

    Delete all unused, invisible layers.
    Sometimes zip compression is better than jpg compression (in the pdf output settings). Zip is lossless, and works better with non gradient colour or no images.
    Flattening the image before you save it to pdf can reduce the file size if you are using jpg compression.
    Post a preview of your pdf and we can comment further on how to reduce the file size.

  • How to reduce jpg file size, not pixel dimensions?

    I am preparing images for the web and I really have 2 questions: one about gifs, and one about jpgs.
    My standard procedure is to reduce the image to the desired pixel dimensions at 600 dpi
    That gives me a crisp small image. then I either use it as is if the file size is low enough (I try for under 600 kb) or convert it to a gif with the save for web and devices tool.
    So here are my 2 questions (I will count this solved with either answer)
    1) When I convert to a gif I have the 4 boxes: one with original size, the other 3 with options but often the options are too low res for me How do I change my 3 options to start at a higher gif res?
    2) If I try to reduce the file size of the jpg in the image size box I set the resolution lower ( 400, 300), which lowers the pixel dimensions and the filesize, but I don't want to cahnge the pixel dimensions. And  If I reset the pixel dimensions back to the size I want them, even though it is a lower resolution the file size doesn't change. How to reduce jpg file size using only the resolution, not pixel dimensions?  PS I have tried messing with checking and unchecking the 3 little boxes( scale styles, constrain proportions, and resample) but nothing has worked.

    Gif is not a great filetype, especially if you want a crisp image. What are your pixel dimensions?
    For web, it makes no difference what the dpi is, only the final pixel dimensions so once you have that as you want, use 'Save for Web and Devices' and you can lower the quality - 100% being max and 0% being lowest. I wouldn't save anything below 55%. For a 600kb image, your dimensions must be rather big.

  • Reduce .PDF file size in Acrobat 5.0

    Hi. Seems like there are plenty of ways to reduce the file size of .pdfs in later versions of Acrobat than in 5.0. Does anyone know of any I could try in the 5.0 version?
    The doc is 122 pages, all in black & white & has some images.
    I do not have the original doc. I did not make it. I am just trying to reduce the size to put it on the web.
    ps-I did try using Distiller, but the images got a little too sketchy looking.
    Thank you.
    Jules

    I tried it at home & I used the optimize pdf thing. It went from 17MB to 12MB so I re-optimized it & got it down to 3MB. It's as good as it is going to get. The big problem is that the .pdf that I have was scanned on a copier machine.
    I printed the 3MB pdf on the color printer & it came out okay, but then I printed it on the black & white printer & it barely had any ink on the page....
    I am just going to not bother with it anymore. Not much I can do with a scanned document & it's not even my job to begin with!
    Thanks Bill.
    Jules

  • Retouch photo without reducing the file size/quality?

    I have been retouching some pictures for use in a photo book but notice that each time I do so, the file size decreases fairly significantly e.g from 4MP to 2MP.
    Is there a way I do minor retouching to a photo without reducing the file size/quality?
    Thanks in advance

    Where are you seeing this size reduction? What format are the original photos?
    For example when you edit a RAW photos you create a JPEG modified version which is much smaller - one I just did went from 17 MB as RAW to 4.4 as a JPEG  --  you could save as a TIFF but to me that is not worth the space loss - I seriously doubt that you will ever do anything that you can see the difference in quality between a TIFF and JPEG of yoru images
    LN

Maybe you are looking for

  • Licensing Office Home and Business 2013

    I know this has been talk about a bit... If I have 30 users to setup with Office 2013 H&B, do you recommend I setup a Public folder on my Exchange server, mail enable it, create a Microsoft account for the PC(email addr to match an SMTP alias of that

  • Update in JDBC Sender adapter for more than one table

    Dear Friends,           I have to select more than one table in the JDBC sender using the join condition. But i found that update statement is also mandatory in the sender comm channel. I am not going to update any flag after the select but as it is

  • I am not able to see the trace files for SQL query

    Hello, I am using windows vista OS. SQL> select * from v$version; BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod PL/SQL Release 10.2.0.3.0 - Production CORE 10.2.0.3.0 Production TNS for 32-bit Windows: Version 10.2.0.3.0 - P

  • Loop Problems. There are no Apple Loops installed on your System.

    When I first open Garage Band I get a message that says "There are no Apple Loops installed on your System. Please reinstall the Apple Loop Package" Where is the Loop Package, how do I reinstall it, and overall.. how do I fix this problem?

  • HT1414 NO SERVICE PROBLEM IN MY IPHONE

    my iphone network is show no service (so that my iphone not support any service provider  sim)