Uploading images using iPhoto

Since upgrading to Yosemite, I am unable to import images from my Canon EOS 1200D camera using iPhoto. I receive the message : Unreadable, The following file could not be imported. The file is in an unrecognisable format" I also tried to install the software that came with the camera but this does not work either and a message appears "ALERT - cannot be used with this version of this operating system. Can anyone advise please?

Have you taken the card out of the camera and used the computer's card reader and just drag the photos on the card into iPhoto or  use iPhoto's import feature?

Similar Messages

  • Can  I write titles of comments on the picture image using iPhoto?

    I will like to be able to write titles or labels in the pictures stored on iPhoto files without the need to go to another photo software.
    Is it a way to write descriptive titles on the image using iPhoto?
    Thank you
    g5   Mac OS X (10.4.8)  

    punkylobo:
    Welcome to the Apple Discussions. You will need a 3rd party editor like GraphicConverter or Photoshop Elements 3. Also Gimp is an open source version of Photoshop that would do it. You can find the first two at VersionTracker.com and the other thru a Google search. No matter what editor you use you set up iPhoto (in its preferences) to use that application as the editor of choice when you double click on a thumbnail. You never want to open a file directly thru the editor.
    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.

  • Problem when trying to rename uploaded images using session value

    Hi,
    I have a form where 9 images are uploaded made into thumb nail size and then stored in a file. What I´m trying to do is rename those thumbnails from their original name to username_0, username_1, username_2 etc for each of the 9 thumbs. The username comes from the registration form on the same page. I have created a session variable for the username and am trying to use that to change to name of the image name, whilst my images are uploading and resizing the name stays as the original and not as the new username_$number. I have pasted relevant code below and would very much appreciate any help with this:
    <?php session_start();
    // check that form has been submitted and that name is not empty and has no errors
    if ($_POST && !empty($_POST['directusername'])) {
    // set session variable
    $_SESSION['directusername'] = $_POST['directusername'];
    // define a constant for the maximum upload size
    define ('MAX_FILE_SIZE', 5120000); 
    if (array_key_exists('upload', $_POST)) {
    // define constant for upload folder
    define('UPLOAD_DIR', 'J:/xampp/htdocs/propertypages/uploads/');
    // convert the maximum size to KB
    $max = number_format(MAX_FILE_SIZE/1024, 1).'KB';
    // create an array of permitted MIME types
    $permitted = array('image/gif','image/jpeg','image/pjpeg','image/png');
    foreach ($_FILES['photo']['name'] as $number => $file) {
    // replace any spaces in the filename with underscores
    $file = str_replace(' ', '_', $file);
    // begin by assuming the file is unacceptable
    $sizeOK = false;
    $typeOK = false;
    // check that file is within the permitted size
    if ($_FILES['photo']['size'] [$number] > 0 && $_FILES['photo']['size'] [$number] <= MAX_FILE_SIZE) {
    $sizeOK = true;
    // check that file is of a permitted MIME type
    foreach ($permitted as $type) {
    if ($type == $_FILES['photo']['type'] [$number]) {
    $typeOK = true;
    break;
    if ($sizeOK && $typeOK) {
    switch($_FILES['photo']['error'] [$number]) {
    case 0:
    include('Includes/create_thumbs.inc.php');
    break;
    case 3:
    $result[] = "Error uploading $file. Please try again.";
    default:
    $result[] = "System error uploading $file. Please contact us for further assistance.";
    elseif ($_FILES['photo']['error'] [$number] == 4) {
    $result[] = 'No file selected';
    else {
    $result[] = "$file cannot be uploaded. Maximum size: $max. Acceptable file types: gif, jpg, png.";
    ................CODE BELOW IS THE INCLUDES FILE THAT MAKES AND TRIES TO RENAME THE THUMBS................................................
    <?php
    // define constants
    define('THUMBS_DIR', 'J:/xampp/htdocs/propertypages/uploads/thumbs/');
    define('MAX_WIDTH_THB', 75);
    define('MAX_HEIGHT_THB', 75);
    set_time_limit(600);
    // process the uploaded image
    if (is_uploaded_file($_FILES['photo']['tmp_name'][$number] )) {
    $original = $_FILES['photo']['tmp_name'][$number] ;
    // begin by getting the details of the original
    list($width, $height, $type) = getimagesize($original);
    // check that original image is big enough
    if ($width < 270 || $height < 270) {
    $result[] = 'Image dimensions are too small, a minimum image of 270 by 270 is required';
    else { // crop image to a square before resizing to thumb
    if ($width > $height) {
    $x = ceil(($width - $height) / 2);
    $width = $height;
    $y = 0;
    else if($height > $width) {
    $y = ceil(($height - $width) / 2);
    $height = $width;
    $x = 0;
    // calculate the scaling ratio
    if ($width <= MAX_WIDTH_THB && $height <= MAX_HEIGHT_THB) {
    $ratio = 1;
    elseif ($width > $height) {
    $ratio = MAX_WIDTH_THB/$width;
    else {
    $ratio = MAX_HEIGHT_THB/$height;
    if (isset($_SESSION['directusername'])) {
    $username = $_SESSION['directusername'];
    // strip the extension off the image filename
    $imagetypes = array('/\.gif$/', '/\.jpg$/', '/\.jpeg$/', '/\.png$/');
    $name = preg_replace($imagetypes, '', basename($_FILES['photo']['name'][$number]));
    // change the images names to the user name _ the photo number
    $newname = str_replace ('name', '$username_$number', $name);
    // create an image resource for the original
    switch($type) {
    case 1:
    $source = @ imagecreatefromgif($original);
    if (!$source) {
    $result = 'Cannot process GIF files. Please use JPEG or PNG.';
    break;
    case 2:
    $source = imagecreatefromjpeg($original);
    break;
    case 3:
    $source = imagecreatefrompng($original);
    break;
    default:
    $source = NULL;
    $result = 'Cannot identify file type.';
    // make sure the image resource is OK
    if (!$source) {
    $result = 'Problem uploading image, please try again or contact us for further assistance';
    else {
    // calculate the dimensions of the thumbnail
    $thumb_width = round($width * $ratio);
    $thumb_height = round($height * $ratio);
    // create an image resource for the thumbnail
    $thumb = imagecreatetruecolor($thumb_width, $thumb_height);
    // create the resized copy
    imagecopyresampled($thumb, $source, 0, 0, $x, $y, $thumb_width, $thumb_height, $width, $height);
    // save the resized copy
    switch($type) {
    case 1:
    if (function_exists('imagegif'))  {
    $success[] = imagegif($thumb, THUMBS_DIR.$newname.'.gif');
    $photoname = $newname.'.gif';
    else {
    $success[] = imagejpeg($thumb, THUMBS_DIR.$newname.'.jpg',50);
    $photoname = $newname.'.jpg';
    break;
    case 2:
    $success[] = imagejpeg($thumb, THUMBS_DIR.$newname.'.jpg', 100);
    $photoname = $newname.'.jpg';
    break;
    case 3:
    $success[] = imagepng($thumb, THUMBS_DIR.$newname.'.png');
    $photoname = $newname.'.png';
    if ($success) {
    $result[] = "Upload sucessful";
    else {
    $result[] = 'Problem uploading image, please try again or contact us for further assistance';
    // remove the image resources from memory
    imagedestroy($source);
    imagedestroy($thumb);
    ?>
    I hope i´ve supplied enough information and look forward to receiving any help or advise in this matter.

    Use double quotes here:
    $newname = str_replace ('name', '$username_$number', $name);
    Change it to this:
    $newname = str_replace ('name', "$username_$number", $name);

  • Deleting images using iPhoto and a 128GB SD card and a Sony a6000

    I am having a problem with deleting images after transfer to my mac using either iPhoto or Aperture (All newest version) under Yosemite 10.10.2. What happens is I can transfer images and video from the a6000 into my mac but when asked to delete and answering that it is okay to delete I run into an issue. When after deleting the images in iPhoto and looking at the a6000's stored images there are blanks that have the filenames but know images. I have to format the SD card to get them cleared off the SD card. I would say it is a bug. It happens in both iPhoto and Aperture. And this occurs regardless of if I use an SD USB reader or hook up the camera video USB. The bundled software called PlayMemories from Sony doesn't has a feature to delete the images off the camera. The a6000 is a newer model and I think the way Sony organizes things on the SD card is crazy but it would be nice to have the delete feature in iPhoto actually works like every other camera I've owned.

    Yes but... you really don't want to use the iPhoto delete feature.
    Never let your computer erase data without you first checking that the data is safe. Specifically never use iPhoto (or any other app) to delete the photos from your Camera Card. Disconnect the camera, check the transfer has gone correctly and then use your Camera to Reformat the Card. This has three advantages:
    1. You know your data is safe - because you've taken the time to check it.
    2. Reformatting the card is much, much faster - takes a couple of seconds
    3. Reformatting also refreshes the Directory Structure on the Card, helping prevent issues with the card and prolonging its life.
    But that's my 2 cents.

  • Upload image using webdynpro abap

    Gudday,
    I have a requirement to provide three functionalities like
    1)browse 2)upload 3)review the image using webdynpro ABAP.
    I tried with functionn module 'ARCHIV_CREATE_DIALOG_META'  which uploads images..but if i try to use the samething using service call in webdynpro ..it is throwing a dump..saying...'ARCHIV ID OF CLASS BASED NOT OCCURRED'
    Please suggest me how to proceed further ....its high priority....
    Awaiting your reply.
    Thanks,
    Deepthi.

    Hello Martina,
    Could you solve this problem?
    I need to upload documents in PA30 from Web Dynpro ABAP but the called funtions are not working. Could you please explain me how you resolved this?
    Thanks you very mutch!
    Regards
    Belé

  • How to upload image using JSP

    hi,
    i am confronting a problem how to upload image from local PC to web server . I am using Tomcat 4.0
    please help me by sending code
    thanks

    Hi,
    Here is the solution for uploading images and displaying images. I am using struts with JSP, so this code has a Action and ActionForm class. You can put the same code in Java Beans or Servlet class to run it. This code has two JSP files - one for Upload (upload.jsp)and other for Image(image.jsp) display. It has a Servlet also to display the image. Here is the code file wise.
    Upload.jsp **********************************************************
    <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
    <%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <html:html>
    <head>
    <title>New Page 1</title>
    </head>
    <body>
    <html:form action="uploadAction.do" enctype="multipart/form-data" method="POST">
    <p>File to upload   
    <html:file property="fileUpload" size="20"/></p>
    <p><html:submit value="Upload" property="upload"/></p>
    <p> </p>
    <p><html:img src="image.jsp"/></p>
    <p> </p>
    </html:form>
    </body>
    </html:html>
    Image.jsp*****************************************************************
    <jsp:useBean id="upload" class="uploadtest.uploadActionForm" scope="session">
    </jsp:useBean>
    <%
         byte[] rgb=(byte[])session.getAttribute("byte");
         request.setAttribute("byArr", rgb);
    %>
    <!--
    The image data is now on the request object.
    Forward the user to the showImage servlet.
    That servlet will process and display the image data contained on the request object.
    -->
    Image is<p>
    <jsp:forward page="/showimage" />
    Struts Action Class - UploadAction.java **************************************************
    import javax.servlet.http.*;
    import java.io.*;
    import org.apache.struts.upload.FormFile;
    import org.apache.struts.action.*;
    public class uploadAction extends Action {
    public ActionForward execute(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) {
    uploadActionForm upload = (uploadActionForm) actionForm;
    try {
    int size=upload.getFileUpload().getFileSize();
    //if (image != null) {
    byte[] byteArr = new byte[size];
    //Create an input stream to read the uploaded file.
    ByteArrayInputStream bytein = new ByteArrayInputStream(upload.getFileUpload().getFileData());
    // Load the input stream into the byte Array.
    bytein.read(byteArr);
    // Close the input stream.
    bytein.close();
    // Load the byte[] into the content field.
    upload.setContent(byteArr);
    HttpSession ses=httpServletRequest.getSession();
    ses.setAttribute("byte",byteArr);
    return actionMapping.findForward("success");
    } catch (Exception ex) {
    ex.printStackTrace();
    return actionMapping.findForward("success");
    Struts ActionForm class ---uploadActionForm.java***************************************************
    package uploadtest;
    import org.apache.struts.action.*;
    import org.apache.struts.upload.*;
    import javax.servlet.http.*;
    public class uploadActionForm extends ActionForm {
    private FormFile fileUpload;
    private byte[] content;
    public FormFile getFileUpload() {
    return fileUpload;
    public void setFileUpload(FormFile fileUpload) {
    this.fileUpload = fileUpload;
    public byte[] getContent()
    return content;
    public void setContent(byte[] theFile)
    this.content = theFile;
    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
    /**@todo: finish this method, this is just the skeleton.*/
    return null;
    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
    Servlet to display image --- ShowImage.java ********************************************************
    import java.io.*;
    import java.util.*;
    public class ShowImage extends HttpServlet {
    //Initialize global variables
    protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
    byte[] rgb = (byte[]) request.getAttribute("byArr");
    if (rgb != null)
    response.setContentType("image/gif");
    OutputStream stream = response.getOutputStream();
    stream.write(rgb);
    else
    response.setContentType("text");
    response.getWriter().write("attribute byArr not found");
    This code will enable to to upload and display the image. If you know Struts, then you can write the Struts-Config.xml file by yourself. Other wise write to me, I will send you that. If you want to save the image in database, then you have to keep it as BLOB datatype is database. For database you need to send the byte array in the uploadAction.java file to database. Database will keep the image as binary.
    Thanks
    Amit

  • Can`t upload images using Firefox.

    I can`t upload images on twitpic.com, yfrog.com and other websites where you can upload images. I don`t use proxy server.

    Try the '''''reset''''' described here - for all the prefs for that printer: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer

  • Frame Images using iPhoto?

    Hello, i was wondering if it was at all possible to add a frame around pictures using iPhoto?
    I would like to be able to have that effect of adding a simple white or black 'edge' around pictures.
    Is this something that can be done in iPhot? if not, is it possible to get an 'add-on' effect added into iPhoto from a third party?
    I have downloaded the trial version of Pixelmator but I cannot figure out how to do this. Seeing how complete Pixelmator is, I presume this would be pretty simple and standard effect. Yet I cannot figure out how to do it.
    Any help with this 'simple' effect would be much appreciated.
    ps : can watermarks be added too?
    Thxs,
    me

    No, iPhoto does not have that capability. You will need a 3rd party image editor link one of the following;
    Image Editors that support the use of layers:
    Photoshop Elements 8 for Mac - $80
    GraphicConverter- $35
    Rainbow Painter - $30
    Acorn- $50
    Pixelmator-$60
    Seashore- Open Source
    GIMP for Mac- Open Source
    If you want iWork you can also add frames on photos there and then import back into iPhoto as a new file. You can use iWeb also.
    OT

  • Upload Image Using JSTL

    hi,
    Can anyone please help to Upload the Image using JSTL please give me the link of sample application. Or if anyone knows having a custom tag and JSF.
    Thanks.

    See the post (this page) on " Storing documents in Database using JSP"
    The last post includes code for a servlet which uploads a file to the server, which I think is almost exactly what you're after.

  • Getting "Warning: The file upload failed.No such file or directory." while trying to upload image using af:inputFile

    Hi,
    I have a <af:inputFile> component which will upload only image file and render  the corresponding image...
    It work with normal application deployed on weblogic server however when i use same taskflow as a part of human task in SOA BPM worklist...
    I get this warning message "Warning: The file upload failed.No such file or directory." for certain files where as it works for certain image files.
    And in BPM whenever i upload PNG file it throws this error.
    Please help.

    For some files like Images with .png extensions it gives following error :
    java.io.IOException: No such file or directory
      at java.io.UnixFileSystem.createFileExclusively(Native Method)
      at java.io.File.checkAndCreate(File.java:1705)
      at java.io.File.createTempFile0(File.java:1726)
      at java.io.File.createTempFile(File.java:1803)
      at org.apache.myfaces.trinidadinternal.config.upload.UploadedFileImpl._createOutputStream(UploadedFileImpl.java:284)
      at org.apache.myfaces.trinidadinternal.config.upload.UploadedFileImpl.loadFile(UploadedFileImpl.java:208)
      at org.apache.myfaces.trinidadinternal.config.upload.CompositeUploadedFileProcessorImpl._processFile(CompositeUploadedFileProcessorImpl.java:344)
      at org.apache.myfaces.trinidadinternal.config.upload.CompositeUploadedFileProcessorImpl.processFile(CompositeUploadedFileProcessorImpl.java:95)
      at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl._doUploadFile(FileUploadConfiguratorImpl.java:329)
      at org.apache.myfaces.trinidadinternal.config.upload.FileUploadConfiguratorImpl.beginRequest(FileUploadConfiguratorImpl.java:162)
      at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl._startConfiguratorServiceRequest(GlobalConfiguratorImpl.java:610)
      at org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl.beginRequest(GlobalConfiguratorImpl.java:216)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:155)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.bpel.services.workflow.client.worklist.util.WorkflowFilter.doFilter(WorkflowFilter.java:175)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.bpel.services.workflow.client.worklist.util.DisableUrlSessionFilter.doFilter(DisableUrlSessionFilter.java:70)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:180)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:324)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:163)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

  • How to upload image using JSP under Tomcat

    Hi,
    I want to write a piece of code, which can upload the local image files to the server, also, the user can view the image by click the image name. I use jakarta_tomcat_.1.xx. Can anyone give me some reference about image transfer?
    Thanks a lot!
    Junmin

    do a search for "JSP file upload" and you should find lots of information.

  • IPhoto book upload failed using iPhoto 9.4.3 and Mountain Lion

    Hi
    I have tried to upload iPhoto book several times but the upload failed.  I have tried rebooting my iMac in Safe Mode but this results in iPhoto closing when I try to buy my book.  I have uploaded books in the past using Snow Leopard with no issues.

    I hope this helps, thank you for taking an interest in this problem.
    Process:         iPhoto [233]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.3 (9.4.3)
    Build Info:      iPhotoProject-720091000000000~1
    App Item ID:     408981381
    App External ID: 15017489
    Code Type:       X86 (Native)
    Parent Process:  launchd [140]
    User ID:         501
    Date/Time:       2013-07-09 21:39:12.757 +1000
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          24555 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  21232 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      1BE54ADD-87CC-3C04-8164-249B4EFBBE28
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** +[NSString stringWithUTF8String:]: NULL cString'
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x0184ce8b __raiseError + 219
    1   libobjc.A.dylib                     0x04e5052e objc_exception_throw + 230
    2   CoreFoundation                      0x017ac60b +[NSException raise:format:] + 139
    3   Foundation                          0x049f2cf1 +[NSString stringWithUTF8String:] + 90
    4   iLifePageLayout                     0x033d71c7 -[KHPDFGenerator _retrieveGPUInfo] + 83
    5   libobjc.A.dylib                     0x04e5d5d3 -[NSObject performSelector:withObject:] + 70
    6   Foundation                          0x04a35326 __NSThreadPerformPerform + 395
    7   CoreFoundation                      0x0172304f __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
    8   CoreFoundation                      0x01722a79 __CFRunLoopDoSources0 + 233
    9   CoreFoundation                      0x01748826 __CFRunLoopRun + 934
    10  CoreFoundation                      0x0174801a CFRunLoopRunSpecific + 378
    11  CoreFoundation                      0x01747e8b CFRunLoopRunInMode + 123
    12  HIToolbox                           0x06bd2f5a RunCurrentEventLoopInMode + 242
    13  HIToolbox                           0x06bd2cc9 ReceiveNextEventCommon + 374
    14  HIToolbox                           0x06bd2b44 BlockUntilNextEventMatchingListInMode + 88
    15  AppKit                              0x054da93a _DPSNextEvent + 724
    16  AppKit                              0x054da16c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    17  AppKit                              0x0572d210 -[NSApplication _realDoModalLoop:peek:] + 667
    18  AppKit                              0x0572d354 -[NSApplication _doModalLoop:peek:] + 67
    19  AppKit                              0x0572d515 -[NSApplication runModalForWindow:] + 198
    20  iLifePageLayout                     0x033ed7f8 -[KHLightboxOverlayView lightboxViewFinishedEnterAnimation:] + 125
    21  iLifePageLayout                     0x033ee578 -[KHLightboxEnvelopeView animationDidStop:finished:] + 230
    22  QuartzCore                          0x03606184 _ZN2CA5Layer23run_animation_callbacksEPv + 276
    23  libdispatch.dylib                   0x05077c82 _dispatch_client_callout + 46
    24  libdispatch.dylib                   0x0507d2e3 _dispatch_main_queue_callback_4CF + 223
    25  CoreFoundation                      0x01748c29 __CFRunLoopRun + 1961
    26  CoreFoundation                      0x0174801a CFRunLoopRunSpecific + 378
    27  CoreFoundation                      0x01747e8b CFRunLoopRunInMode + 123
    28  HIToolbox                           0x06bd2f5a RunCurrentEventLoopInMode + 242
    29  HIToolbox                           0x06bd2bf5 ReceiveNextEventCommon + 162
    30  HIToolbox                           0x06bd2b44 BlockUntilNextEventMatchingListInMode + 88
    31  AppKit                              0x054da93a _DPSNextEvent + 724
    32  AppKit                              0x054da16c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    33  AppKit                              0x054d05cc -[NSApplication run] + 855
    34  AppKit                              0x054735f6 NSApplicationMain + 1053
    35  iPhoto                              0x000460b9 iPhoto + 65721
    36  iPhoto                              0x00045705 iPhoto + 63237
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation                0x0184d6a7 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x04e5052e objc_exception_throw + 230
    2   com.apple.CoreFoundation                0x0184cd21 -[NSException raise] + 17
    3   com.apple.AppKit                        0x0572d557 -[NSApplication runModalForWindow:] + 264
    4   com.apple.iLifePageLayout               0x033ed7f8 -[KHLightboxOverlayView lightboxViewFinishedEnterAnimation:] + 125
    5   com.apple.iLifePageLayout               0x033ee578 -[KHLightboxEnvelopeView animationDidStop:finished:] + 230
    6   com.apple.QuartzCore                    0x03606184 CA::Layer::run_animation_callbacks(void*) + 276
    7   libdispatch.dylib                       0x05077c82 _dispatch_client_callout + 46
    8   libdispatch.dylib                       0x0507d2e3 _dispatch_main_queue_callback_4CF + 223
    9   com.apple.CoreFoundation                0x01748c29 __CFRunLoopRun + 1961
    10  com.apple.CoreFoundation                0x0174801a CFRunLoopRunSpecific + 378
    11  com.apple.CoreFoundation                0x01747e8b CFRunLoopRunInMode + 123
    12  com.apple.HIToolbox                     0x06bd2f5a RunCurrentEventLoopInMode + 242
    13  com.apple.HIToolbox                     0x06bd2bf5 ReceiveNextEventCommon + 162
    14  com.apple.HIToolbox                     0x06bd2b44 BlockUntilNextEventMatchingListInMode + 88
    15  com.apple.AppKit                        0x054da93a _DPSNextEvent + 724
    16  com.apple.AppKit                        0x054da16c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    17  com.apple.AppKit                        0x054d05cc -[NSApplication run] + 855
    18  com.apple.AppKit                        0x054735f6 NSApplicationMain + 1053
    19  com.apple.iPhoto                        0x000460b9 0x36000 + 65721
    20  com.apple.iPhoto                        0x00045705 0x36000 + 63237

  • Uploading images using MapBuilder

    Dear everyone
    I have some jpeg raster images with world coordinate jgw files and I wish to upload using Map Builder.
    The files are stored on a Unix server but Map Builder is located in a windows XP operating system. Is there away of connacting to the remote Unix server in Map Builder. All I can see is the local windows file system when I click on image file name. I also cannot see how to connect to a remote server within this dialogue box.
    Am I right in thinking that jpeg raster images can only be uploaded in Map Builder with Oracle 10.2.
    Kind regards
    Tim

    Tim,
    In general for 10gR2, you should use the GeoRasterLoader, instead of MapBuilder, to load images either remotely or locally. For this command line Java tool, please follow chapter 1 of the GeoRaster manual to find out where the georaster loader and exporter and viewer are. For 10gR2, you must install the sdo demos from the Company CD, which includes the GeoRaster tools and a README file on how to use it. To run this java loader, simply connect thru the configuration of your server-side listener.
    both GeoRasterLoader and MapBuilder don't support remote files.
    hope this helps,
    Jeffrey

  • Help in uploading image using module pool programming!!!

    hi all
       I need a help from you all...iam designing my company's Visitors Identity card...im workin in module pool programming,i need to know wat function module should i use to get jpg image n to display it...
    i hav tried it using DP_PUBLISH_WWW_URL func module but it asks for OBJID dono wat should i give...i referred SAP_PICTURE_DEMO.....
    <b>plz suggest me with some solutions to diplay image which is stored in desktop....</b>
    asha.......

    hi,
    u try this importing jpeg image  in transcation oaor .
    in that give class name as pictures and class type as ot and execute it.
    in that u import which image u want to say for suppose a DUMMY.
    FORM TOP_OF_PAGE.                                           "#EC CALLED
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
            EXPORTING
                <b>I_LOGO             = 'DUMMY'</b>
                "'ENJOYSAP_LOGO'
                IT_LIST_COMMENTARY =  GT_LIST_TOP_OF_PAGE.
    ENDFORM.                    "TOP_OF_PAGE
    this top of page u use in FM
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         I_BACKGROUND_ID                   = 'ALV_BACKGROUND'
         I_CALLBACK_PROGRAM                = sy-repid
         I_CALLBACK_PF_STATUS_SET          = gc_pf_status_set
         I_CALLBACK_USER_COMMAND           = GC_USER_COMMAND
        <b> I_CALLBACK_TOP_OF_PAGE            = 'TOP_OF_PAGE'</b>
    this may solve ur problem.

  • Uploading Images using Mobile Application(Android)

    I was going through the tutorials on the Flex Mobile Test Drive.Those are great tutorials for sure.
    I found one thing missing from there is the way one can upload photos from the mobile device.In general Flex application a browse window comes on using file reference.But what to do on Mobile device. Do I need to use the same file refrence and if yes how to display the folder from the memory card etc.
    Thanks
    Anurag

    I'm in the process of implementing this, so I can't say if it works or not.
    http://www.chaosm.net/blog/2011/06/04/flex-mobile-upload-photo-to-server-with-php/

Maybe you are looking for

  • 10.6.1: panic running latest vuze

    Happened a number of times. Have run disk verify, etc; happens without any uncorrected problems. Panic message (give or take the hex) always the same. HW: Macmini2,1; various USB/FW devs, Only other oddity 4GB RAM installed (3 usable, maxmem=3072 was

  • What is flash storage?

       What is the difference in flash storage and a traditional hard drive? Why would I want to pay so much for a laptop that only has a fraction of the storage capacity of a old hard drive? If I have a lot of movies, music, games, etc. on my laptop, wo

  • Changed info in iTunes does not save

    I change the info on songs or albums and iTunes, but iTunes does not save the changes the next time I open iTunes

  • E55 (& E52?) 33.002 skipping music workaround

    I updated my E55 to 33.002 this morning to solve my bluetooth problems after a hard reset to avoid as many problems as possible.  Unfortunately I swapped an irritating problem for a real showstopper - practically all my music tracks were skipped over

  • Check already marked as "cashed" in check register -- no posting is made

    hi everyone, i am getting the following message as "check already marked as "cashed" in check register -->no posting will be made". we are getting this message when we received the paid file dated 07/26/2007 for the work of 07/25/2007 successfully.