LOSING IT: "Image Loading" from a DVD is NOT!!

I don't know what's the deal. Aren't we supposed to have our photos anywhere? That's how Aperture is being marketed right?
How come I can't edit my referenced photos from a DVD? I import them fine and during the import it seems I can edit the photos. But say that I want to edit some of my photos a week after; Aperture simply doesn't allow that! It tells me that the "Image is Loading", but the DVD doesn't even spin.
It's not the DVD player as I can access the photos in the Finder and even edit them using Preview....
H....E....L.....P.....!

Hi Eduardo,
Thanks for the reply. I had tried that to no avail. It's weird because the photos I have in external drives have no problems. Only DVDs.
The screen to manage referenced files (the top part) shows that all files were found (the ones I have referred to in my DVD as well). However in the "volume" column it only shows "All Volumes" and my external hard drive. I'm assuming that here also the DVD volume should also be listed. This may be the reason why it doesn't work. But how can I force it to see my DVD? Any other approach?
Any ideas?

Similar Messages

  • Jasper report on HTML when one image loaded from database and for the other

    How to generate jasper report on HTML when one image loaded from database and for the other we give a image path
    My code
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
              exporter = new JRHtmlExporter();
              exporter.setParameter(JRExporterParameter.JASPER_PRINT, print);
              exporter.setParameter(JRExporterParameter.OUTPUT_STREAM, baos);
              exporter.setParameter(JRHtmlExporterParameter.IMAGES_URI, strImageInputDirectory);
         exporter.setParameter(JRHtmlExporterParameter.IMAGES_DIR_NAME, strImageOutputPath == null ? "." : strImageOutputPath);
         exporter.setParameter(JRHtmlExporterParameter.IS_OUTPUT_IMAGES_TO_DIR, Boolean.TRUE);
         exporter.setParameter(JRHtmlExporterParameter.IS_USING_IMAGES_TO_ALIGN, Boolean.FALSE);
         exporter.setParameter(JRHtmlExporterParameter.IS_WHITE_PAGE_BACKGROUND, Boolean.FALSE);
              exporter.exportReport();
              byte[] bdata = ((ByteArrayOutputStream) baos).toByteArray();
    Can any one help pls
    Message was edited by:
    ameet.au

    hey sorry for posting it in this forum.
    but do u have sample code for making it work.. since i am able to do it on PDF format(image from Database and another stored in the webserver) using
    byte image[] =(byte[]) outData.get("image");
                        ByteArrayInputStream img = new ByteArrayInputStream(image);
                        hmimg.put("P_PARAMV3", img);
    print = JasperFillManager.fillReport(reportFileName, hmimg, jrxmlds);
    bdata= JasperExportManager.exportReportToPdf(print);

  • ERR "Could not load "image-loading" from icon theme"

    Just finished installing OpenBox on a virtualbox
    But cannot get nitrogen to set background.
    while running nitrogen from command line
    [utkarsh@myhost ~] $ nitrogen
    ERR: Could not load "image-loading" from icon theme, this indicates a problem with your Gtk/Gtkmm install

    I too had to the same problem. Couldn't find why we get that error. But could set the wallpaper using the command line.

  • Sunday, I downloaded iTunes app on to my new PC.  Songs purchased over the years were present but all of the albums I loaded from CD's are not present.  How do I resore my iTunes account with all of my albums, playlists, etc.?

    Sunday, I downloaded iTunes app on to my new PC.  Songs purchased over the years were present but all of the albums I loaded from CD's are not present.  How do I resore my iTunes account with all of my albums, playlists, etc.?  I have not attempted to sysnch my IPod Nano with the new software.

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • Pre-loading images loaded from XML.

    Hello,
    I hoping for some guidance please.
    I have a Gallery that loads thumbnails from an XML.
    I have added a pre-loader to each one of the thumbnails as it is being loaded from the XML.
    My problem is that I can't figure out how to remove the pre-loaders after it has called the Event.COMPLETE.
    With my curent code,
    As it completes loading the thumbnails, it throws an error and only removes the very last pre-loader.
    Thanks for any help you can provide.
    Here is the code I am currently using.
    var urlRequest:URLRequest = new URLRequest("images.xml");
    var urlLoader:URLLoader = new URLLoader();
    var myXML:XML = new XML();
    var xmlList:XMLList;
    urlLoader.load(urlRequest);
    myXML.ignoreWhitespace = true;
    urlLoader.addEventListener(Event.COMPLETE,fileLoaded);
    var arrayURL:Array = new Array();
    var arrayName:Array = new Array();
    var holderArray:Array = new Array();
    var nrColumns:uint = 1;
    var wheel:MovieClip;
    var holdMe;
    var thumbsprite:Sprite = new Sprite();
    addChild(thumbsprite);
    var thumb:Thumbnail;
    var thumbsHolder:Sprite = new Sprite();
    thumbsprite.addChild(thumbsHolder);
    function fileLoaded(event:Event):void {
         myXML = XML(event.target.data);
         xmlList = myXML.children();
         for (var i=0; i<xmlList.length(); i++) {
              var picURL:String = xmlList[i].url;
              var picName:String = xmlList[i].big_url;
              arrayURL.push(picURL);
              arrayName.push(picName);
              holderArray[i] = new Thumbnail(arrayURL[i],i,arrayName[i]);
              holdMe = holderArray[i];
              var loader:Loader = new Loader();
              loader.load(new URLRequest(xmlList[i].url));
              wheel=new rootz();
              holdMe.addChild(wheel);
              loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preload);
              loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completed);
              function preload(event:ProgressEvent):void {
                   var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
                   trace(String(percent) + "%");
              function completed(event:Event):void {
                   holdMe.removeChild(wheel);
              if (i<nrColumns) {
                   holderArray[i].y = 65;
                   holderArray[i].x = i*100;
              } else {
                   holderArray[i].y = holderArray[i-nrColumns].y+110;
                   holderArray[i].x = holderArray[i-nrColumns].x;
              thumbsHolder.addChild(holderArray[i]);

    I am not sure why but the code I posted did not post right,
    Here is my code -
    var urlRequest:URLRequest = new URLRequest("images.xml");
    var urlLoader:URLLoader = new URLLoader();
    var myXML:XML = new XML();
    var xmlList:XMLList;
    urlLoader.load(urlRequest);
    myXML.ignoreWhitespace = true;
    urlLoader.addEventListener(Event.COMPLETE,fileLoaded);
    var arrayURL:Array = new Array();
    var arrayName:Array = new Array();
    var holderArray:Array = new Array();
    var nrColumns:uint = 1;
    var wheel:MovieClip;
    var holdMe;
    var thumbsprite:Sprite = new Sprite();
    addChild(thumbsprite);
    var thumb:Thumbnail;
    var thumbsHolder:Sprite = new Sprite();
    thumbsprite.addChild(thumbsHolder);
    function fileLoaded(event:Event):void {
    myXML = XML(event.target.data);
    xmlList = myXML.children();
    for (var i=0; i<xmlList.length(); i++) {
    var picURL:String = xmlList[i].url;
    var picName:String = xmlList[i].big_url;
    arrayURL.push(picURL);
    arrayName.push(picName);
    holderArray[i] = new Thumbnail(arrayURL[i],i,arrayName[i]);
    holdMe = holderArray[i];
    var loader:Loader = new Loader();
    loader.load(new URLRequest(xmlList[i].url));
    wheel=new rootz();
    holdMe.addChild(wheel);
    loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, preload);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completed);
    function preload(event:ProgressEvent):void {
    var percent:Number = Math.round(event.bytesLoaded / event.bytesTotal * 100);
    trace(String(percent) + "%");
    function completed(event:Event):void {
    holdMe.removeChild(wheel);
    if (i<nrColumns) {
    holderArray[i].y = 65;
    holderArray[i].x = i*100;
    } else {
    holderArray[i].y = holderArray[i-nrColumns].y+110;
    holderArray[i].x = holderArray[i-nrColumns].x;
    thumbsHolder.addChild(holderArray[i]);

  • Images loading from url

    Hi All !
    I am trying to load images onto a canvas using url source.
    The images loaded are forming a map , so its important that
    every image will be
    exactly in the wright place.
    The problem is that sometimes an image is not loaded , and I
    get error 504 "Gateway RequestTimeout" ,
    what i want to do is shorten the time of the error so if an
    image isnt loaded after 5 seconds i will get the error
    and reload it. How do i change the timeout of the loading ?
    or maybe i should use another method to load the images to
    the canvas ?
    10x alot !
    mr. flex ;)

    hi,
    looks like PaintComponent() instead of paint did the job.
    thanks a million..
    for those interested in loading images, I find ImageIcon very limited and at the end I found a better solution :
    public class ImageComponent extends JComponent implements ImageObserver{
        private Image image;
        public void loadImage(URL imageURL){           
                image = Toolkit.getDefaultToolkit().getImage(imageURL);
                prepareImage(image,getWidth(),getHeight(), this);
        public boolean imageUpdate(Image img, int infoflags, int x, int y, int width, int height){
            System.out.print("."); // loading progress...
        public void paintComponent(Graphics g){
            if(image!=null){
                 g.drawImage(image,0,0,null);
    }it is far nicer as it displays dots while loading... up to you to attach progress bars or favorit loading guizmo...
    DrLeinster.

  • Error while Image loading from database

    I'am using generic handler for loading Image from data bases. Its work fine when when I hardcode the ImageID in QureyString when call Handler. But it's giving errors of different type when I dynamically pass value to qurey string(from datatable).
    "There is already an open DataReader associated with this Command which must be closed first." 
    OR
    "There is already an open DataReader associated with this Command which must be closed first."
    here is a code of Handler
    public void ProcessRequest(HttpContext context)
    Int64 id = Convert.ToInt64(HttpContext.Current.Request.QueryString["adid"]);
    // dt = obj_dalayer.GetRecpDetailsByID(id);
    dt=GetRecpDetailsByID(id);
    if (dt.Rows.Count > 0)
    //context.Response.ContentType = "image/jpeg";
    context.Response.BinaryWrite((byte[])dt.Rows[0][2]);
    public DataTable GetRecpDetailsByID(Int64 reid)
    try
    obj_DB.Open();
    obj_sqlcmd = new SqlCommand("GetRecpDetailsByID", obj_DB.GetDBConnection());
    obj_sqlcmd.CommandType = CommandType.StoredProcedure;
    obj_sqlcmd.Parameters.Add(new SqlParameter("@rid", reid));
    obj_sqlda = new SqlDataAdapter();
    obj_dt = new DataTable();
    obj_sqlda.SelectCommand = obj_sqlcmd;
    obj_sqlda.Fill(obj_dt);
    return obj_dt;
    finally
    obj_DB.Close();
    And here is a HTML and ServerSide code on ASPX page of call handler.
    <img id="img2" alt="Image" runat="server" src='<%#"~/ImageReqHandler.ashx?adid="+Eval("ReID")%>' width="179" height="148" /
    I'm using Eval("ReID") to get ID of Image from datatable.

    Ayez,
    This is the VB forum, try it in the C# form.
    http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral
    However, there they will probably tell you that although your problem is C#, it is ASP.Net some programmers become scared if it is Web you know.
    Success
    Cor

  • Problem with dimension of an image loaded from a database

    Hi,
    I succeed in saving image in a MSAccess database with this code:
    Image img;
    image = new ImageIcon("d:\\prova\\comore.jpg");
    img=image.getImage();
    try{
    int[] pix = new int[img.getWidth(null) * img.getHeight(null)];
    PixelGrabber pg = new PixelGrabber(img, 0, 0, img.getWidth(this), img.getHeight(this), pix, 0, img.getWidth(this));
    pg.grabPixels();
    System.out.println(pix.length);
    byte[] pixels = new byte[img.getWidth(this) * img.getHeight(this)*4];
    for(int j=0;j<pix.length;j++){
    pixels[j] = new Integer(pix[j]).byteValue();
    String sql="insert into Immagini values ('1',?)";
    PreparedStatement ps = con.prepareStatement(sql);
    ps.setBytes(1,pix);
    ps.executeUpdate();
    }catch(Exception except){
    except.printStackTrace();
    then, I've load the image with this code:
    try{
    String query = "select * from Immagini where IDprog = 1";
    Statement s = con.createStatement();
    s.executeQuery(sql);
    ResultSet rs=s.getResultSet();
    rs.next();
    Viaggio vi = new Viaggio(rs.getInt(1),rs.getBytes(2));
    byte[] b=vi.getBytesImage();
    int[] intImage = new int[b.length];
    for(int j=0;j<b.length;j++){
    intImage[j]=(int)b[j];
    Image img = createImage(new MemoryImageSource(124,100,intImage,0,124));
    ImageIcon imgic = new ImageIcon(img);
    jLabel3.setIcon(imgic);
    }catch(Exception tps){
    tps.printStackTrace();
    All works correctly;
    but I've two problems:
    How do I do to take the dimension of the image from the byte array?
    infact in the code up written I've used 124 and 100 as image dimension;
    but I can have images of different dimension.
    The other problem is:
    Why in the image that is loaded are not the same number of colors of the image saved, but only a few, so that the image seems to be out of focus?
    Thank and excuse me for my english.
    I'm Italian.

    Noone can help me?
    Thank

  • Image Loaded From Database not Visible in JLabel

    import java.sql.*;
    import javax.swing.*;
    import java.awt.*;
    public class consqlimage
         public consqlimage()
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   Connection con = DriverManager.getConnection("jdbc:odbc:dsn","sa","manshu");
                   Statement stat = con.createStatement();
                   ResultSet rs = stat.executeQuery("Select pic from t_image");
                   byte b[];
                   b = new byte[1000];
                   while(rs.next())
                        b= rs.getBytes("pic");
                   for(int a=0;a!=b.length;a++)
                        System.out.println(b[a]);
                   JFrame f = new JFrame();
                   ImageIcon i1 = new ImageIcon(b+"jpeg");
                   JLabel l1=new JLabel("january",i1,SwingConstants.LEFT);
                   f.getContentPane().add(l1);
                   f.getContentPane().setLayout(new FlowLayout(FlowLayout.LEFT));
                   f.setSize(500,500);
                   f.setVisible(true);
                   con.close();
              catch(Exception e)
                   System.out.println(e);
         public static void main(String args[])
              new consqlimage();
    }

    Any reason why you are adding the "jpeg" to the end of the byte array?
    You should only have to pass the byte array to the ImageIcon constructor.

  • How to load from burnt DVD

    my friend burnt the tiger dvd for me, however when i go to the install screen to restart it never insalls for me, it just takes me back to my normal OS...what should i do, how do i get this to install?

    What you are attempting to accomplish is in violation of the Software License Agreement For Mac OS X.
    Expect your post to be deleted.
    Apple Discussions Terms of Use:
    3. Keep within the Law
    * No material may be submitted that is intended to promote or commit an illegal act.

  • Password reset from Install DVD does not work

    PowerBook G4 17"
    Mac OSX 10.4.10
    After a system failure, I got the gray screen with the question mark. I restarted from an external drive, and, from "Disk Utility" I ran both "disk repair" and "permissions repair" to the internal drive. There were several errors, but all were repaired. When I restarted from the internal drive I was asked for a user id and a password. I entered them, but were refused. Then, I followed the steps indicated in "Mac OS X: Changing or resetting an account password" in this forum: I started from the install DVD, changed the password, and restarted, but the system refuses my user and password, (the window shakes and blanks out the password field). I have repeated all the steps several times, but the system keeps refusing my login. When I start from the external drive I can see all my documents, files, folders, image, etc, in the internal disk.
    I will appreciate any sugestions in order to solve this problem. Thanks a lot.

    Hi, glad to know that your LaCie HD is OK. now if you follow the instructions for Silverkeeper, you will find that it will give you an option to copy your LaCie HD clone to your Mac's internal drive. I don't have Silverkeeper, so any info. I give is from the link I gave to you earlier.
    This part in particular ..
    Drag the volume icon for the drive you have started from to the Source field of SilverKeeper.
    Drag the volume icon for the drive your wish to clone to, to the Destination field.
    "Save SilverKeeper settings.
    Click Go, and wait until completion.
    When Backup is complete, quit SilverKeeper.
    Restart your Mac; don't press any keys; you should restart to your normal, original startup drive; if >there is a login prompt, login to account that has Admin privileges
    Open System Preferences - select Startup Drive control preference.
    Select the backup drive as the startup drive.
    Restart your Mac; you should then startup just as if you had started up from the original, but it >should be your backup drive. You should not be prompted for any OS X registration.
    Please review the release notes for SilverKeeper at the support website:
    http://www.silverkeeper.com or http://www.lacie.com/silverkeeper which will reveal the most >current information."
    When you have done this you will have an exact copy of your LaCie HD on your computer. Nothing else needs to be done after this - you just use your Mac!
    Best wishes,
    Robert.

  • Image requests from flash gallery are not caching

    The image requests that happen from a flash gallery are not getting cached in Safari browser, they get cached properly in IE, Firefox & Chrome.
    For Example - Load the following gallery (http://www.monoslideshow.com/demo/) in Safari browser, and monitor the HTTP requests using Charles proxy tool or any other similar tool.
    The images are downloaded during the 1st iteration of the gallery, which is expected, but even for the further iterations the images are downloaded from the source, rather than taking from the cache.

    Hello All,
    It was disappointing not receiving a reply from anybody on
    the
    following.. Please provide me some insight.
    Thanks.
    Warm Regards,
    Parag Shah
    Parag Shah wrote:
    > Hello All,
    >
    > We are creating a drawing application. As usual, it has
    a canvas and all
    > the necessary tools. We do have an option viz. canvas
    size which allows
    > to have larger canvases. However, when the user chooses
    larger canvas,
    > the application size remains the same but the canvas now
    has scrolls
    > (using scroll pane) revealing more space by scrolling.
    Now, the problem
    > is while we save the canvas image. If the canvas size is
    minimal (so
    > that there are no scrolls) naturally everything which is
    seen is saved
    > as a JPEG file. However, when the canvas size is larger,
    only that much
    > part gets saved which is visible and fit within the
    viewing area. Of
    > course we can scroll and see the other part of the
    drawing but it saves
    > only the frame currently within the view and not the
    entire drawing.
    >
    > We are using Flash 8, AS 2.0 (which is inevitable
    looking into the
    > project requirements).
    >
    > Desperately seeking help!!!
    >
    > Thanks in advance.
    >
    > Warm Regards,
    >
    > Parag Shah

  • Re-Install of 10.4.6 from original DVD will not complete on MacBook Pro

    I purchased a new MacBook Pro 15" laptop around Oct 1, 2006 and I am now unable to use it.
    It came with 10.4.6 installed. I updated the system to 10.4.7 and 10.4.8 using update packages directly from the Apple site. Then I ran a Security Update to 10.4.8 and nothing has worked right since.
    I tried using Disk Utility in every way and was always able to repair with no errors found. I tried to troubleshoot various applications to see if they were the issue with no improvement. The ultimate problem was the entire system would freeze and would have to be rebooted. Sometimes the system would boot up, sometimes the apple and gear would run and then a circle with a line through it would replace the apple symbol. Sometimes I would get the dreaded blinking folder with question mark. Most of the time rebooting could eventually get you to the desktop, but the system never worked for longer than 15 to 30 minutes.
    So, I decided to reinstall 10.4.6 from the install DVD that came with my computer. I cannot get 10.4.6 re-installed. I have used disk utility to erase, repair, partition and so on and after a few tries it repairs succesfully.
    I ran the Hardware test and it says no trouble found.
    The install log ends with the following three errors:
    1. unable to copy package source file OSInstall.dist to destination reciept ...
    2. unable to copy package source file archive.bom to destination reciept
    3. Install failed: Some Files for Base System may not have been written correctly.
    I am at the end of my rope. Please help. Thanks!

    I agree...bad drive or bad controller or even a bad connection. Hardware issues on computers still under warranty should be dealt with by Apple. Even though you have already run the hardware test, there could still be a hardware problem. You could try booting from a disk repair utility like Disk Warrior but that means you would have to buy the utility and that's money you should not have to spend on a machine that is still covered by warranty.
    There is one other thing you could try and that would to try and boot the computer into "safe mode" and try everything discussed in this article:
    http://docs.info.apple.com/article.html?artnum=106214
    Also, if you have access to another Mac, you could try booting your computer into target disk mode and then run disk repair from the other computer. Also, if you computer boots into target disk mode, you can copy any vital data and files before you hand it over to Apple for repair.

  • HIERARCHY load from R/3 does not complete

    Hi there gurus,
    I am trying to load the 0GL_ACCOUNT hierarchy master data, but it never finishes. The attributes and text loaded successfully. We have already successfully installed the BC on R/3, then replicated it in BW, then installed the BC in BW. The master data loads fine into the PSA, but from the PSA, it just sits in yellow status and then finally times out.
    Any ideas please?
    Thx
    Charl

    Hi Charl,
         Can u just check the hierarchy for 0GL_ACCOUNT characteristic and compare it with R/3 hierarchy . If both are identical then you can manually turn it to green status.
    Regards,
    Prakash B

  • Why won't any videos load from safari that are not related to YouTube work?

    I'm trying to load video replies from ask fm but they are not loading, and it's the same with all other videos that aren't related to YouTube. Is there some sort of software or programme that I need to download?

    https://itunes.apple.com/us/app/skyfire-web-browser-your-path/id384941497?mt=8
    http://www.guidingtech.com/16698/play-flash-videos-iphone-ipad-ipod-touch/

Maybe you are looking for