Can't display multiple images simultaneously in PSE 9

In PSE 8 I could drag two images from the tray onto the main display for side by side comparison. And when I went into "Quick" edit mode, I'd see before and after images of the same photo side by side. Now in PSE 9 I can't do either of those things. Is there a way?

In Full Edit go to the preferences>General and turn on Allow Floating windows, then you can use it as you did in PSE 8.
In Quick Fix there's a pulldown menu below the preview area where you can set it to display Before/after.

Similar Messages

  • Can I search for multiple images simultaneously in Aperture?

    Can I search for multiple images simultaneously in Aperture?  For example, search for 'Image2.jpg, Image3.jpg, Image5.jpg' by image name, out of different folders? 

    dusan -- your best procedure is likely to be to type the first file name (without extension) in the search field of the Photos View, and then mark that file either with a Flag or a color label.  (You might clear all Flags prior.)  If you have a lot of images or a slow computer (or both ) you may have to wait a few seconds.  Aperture will show "Loading ... " on the left side of the tool strip while it churns through your images.
    Then hit backspace twice, and type "60".  Mark the file found.
    Repeat with variations.
    Then go to Flagged view, or filter the whole Photos view for the color-label you used.

  • Load and Display Multiple Images in a Web Dynpro Table

    I am new to Web Dynpro and I am wondering if anyone can help me with an application that I am currently developing. I have a particular requirement to store images in a database table (not MIME repository) and then display them in a WD table element. An image can be of JPEG, PNG or TIFF format and is associated with an employee record.
    I want to create a view in my application that displays multiple images in a table, one image per row. I want to do this using Web Dynpro for ABAP, not Java. I have looked into pretty much all examples available for Web Dynpro and came to the conclusion that Components such as WDR_TEST_EVENTS and WDR_TEST_UI_ELEMENTS do not have any examples of images being stored in a database table and viewed in/from a Web Dynpro table element. Programs such as RSDEMO_PICTURE_CONTROL, DEMO_PICTURE_CONTROL and SAP_PICTURE_DEMO do not show this either.
    The images to be displayed in the Dynpro table are to come from a z-type table, stored in a column of data type XSTRING (RAW STRING). So I would also like to know how to upload these images into this z-type table using ABAP code (not Java).
    Your help would be greatly appreciated.
    Kenn

    Hi,
    May be this is the is the correct place to post your query.
    Web Dynpro ABAP
    Regards,
    Swarna Munukoti.
    Edited by: Swarna Munukoti on Jul 16, 2009 3:52 PM

  • Can't display an image with SWT using J9

    Hello,
    I'm programming a user interface using SWT and J9 as JVM under Window Mobile 5.0
    Everything seems to work more or less fine with SWT widgets, but I can't display any Image.
    I've tried the following codes :
    Image image = new Image(display,getClass().getResourceAsStream("image.bmp"));when placing image.bmp in the same jar that my main class, or in the same folder when not using a jar file.
    and
    Image image = new Image(display,"\\image.bmp");(when placing image.bmp in the root folder)
    I've tried with a gif file, it doesn't work neither.
    Both codes work fine in my normal computer (replacing "//image.bmp" by "C://image.bmp" for instance)
    Any help would be highly appreciated ;-)
    Message was edited by:
    cOsi

    Here is a basic example to display image and make it flicker. Use it and try to improve to get the exact frame rate you want.
    Remember this is not the actual solution, its just to give you an idea.
    The best solution is the one you find it by yourself
    Attachments:
    Flicker.vi ‏8 KB

  • How can i display a image file which is placed in the applications server

    Hi all,
    Can any one help me how can I display a image file which is present in the application server.
    With regards,
    M.Ramana Murthy

    hi,
    *& Form TOP_OF_PAGE
    * text
    FORM F_TOP_OF_PAGE.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    IT_LIST_COMMENTARY = IT_LISTHEADER
    i_logo = Logo name
    * I_END_OF_LIST_GRID =
    ENDFORM. "TOP_OF_PAGE
    rgds
    Anver

  • Hi , How to display multiple images

    hi,
    please help me out!
    I need to display multiple images on the jframe or on a jpanel . From the database where the path of the images are stored how to do it any one please
    give the code

    import java.awt.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import java.io.*;
    import java.net.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ShowingImages extends JPanel
        final int
            WIDTH  = 75,
            HEIGHT = 125;
        public ShowingImages()
            String[] filePaths = getPaths();
            BufferedImage[] images = getImages(filePaths);
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(5,5,5,5);
            gbc.weighty = 1.0;
            gbc.weightx = 1.0;
            loadImages(images, gbc);
        private void loadImages(BufferedImage[] images, GridBagConstraints gbc)
            for(int j = 0; j < images.length; j++)
                BufferedImage scaled = scale(images[j], WIDTH, HEIGHT);
                ImageIcon icon = new ImageIcon(scaled);
                if(j % 2 == 0)
                    gbc.gridwidth = GridBagConstraints.RELATIVE;
                else
                    gbc.gridwidth = GridBagConstraints.REMAINDER;
                add(new JLabel(icon), gbc);
        private String[] getPaths()
            String[] fileNames = {
                "images/redfox.jpg", "images/greathornedowl.jpg",
                "images/bclynx.jpg", "images/mtngoat.jpg"
            return fileNames;
        private BufferedImage[] getImages(String[] fileNames)
            BufferedImage[] images = new BufferedImage[fileNames.length];
            for(int j = 0; j < fileNames.length; j++)
                images[j] = loadImage(fileNames[j]);
            return images;
        private BufferedImage loadImage(String fileName)
            BufferedImage image = null;
            try
                URL url = new URL("file:" + fileName);
                image = ImageIO.read(url);
            catch(MalformedURLException mue)
                System.err.println("malformed url for image: " + mue.getMessage());
            catch(IOException ioe)
                System.err.println("unable to read image file: " + ioe.getMessage());
            return image;
        private BufferedImage scale(BufferedImage source, int w, int h)
            BufferedImage scaled = new BufferedImage(w, h, source.getType());
            Graphics2D g2 = scaled.createGraphics();
            g2.setPaint(getBackground());          // background for
            g2.fillRect(0,0,w,h);                  //   scale to fit
            double width = source.getWidth();
            double height = source.getHeight();
            double xScale = w / width;
            double yScale = h / height;
            double scale = Math.min(xScale, yScale);      // scale to fit
            //double scale = Math.max(xScale, yScale);    // scale to fill
            double x = (w - scale*width)/2;
            double y = (h - scale*height)/2;
            AffineTransform at = AffineTransform.getScaleInstance(scale, scale);
            g2.translate(x, y);
            g2.drawRenderedImage(source, at);
            g2.dispose();
            return scaled;
        public static void main(String[] args)
            // create and configure your JFrame here...
            f.getContentPane().add(new JScrollPane(new ShowingImages()));
    }

  • Can we attach multiple images to a pages document in one go rather than drag and drop in to a media placeholder?

    Can we attach multiple images to a pages document in one go rather than drag and drop in to a media placeholder?

    Danny Spry wrote:
    Can we attach multiple images to a pages document in one go rather than drag and drop in to a media placeholder?
    Danny,
    Sure you csn. Don't be afraid to try this kind of stuff for yourself. If things don't work out, just Command-Z your way back to the previous state. In this case it should work just great. Once your multiple selection appears in Pages, click off the selected new objects to de-select them, then select them one at a time for positioning.
    Jerry

  • How can I record multiple tracks simultaneously?

    How can I record multiple tracks simultaneously?  Or rather what hardware do I need to do this?  I currently run guitars and mic into a PA and then the PA into Garageband.  But this is just one track.  I want to record the guitar as one track while simultaneously recording vocals as another track.  What hardware do you suggest - keeping it affordable?

    if you want to use your two chanel PA, pan 1 channel to the left, and the other to the right, and set one GB track to Mono 1 and the other to mono 2.
    if you want better quality, any two channel interface will work:
    http://www.bulletsandbones.com/GB/Interfaces.html

  • Can you display multiple photos on one page with slide tool to transition between them?

    Hi Folks,
    I have a series of photos taken from the exact same location but on different days. I would like to display them on one page but use a slide tool/bar to move or transition between the photos. If the slide bar can display the date of the photo then that would be great.
    Can this be done in adobe?
    Any help would be great.
    Thanks.

    A Steve mentioned you can use a button to display an image. If you use JavaScript, you wouldn't have to show/hide multiple buttons but could instead dynamically set the button icon programmatically. The setup for something like this is a bit involved, but it's not overly complicated. Post again if you'd like more details.
    The slide bar is the thing that would have to faked as there is no such built-in control, but something functionally equivalent could be done, it just may not behave as smoothly as you want.

  • Show file size in Cell Extras? (Either Compact or Expanded, or anywhere in Grid for multiple images simultaneously)

    I've searched and seen several suggestions saying to change Metadata to Exif & IPTC to see the file size, but that's for only one image at a time. Under Cell Extras (both Compact and Expanded) I see options for Megapixeps, Cropped Dimensions, File Name, Extention, and a bunch of other options, but no file size. I suspect this is because file size isn't a metadata field and simply a file attribute (that may be incorrect, but regardless...) is there really no way to have file size visible in the thumbnail cells in Grid view in the Library? I'm trying to reduce redundancy and viewing file size of multiple images at a glance based on my Library Filter criteria would be a huge help. Thanks to anyone who can help sort me out!

    Sure. I have a catalog with 22,000 images indiscriminately imported from hundreds of folders and multiple drives from this year alone (partially lost a RAID array to a corrupt index and recovered a dump of the files so I'm terribly disorganized juggling emergency redundancy backups wherever I had 50 gigs here, 100 gigs there, and working to clean up and organize my photos one year at a time ), including raw, jpg, websized jpg, png, tiff and psd (flattened and with layers/adjustments) and am now trying to identify my keepers and delete unnecessary files. I have 22 terabytes of personal files and photography spread chaotically and while I now have proper discipline when saving variants, I didn't always and want to remove unneeded, rejected, and duplicate images. I don't expect to be caught up for months or longer depending on my free time and sanity. Unfortunately, it's not as simple as keep the raw delete the rest. Sometimes I have multiple PSD documents with different version names and edits, sometimes with multiple layers, and I have to use a variety of information to identify which one is indeed the correct one to keep...or open them all/both.
    Often, file size can be an indicator for me and aids in making the decision more quickly. For instance between 2 psd files with the same Megapixles I'm often able to identify the flattened version vs the layers intact version by file size if it wasn't properly noted in the filename, which unfortunately due to a combination of bad or evolving practices and being tired or rushed happens more often than I'd like to admit. One I just came across that brought me here searching was 3 similarly named and appearing PSD files of a panorama, all with the same MP/dimensions. One was flattened, one was the original stitch, and one was flattened with a few masks, adjustments, and an extra layer, and being the one I'd want to keep. Filesize helped me quickly identify which was which. Also sometimes dimensions are misleading, like when a panorama is first created and uncropped, its dimensions are larger, but a tighter cropped image with multiple layers and a larger file size indicates to me that it is newer and more finished, even though smaller dimensions typically indicates a crop and may not be a 'master' copy. Additionally, 2 images with different names but the exact same file size are very likely duplicates (at least in my workflow) but 2 similarly looking images with the same dimensions could be retouched/not, sharpened/not, have noise reduction/not, and I'd have to view them in detail to determine if they were in fact identical. For my purposes (since these are my personal fine art images & I have the raw files incase I occasionally mess up) I'm often willing to trade an educated guess for my time. Seeing identical file sizes on 2 apparently similar images is good enough for me to delete one.
    I can select them individually and check...it's not a horrific problem. But it would save me time so I was hoping I had simply missed how to view that. My reasoning is 'why not' have the option available with all the others? Me personally, I don't care about megapixels when I already have the dimensions, that's just redundant and honestly much less helpful than LxW. File size would be an additional tool I would use, though. There are other examples but the main thing is that I do spend time checking filesize, and specifically when comparing multiple images, so having it displayed in the cell would be a time saver for me.

  • Displaying multiple images after uploading

    Hi I am trying to create a site where I can upload multiple photos at once and have them be displayed on the master detail page
    I have been following the tutorial on creating an image gallery and it is good.......
    I have also found out about using the master detail function which is really really great, just what i was looking for.
    So I can create my upload form with file upload and creat a list page which displays some of the data and a thumb and I can link one of the fields to the master detail page all good...... Now......
    I would like more than one picture on the detail page.......
    with say one main pic and about five other thumbs ( which can be linked to full size images) I would like this to all be done dynamically
    So how do I do this?
    Do I need to put multiple file upload fields in my upload form?
    I am getting confused........
    Any help would be really really nice
    Have a nice day

    Hi Charis
    >Do I need to put multiple file upload fields in my upload form?
    You can use the Dynamic List/Dynamic Form to get the uploads working as you wish. Dynamic lists can call a multiple insert transaction on dynamic forms. You then set one of the form fields to be file type and apply the upload behaviour to it. At the end you can call as many instances of the form from the dynamic list and upload all the images at once saving their informations to a db table at the same time
    >would like more than one picture on the detail page.......
    >with say one main pic and about five other thumbs ( which can be linked to full size images) I would like this to all be done dynamically
    For this you need 2 recorsets: one for the main picture filtered by image_id (when you click the thumbnail you send the id as a url variable) and another for the thumbs (not filtered);
    Use the Show Thumbnail server behaviour to create the thumbs and a Looper Wizard to loop through the records and show more than 1 thumb.
    Cheers
    Marcell

  • Suddenly can't open multiple image files in CS5

    I recently transferred LR 5.3 and CS5 (12.04x64X) onto a new PC (OS Windows 7 64-bit). Both programs are working fine individually. And single images in LR open just fine for editing in CS5. But when I try to open multiple images (to merge as a panoramic) or open multiple images as separate layers, nothing happens.  CS5 opens on top of LR, but the files themselves never open. No problems doing this a few days ago with my older computer (same programs, same operating system).
    Any suggestions for fixing this would be much appreciated.

    When you say nothing is showing up, do you mean it is as if you didn’t use File / Open, or is it more that there is something but it is gray or white or black without any image detail?  If the latter, perhaps something like a video driver update or system-level change has made things incompatible with how PSE11 tries to display images.
    Have you rebooted?
    Have you reset your preferences?  You can do this by holding down Ctrl-Shift-Alt at the same time while PSE11 is starting up (or at least while the editor is starting up) and you’ll get a message about deleting the preferences file or not before you see the splash screen.   Various other key combinations will ask for an additional plug-ins folder or a different scratch disk location.  If you are going to delete your preferences file you might want to review the settings, first, in case there is something important you need to reconfigure once the preferences have been reset.

  • How can I display three images in video rate succession (60 Hz)?

    For a structured illumination microscope application, I have developed a VI that creates three images and displays them in rapid succession (as fast as the loop will go) on a second monitor.
    From the naked eye it's pretty apparent that the loop is not displaying the images at video rate.  Is there a way (perhaps with some sort of buffer) to get them to display faster?  Is WinShow simply not going to be fast enough, and if not, what's an alternative method of displaying the images?  If it helps, the images need only be displayed once each (the loop was just for testing).
    Also, what is a way to measure the frame rate output of the images?
    (sorry for the sloppy code, new to LabView)
    Thanks,
    -T
    Attachments:
    illuminationpattern.vi ‏31 KB

    Hello,
    Why don't  you try drawing one window, call IMAQ WindShow once outside of the loop, then redraw that window each iteration within the loop.  Hopefully this stops the flutter of the window.  You can build a 3 element array of the 3 IMAQ images then use an index array to alternate through which image you want to be redrawn into the single window.  The constant calling of IMAQ WindShow seems messy.
    Regards,
    Isaac S.
    Applications Engineer
    National Instruments

  • How can I display multiple numeric limit test in operator interface

    I am using Teststand 3 and I want to display additional information like the limits and the results in the sequence UI control. Adding new columns to this control is no problem, so it works good with any step type, that has a single result. But how can I display the information of a step that has multiple results ? The rows of the sequence UI control are limited to a single line.
    Regards
    Dirk Schüller-Möller

    Dirk,
    If you want to display several results for a single step, then you will need to either create a new column for each result or have an expression in your column that will format in a single string all the result that you want to display.
    What you can not do is spawn the result of a single step across several rows (only one step per row).
    Best Regards,
    Alejandro del Castillo
    Ni

  • Can I have multiple images on a single USB drive?

    I would like to save an image from my T400 (XP), then upgrade the hard drive to an SSD, then upgrade the OS to Windows 7 (or 8), and take another image.
    I have several questions that I hope someone can help me with...
    Can I use Rescue and Recovery to save multiple images to a single USB drive?  
    If so, how does the sw keep the files separate?
    Will it still work if I use two different Rescue and Recovery versions (4.3 for XP, and 4.5 for W7)?
    Is there a way to store the images in separate folders on the USB drive, or is that unnecessary?
    Is there a better way to do this (including using different sw)?
    Thanks in advance,
    Ron
    Solved!
    Go to Solution.

    If you open Disk Management, you'll see Disk 0 with more than one partition. If you want to rebuild a HD back the same you'll want all or at least two of the partitions. You'll notice the Active Boot partition is not C the Windows drive but a partition called System_Drv (at least in my system). Those two will be mandatory when you image a new drive. Otherwide you'll have some fixing with external tools to get it booting.
    T520 Model 4239 Intel(R) Core(TM) i7-2860QM CPU @ 2.50GHz
    Intel Sandy Bridge & Nvidia NVS 4200M graphics Intel N 6300 Wi-Fi adapter
    Windows 7 Home Prem - 64bit w/8GB DDR3

Maybe you are looking for

  • Print of Cash Reciept

    Hi We have a scenario in which are splitting the cash postings made in Cash Journal through FBCJ for business transaction "Cash Revenue". The system is generating a document with credits to two different GLs. We have to take print of the cash reciept

  • Problem with HTML Editor box in XML Form

    Hi all, I am using a HTML editor box in one of the XML form template. When I parse the data from HTML editor and apply my own style sheet and display in JSP page, it has no effect on it. Instead the style set by HTML editor box is being applied. Is t

  • Need Help Regarding Document Numbering

    We have created new menu in Purchase A/R and I need to add the same to Document Numbering Screen. How to add the same? We want to know which all tables need to be modified? Jayanth

  • How can I change brush size?

    I really have two questions. 1. How can I change the size of the brush tool? It's all greyed out on every project I start, stuck at the very smallest size (0.10). I'm trying to trace over a photo at the moment, and it's taking FOREVER with the tiny l

  • Mixing a live recording of a rock band

    Hi everyone, I recently just did my first mix of a live show and the mix sounds pretty good and the band is happy with it...... But looking back in hind site I'm wondering if I approached the mix correctly. Here's the deal.... I have all the raw mult