Create Thumbnails from photos in iPhoto11

I have tried to activate photo stream in iOS 5 however, my photos in iPhoto11 are too large to upload and take too long.
Is there a way to create thumbnails of my photos that I could upload to photo stream.
Thanks

It's a nuisance, but thanks for your advice.
I am begining to have concerns about space on my Mac due to iphoto!
I can move the library to my Nas server. It is then my intention to set up a new iphoto library on my Mac. If I deselct the "copy items to the iphoto library in preference" will this affect me in the future if I choose to merge the iphoto libraries in the future?
Any advice would be appreciated.
Thanks
Keith

Similar Messages

  • Auto create thumbnail from pdf

    Hi all, can anyone assist with writing a script to automatically create thumbnails of a saved PDF and then move that thumbnail onto a NAS SMB shared volume?
    thanks
    KL

    Take advantage of Automator, and create a workflow that prompts you for a PDF, and then generates thumbnail images of that PDF into a Desktop folder. The workflow will overwrite any thumbnail images associated with the PDF, if you rerun it on the same PDF.
    Here is the AppleScript to generate the thumbnail(s) from the PDF, and access the first thumbnail. I am not using a Server here, so that is missing from the AppleScript, but should be a Finder move/copy from your thumbnail folder to the server destination address. The applescript can be saved as an Application on your Desktop.
    set pdfimage to {}
    set workflowpath to "OSXHD:Users:viking:Desktop:pdf2img.workflow"
    set qtdworkflowpath to quoted form of (POSIX path of workflowpath)
    set command to "/usr/bin/automator " & qtdworkflowpath
    set pdfimage to do shell script command
    -- get first thumbnail path
    set thumbnail to (second paragraph of pdfimage as text)
    display dialog thumbnail
    Launch Automator, and choose to make a new workflow. Save this workflow to your Desktop, or anywhere you like. For this example, it is sitting on my Desktop. Build your Automator workflow with the following Library actions:
    Files and Folders - Ask for Finder Items
    PDF - Render PDF Pages as Images
    Files and Folders - Move Finder ItemsI created a new folder on the Desktop to place the generated thumbnails
    Here is what the Automator actions look like in the finished workflow.

  • Bridge to create thumbnails from web application

    Hi all,
    I'm looking for a solution to create thumbnails on my web application server (eps, ai, psd.. files).
    Did you think that it a good idea (and possible) to use Bridge on a server (I have a licnese for InDesign server) to generate thumbnails with a jsx script ?
    Thanks,
    Cedric

    I have no idea about using Bridge on a server, but here is an example of creating thumbnails.
    This example should be run from ExtendScript Toolkit, it will generate thumbnails for all (that it can)  filetypes in the selected folder.
    #target bridge
    var files = app.document.visibleThumbnails;
    for(var a in files){
        if(files[a].type == "file"){
        var Thumb = new Thumbnail(files[a]);
        var orientation = Thumb.rotation;
        app.synchronousMode = true;
        var bm = Thumb.core.thumbnail.thumbnail;
        app.synchronousMode = false;
        if(bm.width <1) continue;
        bm = bm.rotate(orientation);
        Name = decodeURI(Thumb.spec.name).replace(/\.[^\.]+$/, '');
        var target = new File(app.document.presentationPath + "/Thumb-" + Name + ".jpg" );
        bm.exportTo(target);

  • Creating thumbnails of photos

    new to mac... how do i create thumbnails of jpg photos within a folder? right now all i see is the file name, i.e. 2222.jpg without a thumb of the pix...

    You have 3 view options for the Finder window.
    As Icons
    As Lists
    As Columns
    Sounds like you have As Lists selected.
    If you select As Columns, when selecting a file name for a photo in the file name column for the list of photos, a thumb of the selected file name/photo is shown in the adjacent column to the right.
    With a Finder window open, at the menu bar go to View and select As Columns.

  • I created iMovie from photos only but there is no dvd button to click in the share file to burn to dvd

    I created an imovie with just photos but when I click on share to burn to a dvd, there is no dvd button to choose.

    Why is there no iDVD on my new Mac?
    https://discussions.apple.com/docs/DOC-3673
    But if you do have it:
    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089

  • Create thumbnail from selected images

    Hi,
    in my app the user can choose some pictures from his local
    file system.
    I want to create a smaller image of every selected picture.
    So I do this for each image:
    for( var f = 0; f < e.files.length; f++ ){
    name = e.files[f].name;
    src = e.files[f].url;
    path = e.files[f].parent.url;
    files.push( e.files[f] );
    //...some other code, not important for this...//
    image = new air.Loader();
    image.contentLoaderInfo.addEventListener(
    air.Event.COMPLETE, function() {
    var ratio = null;
    if (image.width <= 100) {
    thumb_height = image.height;
    thumb_width = image.width;
    ratio = 1;
    else {
    var thumb_width = 100;
    var thumb_height = null;
    var factor = image.width / thumb_width;
    thumb_height = Math.round(image.height / factor);
    ratio = 100/ image.width;
    if (thumb_height > thumb_width) {
    thumb_height = 120;
    factor = image.height / thumb_height;
    thumb_width = Math.round(image.width / factor);
    ratio = 100/ image.width;
    var bmp = new air.BitmapData( thumb_width, thumb_height );
    var temp = air.File.createTempFile();
    var desktop = null;
    var matrix = new air.Matrix();
    var png = null;
    var stream = new air.FileStream();
    var div = null;
    var elem = null;
    matrix.scale( ratio,ratio );
    bmp.draw( image.content, matrix );
    png = runtime.com.adobe.images.PNGEncoder.encode( bmp );
    stream.open( temp, air.FileMode.WRITE );
    stream.writeBytes( png, 0, 0 );
    stream.close();
    desktop = air.File.desktopDirectory.resolvePath( toPNG(
    e.files[f] ) );
    temp.moveTo( desktop, true );
    image.load( new air.URLRequest(e.files[f] ) );
    function toPNG( orig )
    return orig.name.substr( 0, orig.name.length -
    orig.extension.length ) + 'png';
    The problem is, that the "thumbnail" is only created of the
    last selected image. I think it has something to do with the
    air.Event.COMPLETE event. But when I kick that off, an error
    occures: Error #2015: Invalid BitmapData. at
    flash.display::BitmapData().
    Hope somebody can help. Thanks in advance

    Here´s a nice example that does exactly what I want:
    <html>
    <head>
    <title>Thumbnails</title>
    <script src="library.swf"
    type="application/x-shockwave-flash"></script>
    <script src="AIRAliases.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var MAX_HEIGHT = 100;
    var MAX_WIDTH = 100;
    var files = null;
    var index = 0;
    var loader = null;
    var output = null;
    function loadImages()
    if( index < files.length )
    output = document.createElement( 'div' );
    loader.load( new air.URLRequest( files[index].url ) );
    } else {
    loader.visible = false;
    function doLoad()
    loader = new air.Loader();
    loader.contentLoaderInfo.addEventListener(
    air.Event.COMPLETE, doLoaderComplete );
    window.nativeWindow.stage.addChild( loader );
    btnOpen.addEventListener( 'click', doOpenClick );
    function doFilesSelect( e )
    files = e.files;
    index = 0;
    loadImages();
    function doLoaderComplete()
    var bmpd = null;
    var encoder = null;
    var img = null;
    var jpg = null;
    var matrix = null;
    var ratio = 0;
    var realHeight = loader.contentLoaderInfo.height;
    var realWidth = loader.contentLoaderInfo.width;
    var stream = null;
    var thumb = null;
    var thumbHeight = 0;
    var thumbWidth = 0;
    if( realWidth > 0 )
    if( realWidth <= MAX_WIDTH )
    thumbHeight = realHeight;
    thumbWidth = realWidth;
    ratio = 1;
    } else {
    thumbWidth = MAX_WIDTH;
    thumbHeight = 0;
    factor = realWidth / thumbWidth;
    thumbHeight = Math.round( realHeight / factor );
    ratio = MAX_WIDTH / realWidth;
    if( thumbHeight > thumbWidth )
    thumbHeight = MAX_HEIGHT;
    factor = realHeight / thumbHeight;
    thumbWidth = Math.round( realWidth / factor );
    ratio = MAX_WIDTH / realWidth;
    matrix = new air.Matrix();
    matrix.scale( ratio, ratio );
    bmpd = new air.BitmapData( thumbWidth, thumbHeight );
    bmpd.draw( loader, matrix );
    encoder = new runtime.com.adobe.images.JPGEncoder( 85 );
    jpg = encoder.encode( bmpd );
    thumb = air.File.desktopDirectory.resolvePath( 'thumb_' +
    files[index].name );
    stream = new air.FileStream();
    stream.open( thumb, air.FileMode.WRITE );
    stream.writeBytes( jpg, 0, 0 );
    stream.close();
    output.innerHTML = files[index].name + ': ' + realWidth + '
    x ' + realHeight;
    document.body.appendChild( output );
    img = document.createElement( 'img' );
    img.src = thumb.url;
    output.appendChild( img );
    index = index + 1;
    loadImages();
    function doOpenClick()
    var browse = air.File.desktopDirectory;
    browse.addEventListener( air.FileListEvent.SELECT_MULTIPLE,
    doFilesSelect );
    browse.browseForOpenMultiple(
    'Select Images',
    [new air.FileFilter( 'Image Files',
    '*.gif;*.jpg;*.jpeg;*.png' )]
    </script>
    </head>
    <body onLoad="doLoad();">
    <input id="btnOpen" type="button" value="Open..." />
    </body>
    </html>

  • Creating Thumbnail from an Image with transparent background

    Hello,
    I want to create a thumbnail image of size 200 x 200 pixels from an image of any size.
    As the thumbnail is square, I'm centering the image according to size.
    The code I'm using is working fine BUT after centering and resizing original image
    and writing it to output file the remaining area is of black color.
    I want the background should be transparent.
    Code I'm using is not using JAI.
    Please suggest me the solution.
    the code I'm using is as follows:
    public static void makeThumbnail(String inFile, String thumbFile ) throws Exception {
    Image image = Toolkit.getDefaultToolkit().getImage(inFile);
    MediaTracker mediaTracker = new MediaTracker(new Container());
    mediaTracker.addImage(image, 0);
    mediaTracker.waitForID(0);
    int fixedHeight = 200 ;
    int fixedWidth = 200 ;
    int imageWidth = image.getWidth(null);
    int imageHeight = image.getHeight(null);
    double imageRatio = 0.25 ;     
    int thumbHeight = (int)(imageHeight * imageRatio );
    int thumbWidth = (int)(imageWidth * imageRatio );
    int x = ( fixedWidth - thumbWidth )/2 ;
    int y = ( fixedHeight - thumbHeight )/2 ;
    System.out.println(thumbHeight + " - " + y );
    System.out.println(thumbWidth + " - " + x );
    // draw original image to thumbnail image object and
    // scale it to the new size on-the-fly
    BufferedImage thumbImage = new BufferedImage(fixedWidth, fixedHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D graphics2D = thumbImage.createGraphics();
    graphics2D.setColor( new Color( 255, 255, 255, 0) );
    int rule = AlphaComposite.SRC_IN ;
    AlphaComposite ac = AlphaComposite.getInstance(rule, 0.9f);
    graphics2D.setComposite(ac);
    graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.drawImage(image, x, y, thumbWidth, thumbHeight, null);
    // save thumbnail image to OUTFILE
    BufferedOutputStream out = new BufferedOutputStream(new    FileOutputStream(thumbFile));
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
    int quality = 60 ;
    quality = Math.max(0, Math.min(quality, 100));
    param.setQuality((float)quality / 100.0f, false);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(thumbImage);
    }

    Change this line
    BufferedImage thumbImage = new BufferedImage(fixedWidth, fixedHeight,
              BufferedImage.TYPE_INT_RGB);
    ...to use a BufferedImage type that supports transparency like TYPE_INT_ARGB or TYBE_4BYTE_ABGR (I would recommend the latter since your saving the image).
    Also, btw, you're not going to like the quality of the thumbnail if the image is reduced by more then half its size.

  • Create Thumbnail From Flv File

    Hi to all,
    I want to create a thumbnail image from flv video file.
    I am reading the flv file via FileInputStream as a byte array and i try to create a image file from that array. But i get only Block Image. Is there anyother way to do it
    import java.io.*;
    import java.awt.*;
    class sample
    public static void main(String ars[])
    try
    Image temp = null;
    File f=new File("sample.flv");
    FileInputStream in=new FileInputStream(f);
    byte a[]=new byte[(int)f.length()];
    int offset = 0;
    int numRead = 0;
    while (offset < a.length
    && (numRead=in.read(a, offset, a.length-offset)) >= 0) {
    offset += numRead;
    temp = Toolkit.getDefaultToolkit().createImage(a);
    java.awt.image.BufferedImage bufferedImage =
              new java.awt.image.BufferedImage(800,600, java.awt.image.BufferedImage.TYPE_INT_RGB);
         java.awt.Graphics g = bufferedImage.createGraphics();               
         g.setColor(java.awt.Color.white);
         g.fillRect(0, 0, temp.getWidth(null),temp.getHeight(null));
         g.drawImage(temp, 0, 0, null);
         g.dispose();
         f = new File("sample1.jpg");
         FileOutputStream out = new FileOutputStream(f);
         com.sun.image.codec.jpeg.JPEGImageEncoder encoder = com.sun.image.codec.jpeg.JPEGCodec.createJPEGEncoder(out);
         com.sun.image.codec.jpeg.JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bufferedImage);     
         param.setQuality(7.0f, true);
         encoder.setJPEGEncodeParam(param);
         encoder.encode(bufferedImage);
    catch(Exception ex)
    System.out.print(ex);
    Please Help to Me

    You may start looking at external tables if it is that you want. Here is a link.
    http://otn.oracle.com/pls/db10g/db10g.drilldown?remark=&word=external+tables&book=&preference=

  • Create collection from photos used in a book

    I have a collection of about 800 photos. Created a book layout using about 80 of the photos. As I look at the filmstrip in the Book module, I can see that some of them are marked with "1" to indicate they are used in the book. So far, so good. I would like to create a new collection (or somehow filter) consisting of only the 80-or-so photos used in the book. Is this possible in LR5?

    Found a way...
    - create a new collection, and set it as the target
    - open the book
    - click/select each picture (one at a time)
    - press B to add it to the target collection
    Have to select each picture in the book, but it's pretty fast...

  • IMovie freezes while creating thumbnails from Canon FS31 flash recorder

    Hi,
    Borrowed at Canon FS31 from work. Attempting to import video to iMovie '08. The application hangs while generating thumbnails during the "camera detected" process, so it doesn't even get to the import screen.
    I tried force quitting iMovie and reopening- same problem.
    Anyone know how to fix this?
    Thanks!

    If that fixed it, I would recommend that you reformat the card using the camera menu. Then see if it will work directly from the card. It should also work directly from the camera, but the camera has to be plugged in to the wall. With a card reader, you don't have to worry about plugging in the camera to AC power.

  • IPhoto '09 Not Displaying Thumbnails From 3rd Party iApps

    Somewhere between iOS4 and iOS 4.0.1 iPhoto lost the ability to display the thumbnails from photos that had been modified by any other 3rd party iApp. Is a suggestion to resolve this. All the thumbnails show up in the iPhone itself, just not on connecting the iPhone to the Mac, then iPhoto

    How does IOS4/4.0.1 relate to iPhoto 09? kDo you want the iPhone forum or the iPhoto forum? If you do mean to be in this forum what iApps are you using to edit the photos, where are you editing them and how?
    OT

  • Creating Thumbnails with ImageIO or JAI?

    Hello,
    Could anyone advise between the clases available in ImageIO and the JAI.
    Which use the least amount of memory, and is quickist in creating thumbnails from an jpeg, or gif image?
    My thought was the JAI would be quicker, and perhaps uses less memory or better at release memory.
    I would much appreciate the members guidance.
    Thanks

    Further to this, I first thought the problem was probably something to do with the Xserver requirement for java.awt.Toolkit, but as you can see from the code, an image is loaded and scaled (as far as I can tell) with no problems - its just encoding it and writing it back out that causes problems.

  • Create thumnail from image

    Can we create thumbnail from a image in Oracle 11g database?

    The image is stored as blob secure file in oracle 11g database.
    What is the difference between blob and ORDImage?
    Can I create thumbnail from a image and store it in the database?

  • Trying to add album from iphoto into idvd slideshow.  Not all photos are loading.  Message "creating thumbnail images...(31 remaining).  Been there a long time.  What is wrong?

    trying to add album from iphoto into idvd slideshow.  Not all photos are loading.  Message "creating thumbnail images...(31 remaining).  Been there a long time.  What is wrong?

    Open your iPhoto Library, go to that particular album and verify that you can view the full sized version of each image by double clicking on them.  Report back with the results.
    OT

  • Thumbnails from deleted photos

    The thumbnails from deleted photos are showing up instead of the correct thumbnails. When I click on the thumbnail, a completely different photo opens. I have emptied my trash.

    Welcome to the Apple Discussions. Sounds like you have a damaged database file in the library. Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select the first three options.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) 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 or later), 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 6 and 7 libraries and Tiger and Leopard. 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.
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

Maybe you are looking for

  • Adobe Media Encoder - Random Coding Interrupts?

    Greetings all - I've been a long time reader to this forum and thought I would bring a recent issue to the brilliant guys that Adobe seems to attract. First the details: Win 7 64bit AMD Athlon X2 250 ATI Radeon 5770 (1GB GDDR5) 3 gig RAM Standard iss

  • Two issues - fan & bluetooth

    My iMac G5 freezes and then the internal fan begins running very loud. This has happened four times in the last day. The only change to the computer is the addition of a Kensington Bluetooth mouse, which leads me to the second problem. The mouse is e

  • Collab API / RemoteSession exception

    Hi, I ran into the following issue. I'm trying to query for a list of projects. However, I get the following exception: CollaborationException: Call into WS Portal to authorize login token 12344|1265824413|z3uRfZrKCRGAyC6LEtIs4EYsagY= failed. Details

  • Finding stuff in "private" folder?

    Hi! Is there some way to put a folder into "privacy" (Spotlight prefPane), so that usual Spotlight-searches won't search it, but have a way of finding stuff in that folder nevertheless (say, by using Finder's searchbar)? I have several thousands of a

  • Error contets file with vmware

    Hi I've installed Solaris 10 10/08 dvd in vmware box, x86_32 many times and, in a fresh installation, when I execute pkginfo -l <pkgid>, I allways receive the same error with a file pkginfo -l SUNWcs pkginfo: ERROR: bad entry read in contents file pa