Reloading images creates a "minicomp"?

Hi
I am very new to After Effects.
I made the mistake to move around with my footage, and now some files are missing.
When I want to reload them (e.g. "1.png") AE takes all my pictures (1.png to 29png) and throw them together as some sort of minincomp, instead of relinking only that one image I asked it to use.
I am making a stopmotion film, and have about 300 missing files at the moment, but I get the same problem each time I try to link just one file.
What can I do?

AE is creating an Image Sequence when you do that.  That's what that icon in the project window means.  You either need to take more care when locating your moved files or just deal with the image sequence by assigning it a new frame rate in the Interpret Footage settings.
And since you're so new, you owe it to yourself to spend a lot of quality time here.
AE isn't the kind of application you use for a couple of tricks and expect things to turn out right the first time.  It takes a good knowledge of the AE basics to make it do what you want.

Similar Messages

  • How can I convert an image created in Photoshop into a format that Java's ImageIO library will take?

    Hi all,
    I've been trying to write an image resize tool to use the Lancoz resample algorithm to resize images to a high standard in Java.  The library with the algorithm/filter in it is mortennobel's image scaling library and it takes a buffered image as an input and returns the resized image as desired.  However the trouble I’m having is that the ImageIO library in Java, a standard library, which converts images given to its read method to buffered images doesn't accept certain images created in Photoshop and so it throws an exception.  My library needs to be fully automated to process possible thousands of images at a time and so manually converting them by resaving them as JPEG's is really feasibly.  Is there some way I can convert these images from Adobes Exif format to standard JFIF format?  I've tried simple inserting the APP0 marker from a JFIF image in-between the SOI and APP1 marker but the ImageIO library still failed.
    The above image is a screenshot of the binary in hex of one of the images that cause an Invalid Format exception when passed to ImageIO.
    Any help you could offer me with this would be much appreciated.
    Kind regards and thank you,
    Alexei Blue
    Science Warehouse.
    NB: I previously posted this post in Developers but was told to post it in a Photoshop forum so apologies if this is the incorrect formum

    The image scaling library does have a BiCubicFilter in it so I'll experiment around with them and see what happens.  As for the imageIO library I think it accepts Exif image types, but still for some reason it just doesn't like Adobe Photoshop types.  Maybe its the colour map it doesn't like I just can't seem to work out what's wrong which is slightly frustrating but looking round to see if I can find an answer

  • Clicking an image created in Photoshop launches the program but...

    Not sure where else to ask this. There isn't a Photoshop area.
    New OS9 to OSX here. Going from Photoshop 6 (don't laugh) to CS1. When I click on an image created in Photoshop it launches the program but does not open the image. I have to either go into the "open" command and do it manually or do it by finding the document in my HD. Either way it's a drag and I suspect it's not the way it's supposed to be. It's a real time-loser.
    The only thing I can think of is it's because I'm clicking on an image that was created on my G3 using Photoshop 6. On the other hand it DOES launch the program so I am not exactly sure what is going on.
    Has anyone had the same experience?
    Thanks.

    What happens if you click on Get Info and "open with" and set the image type to always use CS1?
    Other thought would be to use Onyx or Tiger Cache Cleaner to update the "Launch Services" which is what connects and controls applications and document types.
    (Might even want to consider Pogue's "Mac OS X: The Missing Manual" or something.)
    Make sure you have Tiger compatible programs, don't have something installed which is not (Norton Utilities is out).
    Set up a new test account or even a test system on another drive. And use that for doing repairs. Word of caution: never update OS X without a backup of your system.

  • Rotate Image Created with createImage() ?

    I've been looking around online for a way to do this, but so far the only things I have found are 50+ lines of code. Surely there is a simple way to rotate an image created with the createImage() function?
    Here's some example code with all the tedious stuff already written. Can someone show me a simple way to rotate my image?
    import java.net.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class RotImg extends JApplet implements MouseListener {
              URL base;
              MediaTracker mt;
              Image myimg;
         public void init() {
              try{ mt = new MediaTracker(this);
                   base = getCodeBase(); }
              catch(Exception ex){}
              myimg = getImage(base, "myimg.gif");
              mt.addImage(myimg, 1);
              try{ mt.waitForAll(); }
              catch(Exception ex){}
              this.addMouseListener(this);
         public void paint(Graphics g){
              super.paint(g);
              Graphics2D g2 = (Graphics2D) g;
              g2.drawImage(myimg, 20, 20, this);
         public void mouseClicked(MouseEvent e){
              //***** SOME CODE HERE *****//
              // Rotate myimg by 5 degrees
              //******** END CODE ********//
              repaint();
         public void mouseEntered(MouseEvent e){}
         public void mouseExited(MouseEvent e){}
         public void mousePressed(MouseEvent e){}
         public void mouseReleased(MouseEvent e){}
    }Thanks very much for your help!
    null

    //  <applet code="RotationApplet" width="400" height="400"></applet>
    //  use: >appletviewer RotationApplet.java
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.AffineTransform;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class RotationApplet extends JApplet {
        RotationAppletPanel rotationPanel;
        public void init() {
            Image image = loadImage();
            rotationPanel = new RotationAppletPanel(image);
            setLayout(new BorderLayout());
            getContentPane().add(rotationPanel);
        private Image loadImage() {
            String path = "images/cougar.jpg";
            Image image = getImage(getCodeBase(), path);
            MediaTracker mt = new MediaTracker(this);
            mt.addImage(image, 0);
            try {
                mt.waitForID(0);
            } catch(InterruptedException e) {
                System.out.println("loading interrupted");
            return image;
    class RotationAppletPanel extends JPanel {
        BufferedImage image;
        double theta = 0;
        final double thetaInc = Math.toRadians(5.0);
        public RotationAppletPanel(Image img) {
            image = convert(img);
            addMouseListener(ml);
        public void rotate() {
            theta += thetaInc;
            repaint();
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
            double x = (getWidth() - image.getWidth())/2;
            double y = (getHeight() - image.getHeight())/2;
            AffineTransform at = AffineTransform.getTranslateInstance(x,y);
            at.rotate(theta, image.getWidth()/2, image.getHeight()/2);
            g2.drawRenderedImage(image, at);
        private BufferedImage convert(Image src) {
            int w = src.getWidth(this);
            int h = src.getHeight(this);
            int type = BufferedImage.TYPE_INT_RGB; // options
            BufferedImage dest = new BufferedImage(w,h,type);
            Graphics2D g2 = dest.createGraphics();
            g2.drawImage(src,0,0,this);
            g2.dispose();
            return dest;
        private MouseListener ml = new MouseAdapter() {
            public void mousePressed(MouseEvent e) {
                rotate();
    }

  • Shared Components Images Create Image does not work

    I am using oracle XE on Windows XP.
    Uploading an image for an application does not work.
    Home>Application Builder>Application 105>Shared Components>Images>Create Image
    It goes wrong when I try to upload the image:
    - Iexplorer gives an error 404 after pressing the Upload button.
    - Firefox just gives an empty page.
    When I try to refresh the resulting page (do another post) I get the following error:
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error ERR-7621 Could not determine workspace for application (:) on application accept.

    Hi Dietmar,
    After setting the language to English (USA) [en-us] it works for +- 50 % of the uploads.
    Below is my tracefile.
    Dump file e:\oraclexe\app\oracle\admin\xe\bdump\xe_s001_2340.trc
    Wed Nov 23 19:03:17 2005
    ORACLE V10.2.0.1.0 - Beta vsnsta=1
    vsnsql=14 vsnxtr=3
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Beta
    Windows XP Version V5.1 Service Pack 2
    CPU : 2 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:267M/1014M, Ph+PgF:1431M/2444M, VA:1578M/2047M
    Instance name: xe
    Redo thread mounted by this instance: 1
    Oracle process number: 15
    Windows thread id: 2340, image: ORACLE.EXE (S001)
    ------ cut ------
    *** 2005-11-23 19:50:44.718
    *** ACTION NAME:() 2005-11-23 19:50:44.718
    *** MODULE NAME:() 2005-11-23 19:50:44.718
    *** CLIENT ID:() 2005-11-23 19:50:44.718
    *** SESSION ID:(26.18) 2005-11-23 19:50:44.718
    Embedded PL/SQL Gateway: /htmldb/wwv_flow.accept HTTP-404 ORA-01846: not a valid day of the week
    *** SESSION ID:(27.19) 2005-11-23 19:50:51.937
    Embedded PL/SQL Gateway: /htmldb/wwv_flow.accept HTTP-404 ORA-01846: not a valid day of the week
    *** 2005-11-23 19:50:59.078
    *** SERVICE NAME:(SYS$USERS) 2005-11-23 19:50:59.078
    *** SESSION ID:(27.21) 2005-11-23 19:50:59.078
    Embedded PL/SQL Gateway: Unknown attribute 3
    Embedded PL/SQL Gateway: Unknown attribute 3
    Strange error... there is nothing in my form that is related to dates...
    Kind regards,
    Pieter

  • Can't reimport images (created in 3.2.4) from an external hard drive into 3.3.2

    Using MBP OS 10.7.4 and have previously exported "Project as Library" images created in Aperture 3.2.4 to a LaCie 1 TB external drive.
    Subsequently upgraded Aperture to 3.3.2 and performed the full "upgrade library" process and saw its full progress to completion on the screen. Then I needed to re-import back into 3.3.2 the project listed above and got this message
    Initially I tried bring the external drive's library back by File>Import>Library but got the same message as above but only with a different first-line heading.
    Then I tried to simply open the previously exported library by clicking on it in the window of the external hard drive icon and got the above pasted-in message.
    Does this snafu mean I can never again access all of my many libraries storied on external drives ? I'm not able to figure out how to make the older libraries compatible with 3.3.2 via the unable-to-activate upgrade process apparently necesary to do so.
    Anyone's help is most appreciated. Thank you
    Bob

    Léonie
    Recht herzlichen Dank für die Vorschläge, aber........
    1. The LaCie drive was bought at my local Apple store, already formatted for Mac. Also I've used it for over a year with both my current MBP with 10.7.4 as well as, and at the same time, with a previous          MBP still on 10.6.8. The drive has worked with both MBP on other activities.
    2. Concerning the link to the First Aid Tools you supplied below, last week I repaired both the permissions and the database on the MBP into which I'm now trying to re-import the older Project as Library,                     which had been previously exported to the LaCie. That export to the LaCie was done from the newer 10.7.4 MBP into which I'm now trying to re-import it but before I moved to Safari 6.0 ( which                     shouldn't make a difference I don't think ) and before I went to Aperture 3.3.2 from 3.2.4. Would that mean I need to re-repair Aperture again ?
    To make sure the LaCie drive itself wasn't corrupted somehow, I just began a re-import of the Project on the LaCie drive to the older MBP (10.6.8) and it began to process smoothly. I did stop that import because that's not the unit I want to use to work on the Project; I just tried it to see if 3.2.4 could pull the Project from the LaCie drive into the older laptop.   It could.   But that didn't help me with getting it into the newer MBP 10.7.4.
    What the Error message said, which I had pasted into my original positing, was that the Project/Library on the external drive needed to be upgraded before I could re-imported into the desired MBP. Any ideas on how to upgrade it on the external drive itself ? If I can't get it off the external drive into Aperture it seems impossible to upgrade it. Dadurch sitze ich jetzt in der Klemme !
    Thank you for your help. I appreciate it.
    Bob

  • Importing images created in Fireworks into Indesign

    Hello,
    I'm working on a Mac platform and I have over 60 images created in Fireworks which will be placed into Indesign CS4. Since I have never worked in Fireworks, this project seemed somewhat daunting.  Do I need to save the images in either tiff, eps or some other format (like Photoshop) in order for the images to be imported. In addition, these images involve text editing. How well does Fireworks handle text.
    Understanding that Fireworks is a web-friendly tool, how will it affect the image quality when the end result of this project will be printed.
    Thanks,
    Suta

    Unless you began the Fireworks projects using 300 dpi at the appropriate print dimensions, you're going to have noticeable quality loss.
    If the Fireworks files are completely vector, you should be able to resample in Fireworks to the appropriate resolution with any trouble. You won't have that kind of luck if you were working with bitmap images, though.
    Bear in mind that FW only work sin the RGB color space, so you may see some color shifting once the files are brought into a CYMK color space. The format you export or save should be a lossless format - TIFF would be my recommendation.
    Can yo be more specific about your questions about text?
    Jim Babbage

  • Image created for external editor is very large

    I am new to Aperture. I want to send my adjusted photo to my external editor (Photoshop Elements), and the resulting image created has a file size 10 times my original RAW image size. This is before any additional editing in Photoshop. Why such a large file? There is no difference if I export as a TIFF or PSD. Is there anything I can do to keep the files reasonably sized?
    Thanks.
    Aperture 1.5.2
    Elements 2.0
    Dual 2.3 G5   Mac OS X (10.4.8)  

    to answer your first question, prints do not have an implicit bit-depth because they're no longer digital. the image is no longer stored as 1s and 0s. printers usually have a DPI rating (dots per inch) which is quite literally the number of individual ink dots that the printer can make in one horizontal inch and relates more to how sharp the image will print (at the extremes, consider printing something at 100dpi vs. 2800dpi). bit depth in an image relates to how many colors you can choose from to make your image. if you had a really low bit-depth, you might only have 32 colors available and to render a landscape. with 32 colors you wouldn't be able to capture all of the subtle shades of green in the leaves, especially if you needed to adjust the exposure up or down.
    most on-line printing services will tell you that a high-quality JPEG is fine for printing and for the most part they're right! using PhotoShelter and their partner printing services i've uploaded and printed some of my own still life photos done in my studio. and the prints look great!
    the problem with editing using a JPEG image is that if you repeatedly save the JPEG file, you're constantly re-compressing the image and over the course of several edits the quality of the image will degrade as more and more JPEG compression artifacts are introduced with each save (and subsequent re-compression of the image data).
    so your workflow should involve editing uncompressed at a high bit rate, then export as a high-quality JPEG for upload to a printing service. however, if you're doing your own printing to a desktop photo printer, just print right from the edited uncompressed version in Aperture. either way, the results will be very good.
    scott
    PowerMac G5 2.5GHz   Mac OS X (10.4.8)   MacBook Pro 2.0GHz

  • Big Colour and detail changes between Original Nikon RAW files and the images created on the Preview page!

    Big Colour and detail changes between Original Nikon RAW files and the images created on the Preview page! Yes there are distinct visual changes when I preview my Nikon NEF RAW Files.Please note I do not use iPhoto at all.
    If you view it as a contact sheet straight from the original folder there are no alterations but the moment you double click and want to 'Preview' it, this new preview page introduces very noticeable distortions : lighter shading goes missing and colour goes darker e.g orange turns red and mid blue goes deep blue!  Alarmingly the little column on the left of the preview page showing the collection shows the original file colours and then after a few seconds show the new distorted image...you can see this visible change and it takes place after a few seconds once you double click! Also if you use Apple's 'Cover Flow' to preview, this function will replace your original RAW file with the new 'altered preview' image!
    I have raised this with Apple but they have yet to reply...has anyone ever experienced this? I have used my Mac book for 18months only noticed it about 5 days ago!
    I went to Apple store and we tried it in other laptops and Macs and it happened to all of them so we think this is a software issue and not down to the laptop.
    Any help is much appreciated!

    Big Colour and detail changes between Original Nikon RAW files and the images created on the Preview page! Yes there are distinct visual changes when I preview my Nikon NEF RAW Files.Please note I do not use iPhoto at all.
    If you view it as a contact sheet straight from the original folder there are no alterations but the moment you double click and want to 'Preview' it, this new preview page introduces very noticeable distortions : lighter shading goes missing and colour goes darker e.g orange turns red and mid blue goes deep blue!  Alarmingly the little column on the left of the preview page showing the collection shows the original file colours and then after a few seconds show the new distorted image...you can see this visible change and it takes place after a few seconds once you double click! Also if you use Apple's 'Cover Flow' to preview, this function will replace your original RAW file with the new 'altered preview' image!
    I have raised this with Apple but they have yet to reply...has anyone ever experienced this? I have used my Mac book for 18months only noticed it about 5 days ago!
    I went to Apple store and we tried it in other laptops and Macs and it happened to all of them so we think this is a software issue and not down to the laptop.
    Any help is much appreciated!

  • Why can't LR read HDR images created in Photoshop CS4ext?

    I recently created an HDR image out of two images in CS4 extended for use in a slide show I produced in LR.  However, LR cannot read or import any HDR images from CS4 ext. Now what?  LR will read any other image edited in CS4 ext. but not any HDR image created in the same program! Any ideas anyone?  I have tried changing color spaces and TIFF settings. I have tried to import it as both a TIFF and a PSD image. Absolutely nothing works.  And does anyone have any idea why Photoshop cannot export an image as a JPEG?  We pay enough for these programs as it is, and it can't even handle this simple basic routine?

    does anyone have any idea why Photoshop cannot export an image as a JPEG?
    You first need to downsample to 8-bits before you can save as jpeg (image->mode->8bits/channel).
    I have tried changing color spaces and TIFF settings. I have tried to import it as both a TIFF and a PSD image. Absolutely nothing works.
    You probably are still in 32-bit/channel linear. You need to downsample to 16 or 8 bits, otherwise Lightroom cannot read the tiff or psd. So you need to tone map using one of the HDR conversion options you will see when selecting 16 or 8 bits.

  • How to help GC to free images created via FilteredImageSource

    Hello,
    I use several RGB Filters to process input image. I would like to help to GC to free allocated resources(even I remove all pointers to this object ), but I cannot use Image.getGraphics().dispose() for images created via FilteredImageSource(it raises an exception).
    When I open a new dialog with simple created({ Image im = Toolkit.getDefaultToolkit().createImage(new FilteredImageSource(JPG, ...)) }) huge image(JPEG 2MB) and I close this dialog, the memory (allocated by this image)is still used till I close the application. System.gc() doesn't help and I am really sure that i have no pointers to the image.
    Thanks for advice
    Vity
    JDK 1.4.2_08

    Are you looking at the memory usage in the taskmanager or something? Java doesn't release memory it claims until the JVM shuts down.

  • Printing a image created by java?

    is there an fairly easy way to print an image created by a java applet or a way to write an application or applet that creates a image file?
    I know about print screen so if there's no other (easy) way, what do i need to install to use it?

    Could you please post your code?
    -B.

  • How to reload image

    I have format plug in and i need to reload image after saving it. How can i do it?

    You could have an automation plug-in listening for your save and then close and reopen the file. You cannot open a file during a save operation directly from a file format plug-in.

  • Obtaining Screenshot from Spectrum Analyzer - Not able to view the image created

    Hello,
    I am using the following code snippet in my program to get the screen shot from  Agilent Spectrum Analyzer , I am able to get a gif image created in the location specified but when i opened it I could not see any result.
    Please help out . I also tried with Interactive Utility still the same result , Am i missing something here or is there anything for me understand . please let me know.
    ibwrt(DeviceHandle,":MMEMTORCR 'CICTURE.GIF'",30);
    ibwrt(DeviceHandle,":MMEMATA? 'CICTURE.GIF'",28);
    ibrdf(DeviceHandle,"C:\\PICTURE.GIF");
    Thanks
    Meeran

    Dear Bala,
    I have got about 8 to 10 DC's out of which only this one is showing the missing structure and as this dc is being used by other dc's I am getting the error like missing component.  Previously we were using the client desktop and doin the work now we have shifted it to our individual systems.  Now any project I am creating whether from same track or different same problem comming the structure is missing.
    Regards,
    Ganesh
    Edited by: Ganesh Sawant on Sep 8, 2009 9:42 AM

  • Unable to unlock encrypted disk images created with Snow Leopard using Lion

    Anyone else unable to unlock encrypted disk images created with Leopard and Snow Leopard with Lion?  I know that they made changes with the release of FileVault 2 on Lion and Snow Leopard cannot use Lion encrypted disks but I thought it was backwards compatible where Lion should still be able to work with Snow Leopard created images (it was in the pre-release versions of Lion).
    When attempting to mount an encrypted disk image created with Snow Leopard on Lion the normal password prompt appears but then just reappears every time the password is entered and does not unlock and mount the image.  I'm positive the correct password is being entered and it works just fine when done on a machine running Snow Leopard.

    Not in cases when the computer successfully boots to one OS but produces three beeps when an attempt is made to boot it to another. If it really was a RAM problem that serious, the computer wouldn't get as far as checking the OS version, and it has no problems booting Lion. In the event of a minor RAM problem, it wouldn't produce three beeps like that at all.
    (67955)

Maybe you are looking for

  • Import from camera card

    Is there a setting for Aperture where the app gives you the option Not to import photos already in the library?

  • Add Table maintenance program for custom table to an existing func group

    Hi Guys, Can I add Table maintenance program for custom table to an existing function group or I need to create a new function group for each custom table. Thanks, mini

  • API Sample to Remove User password

    I am new to the api for adobe. I am wondering if anyone has a sample of using an API program that would remove the User Password from a set of pdf files? (FYI - They all have the same password. )

  • Trouble when Labview call CVI DLL in after compiled to EXE

    Hi, I m developing a program by LabVIEW, and have to call a DLL, which developed by using CVI.  The UI of the DLL consist of a table and a listbox.  The DLL run smoothly but when I compiled the project to EXE, when the program call the DLL, the DLL w

  • Differential Signal to Single Ended Signal Conversion

    Hi, Im facing a problem here. I need an ADC that reads 0-20mA. The signal comes from a signal conditioner that creates a differential signal. However, a NI device with single ended inputs is much cheaper than differential inputs. The signal condition