"process mutiple files" freezes computer when resizing images.PSE3

This function has always worked perfectly for me for years. It started about 2 weeks ago and I have no clue why it is doing this.
Whenever I try to resize a folder containing mutiple or even single images, it freezes the program and computer until I restart everything.
More specifics;
files are being downsized not upsized.
the original image loads into the program, then as it is being resized, it freezes up at the same point each time. This is when the "progress bar" (not sure of exact name) at the bottom of the page shows about 25% progress.
I have cleaned up the hard drive and done a file reorganization.
I have uninstalled and reinstalled the program.
I can resize images directly through the image/resize function one at a time. The problem is that I frequently have to resize large batches of images.
Thanks for any help.
Dave

Dave
This has caught other people. Check you Resize Image box to see if some strange value has been entered. One user had accidentally entered 4 pixels instead of 4 inches so all his pictures came out really small. I wonder if you have the opposite problem and are resaving to some extremely large size that Elements does not like.
If not post back.
Additional question-are you having problems with the same set of pictures? If so, could you run a test on a second set of pictures. Perhaps there is something strange in the source files.

Similar Messages

  • Preview changes RGB values when resizing images

    Since I upgraded to snow leopard, preview increases the Red spectrum when resizing images (png). Is this a bug or do I need to change a setting to preserve the original RGB values?

    Figured it out. It seems that when you don't specify the BufferedImage that the operation will write too it changes the type to something it uses for the operation. This still seems like it should be a bug to me, but i got around it by doing this:
    BufferedImage tempIMG = new BufferedImage((int)(srcImg.getWidth()*scale),(int)(srcImg.getHeight()*scale),srcImg.getType());
    op.filter(srcImg, tempIMG);
    return tempIMG.

  • ITunes freezes computer when starting to run first time

    iTunes 7.0.x was working fine on my new Windows Vista computer. When I started it up today I got an message to upgrade to 7.1. I installed it and when running it it freezes my computer 3/4 of the "updating library" process. The whole computer slows down tremendously and then the screen turns black with just an arrow showing. I uninstalled and reinstalled and the same problem keeps happening. For a version which was supposed to correct Vista problems, it has broken something which was running fine before
    Dell   Other OS   Vista

    Hey
    iTunes currently does not support Vista. This article: http://docs.info.apple.com/article.html?artnum=305042 will give you more detailed information about Vista compatability and will be updated when Vista and iTunes are compatible.
    Jason

  • Process Multiple Files hangs Computer

    Running PSE 12 on a HP Pavilion with Windows 7 Home Premium SP 1 and all current patches applied.
    I am what I consider an avid photographer (not professional but I take a lot of pictures) and I have been using PhotoShop Elements for over 5 years (all different versions of course).
    Recently whenever I use Process Multiple Files in the editor to get photos ready for displaying on my blog my computer just hangs and I have to turn it off by way of the power switch.
    Here is what happens:
    I edit photos in the editor adjusting exposure and cropping and such then I need to get them ready to display online so I go into Process Multiple Files (much faster then doing it one by one).
    I then point the output to the folder I want adjust the output size and file type to JPEG and click on OK.
    The photos get processed as always and I am presented with the blank editor screen (no pictures as they all closed after being processed)
    Then when I try to go back to the organizer (or any place else) the computer just sits there and does nothing (The clock does not even update during this hang).
    I tried to get to the Task Manager by hitting the Ctrl+Alt+Delete keys but nothing happens. The computer is totally unresponsive.
    I have even tried just letting it sit and see if it ever comes back. When I did this it eventually blanked my screen after the time I specified in the screen saver. When I moved the mouse it just came back to the empty editor.
    When I need to edit my photos I use Process Multiple Files all the time as it is a great time saver when saving photos for the web.
    Any and all help will be appreciated in resolving this issue.
    P.S. I have been using PSE12 since December of 2013 without any problems until now. Also it does not matter if I process 3 files or 30 files same results, computer hangs.

    R_Kelly
    The folder I was trying to process was in another folder with a
    backslash in the name. Once I removed the backslash, Process Multiple
    Files worked again. Thanks for the quick response and the helpful hint.
    Sincerely,
    Todd
    R_Kelly wrote, On 5/10/14, 5:59 PM:
    >
          Process Multiple Files jpegs grayed out
    created by R_Kelly <https://forums.adobe.com/people/R_Kelly> in
    /Photoshop Elements/ - View the full discussion
    <https://forums.adobe.com/message/6371873#6371873>

  • Image file to byte[] to resized image

    I have a byte[] that I have recieved from my server, this byte[] is read from an image. I now need to resize it and save it to the users computer as an image again. I have tried to do this, but lost information on the way. For example i tried making it into a BufferedImage, resize that image, and then write it to the computer. This however, caused (for me) very important image information to be lost, such as the jpg image tags. I could save this byte[] directly to the computer as an image and keep the image tags, but then I would have it in the same size. Is there any way for me to resize it before saving it, without losing information?
    If it's impossible, please tell me so I know and can start thinking about how to do an alternative solution, however, I think this should be possible.
    Edited by: Alle55555 on Jul 16, 2009 2:57 AM

    This is my final code for solving the problem:
    try
                                  //Read the byte[] into an IIOImage
                                  ImageReader ir = ImageIO.getImageReadersByFormatName("jpeg").next();
                                  ByteArrayInputStream bais = new ByteArrayInputStream(imageBytes.get(viewingIndex));
                                  ImageInputStream iis = ImageIO.createImageInputStream(bais);
                                  ir.setInput(iis);
                                  IIOImage image = new IIOImage(ir.read(0), null, ir.getImageMetadata(0));
                                  //Resize the image
                                  Image scalingImage = Toolkit.getDefaultToolkit().createImage(imageBytes.get(viewingIndex));
                                  double scale = image.getRenderedImage().getWidth()/400;
                                  scalingImage = scalingImage.getScaledInstance(400, (int)((double)(image.getRenderedImage().getHeight())/(double)(scale)), Image.SCALE_SMOOTH);
                                  MediaTracker medTra = new MediaTracker(this);
                                  medTra.addImage(scalingImage, 0);
                                  medTra.waitForID(0);
                                  BufferedImage bufferedImage = new BufferedImage(scalingImage.getWidth(this), scalingImage.getHeight(this), BufferedImage.TYPE_INT_RGB);
                                  Graphics2D g = bufferedImage.createGraphics();
                                  g.drawImage(scalingImage, 0, 0, this);
                                  image.setRenderedImage(bufferedImage);
                                  //Write the IIOImage to a chosen file
                                  ImageWriter iw = ImageIO.getImageWritersByFormatName("jpeg").next();
                                  ImageOutputStream imageOutputStream;
                                  File selectedFile = fileChooser.getSelectedFile();
                                  if(selectedFile.getAbsolutePath().endsWith(".jpg") || selectedFile.getAbsolutePath().endsWith(".JPG") || selectedFile.getAbsolutePath().endsWith(".jpeg") || selectedFile.getAbsolutePath().endsWith(".JPEG"))
                                       imageOutputStream = ImageIO.createImageOutputStream(fileChooser.getSelectedFile());
                                  else
                                       imageOutputStream = ImageIO.createImageOutputStream(new File(fileChooser.getSelectedFile().getAbsolutePath() + ".jpg"));
                                  iw.setOutput(imageOutputStream);
                                  iw.write(image.getMetadata(), image, null);
                                  imageOutputStream.close();
                             catch (Exception e){e.printStackTrace() ;}

  • Issue In Lock Box while processing mutiple files at a time:Tcode FLBP

    Hi Experts,
    I have an issue while executing Program RFEBLB30 (or tcode FLBP) for Variant which contains more than one file,means.Variant contains two files ,One file contains Single cheque details and other file contains multiple cheques.
    the final output showing wrong values in Total advice & cheque amount.
    when we process single file at a time(whether file has single or multiple cheque details) we are not facing any issue.
    Thanks & Regards,
    Veera.

    It seems that there is no standard solution there.
    Why do you have 2 files, is this 2 different batches ? Are they from the same day ? Can you ask the bank to bundle them ? Can you run FLBP twice a day to pick uop 1 file only ?
    In FLBP standard selection fields available are
    - Destination / Origin
    - Lockbox
    - Date
    You can maybe also configure a dummy lockbox, use an exit to change it when you process the file.

  • Itunes freezes computer when i try to sync iphone4s

    I have replaced my IPhone3 for IPhone4s.  When I try to sync IPhone4S my itunes freezes computer.  Have to control/alt/delete and sometimes shut down computer.  When it does start to sync it automatically goes to backing up phone and will go to step 2 of 6 and freeze.  Help?

    I am having the same exact issue with my new 4S....hoping someone can help!!

  • Bitshift when resizing image

    I found the following code on http://developers.sun.com/techtopics/mobility/reference/techart/design_guidelines/image_resizing.html, and it works great for resizing an image.
    In an effort to fully understand what is going on, can someone please explain to me what the bitshift that occurs below do. I understand what happens in a bitshift, but I do not know why the author used a left shift of 16 to establish the ratio for the width and height. Is there something significant about a left shift of 16?
      * This methog resizes an image by resampling its pixels
      * @param src The image to be resized
      * @return The resized image
      private Image resizeImage(Image src) {
          int srcWidth = src.getWidth();
          int srcHeight = src.getHeight();
          Image tmp = Image.createImage(screenWidth, srcHeight);
          Graphics g = tmp.getGraphics();
          int ratio = (srcWidth << 16) / screenWidth;
          int pos = ratio/2;
          //Horizontal Resize       
          for (int x = 0; x < screenWidth; x++) {
              g.setClip(x, 0, 1, srcHeight);
              g.drawImage(src, x - (pos >> 16), 0, Graphics.LEFT | Graphics.TOP);
              pos += ratio;
          Image resizedImage = Image.createImage(screenWidth, screenHeight);
          g = resizedImage.getGraphics();
          ratio = (srcHeight << 16) / screenHeight;
          pos = ratio/2;       
          //Vertical resize
          for (int y = 0; y < screenHeight; y++) {
              g.setClip(0, y, screenWidth, 1);
              g.drawImage(tmp, 0, y - (pos >> 16), Graphics.LEFT | Graphics.TOP);
              pos += ratio;
          return resizedImage;
      }//resize image   

    There are so many things this could be, would help if you post a screenshot, and you get a better response on these forums.
    Are you using a thin font? 30 pixels is not very much, and you often want to thicken up a font so you get atleast 1 pixel. Try a different aliasing setting?
    Do you have any layer effects, you can use layer >> layer Style >> scale effects

  • How does one set the DPI when resizing images in Bridge?

    I am sure I am missing something here (so excuse me if its a simple answer) but I am used to using Photo Mechanic and there you are able to set lots of variables while resizing.  I don't understand this Bridge resizing window when using Batch Processing thru Photoshop. 
    -There are two boxes for sizing.  If you put the same dimension in both does it just set the longest dimension to that size?
    -What if I want say a 10x10 inch image at 72 DPI for web use as opposed to a 10 x10 inch image at 300 DPI for printing purposes, where does one enter that info?
    Thanks,
    Joshua

    You don't "resize" anything in Bridge, nor does it set PPI, pixels per inch—and most certainly NOT "DPI" (Dots [of ink] Per Inch) which is exclusively a feature of the printer.
    Bridge is just a File Browser.  It used to be called simply the Photoshop File Browser".  It doesn't open, edit, manipulate resize or even save anything.
    It merely hands the file(s) over to the appropriate application, whether that be Photoshop, adobe Camera Raw, Illustrator, InDesign or even MS Word.
    You wrote:
    -What if I want say a 10x10 inch image at 72 DPI for web use as opposed to a 10 x10 inch image at 300 DPI for printing purposes, where does one enter that info?
    Again, you mean PPI in both instances there.
    You enter that in whatever application you're sending the image from Bridge.
    For instance in Photoshop:

  • Itunes Freezes Computer When Downloading Video To Ipod

    Last week I purchased a brand-new 30 gigabyte video Ipod. It will download music from itunes but not video. I purchased two video programs through the itunes music store, but time I try downloading them to my ipod, the itunes program will download some of the video, but during this process will freeze and lock up my computer. In fact, I can't even do a cont-alt-delete to unlock itunes; I have to actually hard shut down my computer (ouch!). My computer is a Dell Dimension 4300 with Windowns XP (service pack 2), the Video card is NVIDIA GeForce 2 MX/MX 400, and has DirectX9. I'm using the USB-2 port, reinstalled the USB-2 drivers, reinstalled itunes and Quicktime several times, but are still experiencing the same problems. Please Help! Does anyone know what might be wrong?
    Dell Dimension 4300   Windows XP   Version 5.1.2600 Service Pack 2, 256 MB Memory, NVIDIA GeForce 2 MX/MX400 graphics card,

    hiya!
    I purchased two video programs through the itunes music store, but time I try downloading them to my ipod, the itunes program will download some of the video, but during this process will freeze and lock up my computer.
    hmmmm. if a file in your music library is corrupted, it can cause a connection problem with an ipod.
    usually, that causes this error message:
    iTunes displays a -69 error when syncing iPod
    ... or occasionally this one:
    "Disk cannot be read from or written to" when syncing iPod or "Firmware update failure" error when updating or restoring iPod
    ... but on very rare occasions, i've seen it cause the entire PC (not just itunes) to lock up, like you're describing. (this would be the first occasion in which i've seen it happen with a video file, though.)
    so let's quickly check on whether it's those files (or a more general problem) that is causing the issue here.
    are the files playing perfectly fine in your itunes at the moment? (no skips or bumps or odd behavior there?)
    do other video files transfer to the ipod without any problems? this document might be helpful when it comes to checking on that:
    Verifying iTunes video conversion and iPod video syncing using sample QuickTime files
    love, b

  • 'Could not create the file...' 'Access was denied.' and 'Cannot close a closed file.' Errors When Rendering Image Sequence

    Hello,
    I am getting the below error messages when I render a TIFF image sequence using default settings. I have double-checked and I have read-write privileges for the file destination. I have also emptied the Disk Cache and Cleaned the Database. My system set-up is also below - there was no error log. Any help/ideas would be greatly appreciated as this keeps happening.
    My Computer
    Windows 7 Professional Service Pack 1, 64-bit
    Intel Xeon CPU E5-2697 v2 @ 2.7 GHz
    64 GB RAM
    After Effects
    2014.2
    Render Settings
    After Effects Multiprocessing ON (I tried it with and without)
    Disk Cache Enabled
    Default TIFF Sequence with Alpha Output Module

    Google Drive? Directly rendering to a synced folder? This cannot work.
    Mylenium

  • Freezes Computer When Playing Custom Sounds

    Upon downloading any file using either Download Manager or DownloadThemAll, Firefox will freeze my computer. The harddrive completely stops. The keyboard and mouse are unresponsive; not even caps or num lock can toggle the lights on my keyboard.
    I've performed a disk check and an overnight memory test, both of which found no errors.
    When turn off the download completed sounds for both of these addons, Firefox functions normally.
    This isn't just an addon problem, however, because TBird developed a similar problem at the same time. (To see my error report for that, please go here: https://getsatisfaction.com/mozilla_messaging/topics/freezes_computer_when_playing_custom_sounds )
    All other sounds play fine, both in local players and on YouTube.
    To best fix this problem, I really need to know how Firefox (and TBird) are playing sounds. This problem appeared out of the blue without having any updates to either program. I recently had install java 7 64-bit, having previously run only 32-bit on my 64-bit machine. I've heard that this program is very buggy and could've caused serious issues. I've uninstalled java and reinstalled java 6 32-bit, but that doesn't appear to fix the problem. I'm thinking a sound driver may have gone bad, but this doesn't make sense as I can player other sounds fine, even sounds that take java like Minecraft.
    I've yet to discover any other method by which I can reproduce this crash and I've tested it extensively.
    Thanks for your help.

    Out of date pluggins were:
    Java - I rolled back to version 6 as I believed it could be my issue.
    Adobe Reader
    Quicktime
    Google Earth
    I also have the VLC web pluggin, which was up to date.
    I recently stumbled upon a YouTube video that could cause the same manner of crash, so apparently, players may have the same effect.
    I'm going to check out my audio drivers as well to see if they could also be at fault.
    *couple days later*
    After updating the drivers, the problem went away. We're assuming that the problem was corrupted drivers, possibly caused by 64-bit java 7, but that's just speculation.
    Thanks,
    Problem Solved

  • Errors when using "Limit file size to" when exporting images

    When I try to use the "limit file size to" option in Export, I often get at least one image that doesn't export, and I get a dialogie box like the image attached here:
    As I am exporting in batches, it geats really messy and risky too!I have tried various file size options but that doesn't seem to be a factor.
    Any ideas on solving this, or is it an unfixed Lr bug?!
    thanks in advance

    I can't reproduce it here, so you could try trashing the preferences file http://members.lightroomqueen.com/index.php?/Knowledgebase/Article/View/1148/198/how-do-i- delete-the-lightroom-preferences-file
    If that doesn't do the trick, post it on the Official Feature Request/Bug Report Forum

  • Adobe Reader XI freezes computer when opened from Excel hyperlink

    My computer has been frozen multiple times after opening a pdf from a hyperlink in Excel. Sometimes it randomly freezes after reading the document for a while and sometimes it freezes when I try to close the document. I have Adobe Reader XI 11.0.06, I'm using Windows 7 Home Premium 64-bit OS, and Excel 2010. The mouse will still move sometimes once things freeze up but clicking doesn't work and alt+ctrl+del doesn't bring up task manager either, so I have to hard reboot. Anyone have a fix for this?
    Thanks in advance.

    The first thing I would try is to disable Protected Mode in Adobe Reader [Edit | Preferences | Security (Enhanced)].

  • Itunes Freezes computer when trying to sync Ipod

    Hi
    My Itunes has started freezing when I try to update my Ipod by syncing.
    Is anyone else having the same problem?
    It starts syncing songs then feezes and the whole computer is locked!
    Can anyone help???
    Thanks
    Kevin

    Take a look at this article from the apple support website.
    Try the reset and restore if necessary.
    http://docs.info.apple.com/article.html?artnum=32222

Maybe you are looking for