I am working with images around 4,000 x 4,000 pixels. Upon resizing, images get pixelated. HELP!

Uni student here. Doing a video for a model photoshoot and it seems that whenver I attempt to resize my large images, the image becomes noticeably pixelated. How can I avoid this?

Uni student here. Doing a video for a model photoshoot and it seems that whenver I attempt to resize my large images, the image becomes noticeably pixelated.
What does "pixelated" mean? sorry, this is far too vague. Any resizing operation causes resampling no matter whether it's up or down, but specific procedures affect it more than others. Conversely even "scaling" your image in the comp preview to display it smaller in your comp at 50% or whatever res you use will introduce further artifacts, not to speak stuff to do with pixel aspect ratio conversions, hardware accelerated display and what have you... You need to provide a lot more info and screenshots. We don't even know what version of AE you are using on what system. As a start, set your comp res and zoom to 100% when you do your scaling and judge quality this way. Everything else would be pointless. If you still see issues, clarify and provide the necessary details.
Mylenium

Similar Messages

  • Work with images in netBeans Help needed !

    Hai Guys,
    I have problem in inserting image in JFrame(In netBeans). Can any one tell me the way to insert an image to JFrame and save that image in my SQL database?
    Guys this is a very important task to me so please help me !
    Thanks for watching / replying

    If you are using net beans use the image view if it and insert the picture of the customer in to explicitly in to the column you want to put in and check the code generated behind.
    So you come to how to insert the picture in to the pane of the Jframe.
    Inseting the particular image in to database
    do as he said "BLOB" as your datatype and store the image.
    I think in your Jframe you might be taking the input from the user and posting it to show the user what he has entered and then saving it into the database.
    so directly put the input data first in to the required column where you are showing user the data what he entered and then on submit/save button call action performed method to save the data in the database

  • How to work with images in Keynote

    Hello,
    I'm a Keynote newbie and am having problems working with images. My basic question is, do I have to resize my .jpgs every time I put them in Keynote? It seems that if I choose to Insert>Choose a .jpg, it will fill my entire presentation and I have to resize. If I drag a .jpg, from iPhoto using the Media browser button, the .jpg will land squarely on the part of my canvas that's meant for the image (in the photo-with-title master slide). BUT, the image will just be masked and I once again need to resize it to fit the designated area.
    My second question is, if resizing is a fact of life in Keynote, are there any shortcuts which would allow me to resize quickly/automatically to the size of the image area on the canvas?

    I think Keynote inserts images in their native size, meaning that if you have a big jpg to begin with, it'll appear big on the slide. If you can't adjust the size of the images you have to begin with (for instance, you could easily adjust their size in a program like GIF Coverter--which would actually allow you to resize several at a time--before you begin to deal with Keynote at all) there is another solution to make it easier. Adjust the magnification of the slide to 50% so that when you insert the big images you can find the corners easily.
    I should add that I've only ever used Keynote 1. But Keynote arrives (inside a new iMac) as soon as tomorrow.

  • Working with images as data

    Hi,
    How do I work with image data in HTML DB? I'd like to define a column of type ordimage (or if not that then BLOB)load images in the column, query images based on other related data in the row and display the images with related data. Thx. Bill

    hi bill--
    i'm pretty sure you'll find the answers you need in an ealier thread from this discussion forum...
    BLOB (images) support in MarvelForms
    could you take a look at it and let us know if you'd like further assistance, please?
    thanks,
    raj

  • HP Photosmart C2780 All-in-one won't work with Image Capture

    I want to use Image Capture as the scanning software but it won't connect to my scanner (HP Photosmart C2780 All-in-one). When I go to browse devices it shows the scanner but when i click on "Use Twain UI", nothing happens, and it is supposed to ask me if I want to connect. I believe that I have followed all of the instructions correctly but nothing is happening. Does the HP Photosmart C2780 even work with Image Capture? and if it does what am I doing wrong?

    Install the HP Drivers from HP.
    I installed V9.7.1 from the HP website:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-55650-2 &lc=en&cc=us&lang=en&os=219&product=3204785&dlc=en
    This provides 'Hp Device Manager' which will scan images or do OCR on text pages....

  • Why does the color red change from working with images in develop to library?  The color gets lighter and nothing shows a change on histogram but visually you can see it.

    Why does the color red change from working with images in develop to library?  The color gets lighter and nothing shows a change on histogram but visually you can see it.

    That's probably a broken display profile. The conversion from Library's Adobe RGB is different than the conversion from Develop's linear ProPhoto, so if there's a problem with the display profile it can show up this way.
    Recalibrate, or if you don't have a calibrator use sRGB. If your monitor is a wide gamut model use Adobe RGB.
    Assuming Windows, change it in Control Panel > Color Management > Devices, and relaunch Lightroom so that it can pick up the new profile at startup:

  • Can I  get a thunderbolt 27" display to work with a Mac Pro desktop? if so how?, Can I  get a thunderbolt 27" display to work with a Mac Pro desktop? if so how?

    How can I get a thunderbolt disply to work with a MacPro desktop???

    HeadChef wrote:
    How can I get a thunderbolt disply to work with a MacPro desktop???
    You can't; there's no Thunderbolt port on a Mac Pro. If you just bought the display, try to swap it for the standard 27" LED display with the mini display port connector (that assumes your Mac Pro is a 3,1 or later, which has a mini display port).

  • ActionListener doesn't work with image command_button

    Hi,
    with EA4, if I set an ActionListener on a command_button without specifying the image attribute, everything just works fine.
    If I now replace the label attribute with an image attribute, the action listener is no longer triggered.
    It seems that nobody reported this problem before, so maybe I've missed something.
    I tried several ways to make it work, but without success.
    Any clue ?
    Here is the code of my test :
    ** index.jsp :
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <head>
    <title>
    Action listener and image command button
    </title>
    </head>
    <body>
    <f:use_faces>
    <h:form id="form" formName="form">
    <h:command_button id="clickButton" commandName="click" image="foo.gif">
    <f:action_listener type="foo.MyBeanActionListener" />
    </h:command_button>
    <h:output_text id="text" valueRef="MyBeanActionListener.text" />
    </h:form>
    </f:use_faces>
    </body>
    </html>
    ** faces-config.xml :
    <?xml version="1.0"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
    <faces-config>
    <managed-bean>
    <managed-bean-name>MyBeanActionListener</managed-bean-name>
    <managed-bean-class>
    foo.MyBeanActionListener
    </managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    ** MyBeanActionListener :
    package foo;
    import javax.faces.event.*;
    import javax.faces.application.*;
    import javax.faces.FactoryFinder;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    public class MyBeanActionListener implements ActionListener {
    private String text;
    public void processAction(ActionEvent event) throws AbortProcessingException {
    FacesContext context = FacesContext.getCurrentInstance();
    ApplicationFactory factory = (ApplicationFactory)
    FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);
    Application application = factory.getApplication();
    ValueBinding binding = application.getValueBinding("MyBeanActionListener.text");
    binding.setValue(context, "Button was Clicked");
    public PhaseId getPhaseId() {
    return PhaseId.ANY_PHASE;
    public void setText(String text) {
    this.text = text;
    public String getText() {
    return text;
    Thanks in advance.
    Michael

    but with EA4 the TLD doesn't
    define any src attribute for tag command_button.
    Do you (or anybody) have another idea ?oh - sorry about that ... i was looking at some other tag on my JSP and wrote this ...
    yeah, but an absolute URL does solve the problem ... or if u want it to work with a relative URL - use the HTML <base href=".." /> tag to establish the base

  • How Mail work with image attachements and HTML image ?

    Hello,
    I'm writing an application that sends html emails with images to Mail.app. When Mail display the mail, everything is okay, images are correctly embedded in html code, using inline attachements.
    But there's still a problem : The images are also displayed at the bottom of the email, as file attachements. I know that Mail's template can hide these attachements, but I cannot reproduce it when sending my own emails.
    Is there anybody here that already get such problem and find the solution ? (apparently, Windows User get the same problem with Outlook, but they have an API under Windows...I'm using my own email API..)
    David

    David can you share how you managed to get the inline images to work. I've got the general idea of how to do it. But I do not seem to be able to change the Content-Type to multipart/mix. Can you point me in the right direction. Should the Content-Type definition and everything else be part of the body? Or should some headers (namely the multipart) be defined in the mailto URL format?
    In other words do you do: mailto:?subject=test&Content-Type=multipart/mix;%20boundary=myBoundary&body=--m yBoundary etc...
    Or id it: mailto:?subject=test&body=Content-Type=multipart/mix;%20boundary=myBoundary%20- -myBoundary etc..
    Neither seems to work for me so I am really stuck. But knowing what the right way is would help me figure things out a bit better.
    Thanks in advance

  • Can import TIFF files but not see or work with images

    I previously used Aperture 2 with no problems. I have scanned a large number (hundreds) of negatives using SilverFast current version 6.6.2r2 using a Plustek OpticFilm 7500i scanner. These files are saved as .tif and are all approx 55 MB in size. I was able to view, work with them with no problems in Aperture 2. I can see and work with them in Photoshop CS4, iPhoto, Preview on my iMac and in any program on my PC. However, I cannot view them or work with them in Aperture 3
    When I updated to Aperture 3, the scanned files were visible in the preview mode but not otherwise viewable. Another image from a different project would appear or the image was corrupted. I have done everything in Aperture Library First Aid. I have deleted all of my projects, including my vault, uninstalled and reinstalled Aperture 3 and have the same problem. The image is viewable in Browser (preview mode) but either no image or another image shows up in Viewer or Inspector mode. When looking at the Metadata info, the file name is correct but a different version name is being assigned from a different project.
    Any ideas are appreciated. I am about to give up on A3 as it has been nothing but problems and unusable since installed/reinstalled.
    By the way, JPEGs from camera, cards, etc have been ok. But one of the major goals I have is to capture my old negatives. Unfortunately, the SilverFast JPEG option is not a viable option as not a viewable file by most programs. I have used the VueScan software but have not been happy with the image quality. Besides, I don't want to have to rescan all of these images.

    I wanted to give an update to my issue. The originals are 16-bit TIFFs using RGB color.
    I spoke with Apple Support. After uninstalling, reinstalling, making a new library, importing, generating previews, regenerating previews, attempting importing after saving as JPEGs, 8-bit TIFFs, 16-bit TIFFs from other programs (all of which are able to import and present the orginal .tif files with no problems, Aperture 2 included), the conclusion was that there must be something wrong with my original .tif files.
    I then brought up the only "solution" that had worked to date. That is importing the original TIFF, exporting it (via Aperture 3) as a TIFF and then importing the new TIFF. This has given me usable images and not just the previews. He said that that looked like the only workaround but that it wasn't a problem because of Aperture itself!?
    As cumbersome as this process will be, it may be worth it. I have trialed Lightroom 3 (which can handle the originals with no problem), and at least so far, I much prefer Aperture's workflow and organizational approach.

  • Epson 1640xl does't work with image capture.

    I have an epson 1640XL scanner. I know the epson scan utiliy doesn't work with Snow Leopard. I have been instructed to use Image Capture.
    I see the scanner on the left, and when it "overview" scan's the image the scanner makes noise but doesn't produce anything on the screen.
    Any thoughts on how to get it working?
    seth

    I had all the problems stated above, while trying to scan with Image Capture. I got nothing but the "the scan operation is cancelled", after multiple tries. I called Epson. They said there was no driver that would work with OS X 10.8.4 for this scanner, and suggested that I call Apple. Apple said there was nothing they could do, and that I should call Epson. I followed the advise someone gave above, and downloaded EPSON Scan 3.8.0. The Epson software didn't work. It didn't seem to be able to pick up the 1640 XL. But, suddenly, I could preview with Image Capture. It was progress, but wouldn't work past the Overview step. The Scan button was "greyed out", not allowing me to proceed. I then tried importing through Photoshop. It works! Go to File/Import/Images from Device and you will get beautiful scans. Good luck, everyone.

  • Working With Image

    Hi,
    How to write a code by using keylistener to delete the key component in java

    What do you mean by "key component?" What do you mean by "delete?" What does this have to do with Image?

  • Ps keeps crashing after shortcuts stop working and image get screwed up when using the hand tool

    Hi, ive been having problems with Photoshop Cs4 for a while.
    I work with big photo files and when i have alot of layers and use the hand tool to move throughout the image this happens:
    http://i94.photobucket.com/albums/l114/cogubr/Screenshot2010-04-27at42352PM.png
    Alot of times PS shortcut's stop working and eventually PS crashes.
    I have an 27 imac 3.33 GHZ Core Duo/8GB DDR3/256MB ATI Radeon HD 4670
    When im using photoshop, even if i have other softwares open at the same time I still have 5gb of ram available.
    Any suggestions to solve this?

    I tried everything and the issues are still there.
    My PS just crashed, this is the crash report:
    Process:         Adobe Photoshop CS4 [244]
    Path:            /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    Identifier:      com.adobe.Photoshop
    Version:         11.0.1 (11.0.1x20090216 [20090216.r.522 2009/02/16:17:00:00 cutoff; r branch]) (11.0.1)
    Code Type:       PPC (Translated)
    Parent Process:  launchd [97]
    Date/Time:       2010-04-29 17:50:22.430 -0700
    OS Version:      Mac OS X 10.6.3 (10D573)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000020
    Crashed Thread:  0
    Thread 0 Crashed:
    0   ???                               0x4be22af2 0 + 1273113330
    Thread 1:
    0   libSystem.B.dylib                 0x801402fa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x80140a67 mach_msg + 68
    2   com.adobe.Photoshop               0xb819440f CallPPCFunctionAtAddressInt + 206231
    3   libSystem.B.dylib                 0x8016da19 _pthread_start + 345
    4   libSystem.B.dylib                 0x8016d89e thread_start + 34
    Thread 2:
    0   com.adobe.Photoshop               0xb815acc0 spin_lock_wrapper + 90152
    1   com.adobe.Photoshop               0xb8179c5b CallPPCFunctionAtAddressInt + 97763
    2   com.adobe.Photoshop               0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x8ba42dfe 0 + 2342792702
    Thread 3:
    0   com.adobe.Photoshop               0xb815a8c8 spin_lock_wrapper + 89136
    1   com.adobe.Photoshop               0xb8176d61 CallPPCFunctionAtAddressInt + 85737
    2   com.adobe.Photoshop               0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x8acdf886 0 + 2328754310
    Thread 4:
    0   com.adobe.Photoshop               0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop               0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop               0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.Photoshop               0xb80c0037 0xb8000000 + 786487
    4   com.adobe.Photoshop               0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.Photoshop               0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.Photoshop               0xb801ceb7 0xb8000000 + 118455
    Thread 5:
    0   com.adobe.Photoshop               0xb815aa8b spin_lock_wrapper + 89587
    1   com.adobe.Photoshop               0xb818c3eb CallPPCFunctionAtAddressInt + 173427
    2   com.adobe.Photoshop               0xb818eeec CallPPCFunctionAtAddressInt + 184436
    3   com.adobe.Photoshop               0xb80e88cb 0xb8000000 + 952523
    4   ???                               0x8aacf3e6 0 + 2326590438
    Thread 6:
    0   com.adobe.Photoshop               0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.Photoshop               0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.Photoshop               0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x8bfc63bb 0 + 2348573627
    Thread 7:
    0   com.adobe.Photoshop               0xb815ad03 spin_lock_wrapper + 90219
    1   com.adobe.Photoshop               0xb81749fb CallPPCFunctionAtAddressInt + 76675
    2   com.adobe.Photoshop               0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x4c5c62dc 0 + 1281123036
    Thread 8:
    0   com.adobe.Photoshop               0xb815a8c8 spin_lock_wrapper + 89136
    1   com.adobe.Photoshop               0xb8177c07 CallPPCFunctionAtAddressInt + 89487
    2   com.adobe.Photoshop               0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x4c5828d1 0 + 1280846033
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x7f8392f4  ecx: 0x448a4585  edx: 0x948bbc64
      edi: 0xb0f9df26  esi: 0x8a97ae14  ebp: 0x8a028d80  esp: 0xb7fffacc
       ss: 0x0000001f  efl: 0x00010286  eip: 0x4be22af2   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000020
    Binary Images:
    0x261fe000 - 0x261ffff7  BDL.dylib 38.0.0 (compatibility 1.0.0) <9D3E78C6-FD08-A681-CBCF-EE5495D4116D> /usr/libexec/oah/Shims/BDL.dylib
    0x26203000 - 0x26203ff7  libSystem.B.dylib 38.0.0 (compatibility 1.0.0) <49E64BCB-1704-E07E-459A-21C7F3F636A2> /usr/libexec/oah/Shims/libSystem.B.dylib
    0x26207000 - 0x26209ff7  CoreFoundation 38.0.0 (compatibility 150.0.0) <08035C81-3A3A-2508-93BC-856946E0F9C5> /usr/libexec/oah/Shims/CoreFoundation.framework/CoreFoundation
    0x26297000 - 0x2629fff7  IOKit 38.0.0 (compatibility 1.0.0) <1C07A19F-46C4-5568-A9F4-940F892D8CBA> /usr/libexec/oah/Shims/IOKit.framework/IOKit
    0x262a5000 - 0x262a5ff7  ApplicationServices 38.0.0 (compatibility 1.0.0) <31D5A4F2-0D67-53EA-C597-487219F837A2> /usr/libexec/oah/Shims/ApplicationServices.framework/ApplicationServices
    0x262a9000 - 0x262deff7  GLEngine ??? (???) <9044CC6B-A668-2190-FC81-4C3A37B67639> /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x262e3000 - 0x26456fe7  GLEngine ??? (???) <F0181B85-962E-508D-4912-056D87F8E96E> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x26488000 - 0x2648cff7  IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x26494000 - 0x26498ff7  libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x2649d000 - 0x264ceff7  libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x264d6000 - 0x265e2ff7  libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0x26601000 - 0x26604ff7  libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x26609000 - 0x269cdfff  com.apple.ATIRadeonX2000GLDriver 1.6.10 (6.1.0) <9B57C8E6-B6F7-24F4-0DC8-8CBC61F5306B> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRadeonX2000GLD river
    0x269fa000 - 0x26a1dfe7  GLRendererFloat ??? (???) <65E1E174-28E0-3FA9-E391-504891B69818> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x80000000 - 0x8005bff7  com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x8007a000 - 0x800e4fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x8013f000 - 0x802e4feb  libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x80364000 - 0x804ddffb  com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x805d5000 - 0x805e3fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x805e8000 - 0x805f4ff7  libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x805f8000 - 0x8063eff7  libauto.dylib ??? (???) <9A2E444C-89BD-2902-C1E6-EC3E92544A25> /usr/lib/libauto.dylib
    0x8064b000 - 0x807cdfe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x8082f000 - 0x808dcfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <3308DD74-5D03-6189-2AFD-63BF06848E91> /usr/lib/libobjc.A.dylib
    0x808f0000 - 0x808f3fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x8fe00000 - 0x8fe41627  dyld 132.1 (???) <7E8A62A5-BB2D-C9C5-940D-B493DC9CD231> /usr/lib/dyld
    0xb8000000 - 0xb81defff +com.adobe.Photoshop 11.0.1 (11.0.1x20090216 [20090216.r.522 2009/02/16:17:00:00 cutoff; r branch]) (11.0.1) <C6CB6BA8-8BA2-8F0A-4A49-912B00D2FF10> /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Translated Code Information:
    objc[244]: garbage collection is ON
    Rosetta Version:  22.26
    Args:      /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 -psn_0_151589
    Exception: EXC_BAD_ACCESS (0x0001)
    Fullscreen: Activated
    Thread 0: (0xb0428e04, 0xb815ad03)
    0x94655f84: /usr/lib/libSystem.B.dylib : __pthread_cond_wait + 880
    0x95813d28: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TSWaitOnCondition + 136
    0x95813e58: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TSWaitOnConditionTimedRelative + 204
    0x957d098c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnQueue + 280
    0x02db1a8c: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE :  + 187020
    0x02db1410: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE :  + 185360
    0x957d1e7c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x946560f0        ctr: 0x946a2fb4
    r00: 0x0000014e     r01: 0xf0386b90     r02: 0xf0386bdc     r03: 0x00004b03    
    r04: 0x00004703     r05: 0x00000000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000000     r09: 0x00000000     r10: 0x945d11d4     r11: 0xa066f198    
    r12: 0x946a2fb4     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0xf0386d38     r21: 0xf0386d48     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0xa06766fc     r27: 0x00000000    
    r28: 0xa0870c64     r29: 0x1bae2200     r30: 0x27e016a8     r31: 0x94655c20   
    Thread 1: (0xb0220d74, 0xb815a8ff)
    0x9473b038: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x94739724: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x9473b050        ctr: 0x945b9140
    r00: 0xffffffda     r01: 0xf0203dc0     r02: 0x00000000     r03: 0x00002703    
    r04: 0x00000040     r05: 0x3b98da59     r06: 0x00000020     r07: 0x00000000    
    r08: 0x3b98da59     r09: 0x00000000     r10: 0x3b98da59     r11: 0xa066f664    
    r12: 0x945b9140     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0xa06757ac     r22: 0xa06757a0     r23: 0xa06757a8    
    r24: 0x000004a2     r25: 0x5d37903f     r26: 0xa06754ec     r27: 0x00000040    
    r28: 0x0000000f     r29: 0x224b5a59     r30: 0xa0675780     r31: 0x9473af48   
    Thread 2: (0xb03a6e34, 0xb815a8ff)
    0x957d0f30: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x26d95a8c: /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support :  + 215692
    0x957d1e7c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x957d0f74        ctr: 0x945b9140
    r00: 0xffffffda     r01: 0xf0305da0     r02: 0x1b4a9300     r03: 0x00008c07    
    r04: 0x7fffffff     r05: 0x00000000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000040     r09: 0x4d555458     r10: 0x00000000     r11: 0xa066f664    
    r12: 0x945b9140     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0x26db5a30     r27: 0x26db5a30    
    r28: 0x26db5a30     r29: 0x7fffffff     r30: 0x00000000     r31: 0x957d0f14   
    Thread 3: Crashed (0xb7fffacc, 0x4be22af2)
    0x948bbc64: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD : _DisposePixMap + 48
    0x948bcd8c: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD : _CloseCPort + 1204
    0x948bceec: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD : _DisposePort + 52
    0x91f7dc40: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : WindowData::~WindowData() + 644
    0x91f75c48: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : HIViewWrapperDef::~HIViewWrapperDef() + 48
    0x91e78690: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : HIObject::HandleClassHIObjectEvent(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 304
    0x91e7883c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : HIObject::EventHook(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 76
    0x91dd781c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1524
    0x91dd81d8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 456
    0x91dd84b8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _SendEventToEventTargetWithOptions + 72
    0x91e7a29c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : HIObject::Destruct() + 172
    0x91f7add8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : WindowData::Destruct() + 644
    0x974e72e8: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : __CFRelease + 276
    0x91e35590: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : Dispose1MenuWindow(MenuData*, void*) + 16
    0x974a9208: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFDictionaryApplyFunction_block_invoke_1 + 60
    0x97583c98: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFBasicHashApply + 164
    0x974aa6c4: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFDictionaryApplyFunction + 260
    0x91e5505c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : ForEachMenuDo(long (*)(MenuData*, void*), void*) + 72
    0x974e5a70: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFRunLoopRun + 5140
    0x974e6208: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 656
    0x91debbf8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _RunCurrentEventLoopInMode + 236
    0x91df1ef8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _GetNextEventMatchingMask + 120
    0x91df22c8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _WNEInternal + 180
    0x91df24bc: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _WaitNextEvent + 76
    0x0007eb74: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 514932
    0x0084716c: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 8675692
    0x00081c9c: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 527516
    0x00082894: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 530580
    0x00082b58: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 531288
    0x00845010: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 8667152
    0x0007fe5c: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 519772
    0x002c26d8: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 2889432
    0x002c2b10: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 2890512
    0x00003d7c: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 11644
    0x00003a80: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 : __mh_execute_header + 10880
    0xc8f7ffbf: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x948bbc64        ctr: 0x946a2efc
    r00: 0x948bbc64     r01: 0xbfffd2d0     r02: 0x384235e0     r03: 0x448a4585    
    r04: 0x00000000     r05: 0xa0870c5c     r06: 0x0000002c     r07: 0x00000001    
    r08: 0x00000000     r09: 0x00000000     r10: 0x9469b558     r11: 0xa0867188    
    r12: 0x946a2efc     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000497     r17: 0x8d38131b     r18: 0xa06766b0     r19: 0xa0c771dc    
    r20: 0xa0c6288c     r21: 0xa0c6287c     r22: 0x9759a2e0     r23: 0x9759a80c    
    r24: 0x00000000     r25: 0x28797c34     r26: 0xc896e8f0     r27: 0xc896ebd0    
    r28: 0x26dff9b0     r29: 0x00000000     r30: 0x047e0000     r31: 0x948bc8e4   
    Thread 4: (0xb052ce48, 0xb815a8c8)
    0xf0509d28: No symbol
    0x2a05e12c: /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport : ScObjects::Thread::sleep(unsigned int) + 144
    0x2a05e234: /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport : ScObjects::Thread::wait(unsigned int) + 56
    0x2a04c818: /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport : ScObjects::BridgeTalkThread::run() + 436
    0x2a05e5d4: /Applications/Adobe Photoshop CS4/Plug-ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport : ScObjects::Thread::go(void*) + 316
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x945daff0        ctr: 0x945b9240
    r00: 0xffffffa6     r01: 0xf0509cb0     r02: 0x00000498     r03: 0x00000498    
    r04: 0x282d71dd     r05: 0x00000000     r06: 0x00000001     r07: 0x00000000    
    r08: 0x9474f5d4     r09: 0x00000000     r10: 0x00000000     r11: 0xa066f028    
    r12: 0x945b9240     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0xa067ae7c    
    r24: 0x00000000     r25: 0xf0509d70     r26: 0xa067ae7c     r27: 0xa067bdd4    
    r28: 0x00000498     r29: 0x00000498     r30: 0x282d71dd     r31: 0x945dae7c   
    Thread 5: (0xb009adf8, 0xb815acc0)
    0x94739a4c: /usr/lib/libSystem.B.dylib : __dispatch_mgr_invoke + 228
    0x94739430: /usr/lib/libSystem.B.dylib : __dispatch_queue_invoke + 308
    0x947395c0: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread2 + 372
    0x947396fc: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 76
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x94739a14        ctr: 0x945fccec
    r00: 0x0000016b     r01: 0xf0080bb0     r02: 0x00000000     r03: 0x00000004    
    r04: 0x00000000     r05: 0x00000000     r06: 0xf0080d0c     r07: 0x00000001    
    r08: 0xf0080d28     r09: 0x00000000     r10: 0x0000003e     r11: 0xa066e520    
    r12: 0x945fccec     r13: 0x10624dd3     r14: 0x94788b24     r15: 0xf0080c0c    
    r16: 0xf0080c8c     r17: 0xa0689970     r18: 0xf0080d28     r19: 0xa0683500    
    r20: 0xa0684500     r21: 0xf0080d0c     r22: 0xa0683480     r23: 0xa0683400    
    r24: 0xa0689970     r25: 0x00000000     r26: 0xa067560c     r27: 0x00000000    
    r28: 0xa06755e4     r29: 0xa067531c     r30: 0xf0080d28     r31: 0x94739970   
    Thread 6: (0xb032484c, 0xb815aa8b)
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    0x958119b4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TS_exception_listener_thread + 128
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x945b9804        ctr: 0x945b90d0
    r00: 0xffffffe1     r01: 0xf0284df0     r02: 0xa067c970     r03: 0x25800200    
    r04: 0x00000002     r05: 0x00000000     r06: 0x00000054     r07: 0x00008907    
    r08: 0x00000000     r09: 0x00000000     r10: 0x26000000     r11: 0xa066f17c    
    r12: 0x945b90d0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x25800200     r23: 0x00000000    
    r24: 0x00000054     r25: 0x00008907     r26: 0x00000000     r27: 0x00000000    
    r28: 0x00000002     r29: 0x00000002     r30: 0x00000000     r31: 0x9581193c   
    Thread 7: (0xb019ee38, 0xb815a8c8)
    0x94655f84: /usr/lib/libSystem.B.dylib : __pthread_cond_wait + 880
    0x0ae4af58: No symbol
    0x0ae45b70: No symbol
    0x0ae4affc: No symbol
    0x946597e8: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /Applications/Adobe Photoshop CS4/Adobe Photoshop CS4.app/Contents/MacOS/Adobe Photoshop CS4 :  + 0
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x94655fdc        ctr: 0x945b9130
    r00: 0xffffffdb     r01: 0xf0182d20     r02: 0x00000001     r03: 0x00004403    
    r04: 0x00004503     r05: 0x00000000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000000     r09: 0x00000001     r10: 0xa0687568     r11: 0xa066f668    
    r12: 0x945b9130     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0xa06766fc     r27: 0x00000000    
    r28: 0x05956920     r29: 0x00000000     r30: 0x059565d0     r31: 0x94655c20   

  • Does firefox work with the Hypersnap-Dx pro for screen captures. I can't get it to work with scroll option??

    I have been using Hypersnap dx pro for awhile now with firefox but it won't work with auto-scroll to get the whole page. Thanks.

    A mouse, which is a pointing device, will not work with an iPad...there is no cursor for the mouse to move around.  You must use the touch screen.

  • How do I get Acrobat Reader to work with Firefox again? I'ver tried everything that I can find in the Help area.

    A while back now I lost use of Acrobat Reader's loading feature while in Firefox. I have tried all of the suggestions that I can find in the Help Menu, on blogs, etcetera, and nothing has worked to re-enable it. The Acrobat Reader seems to work fine from all other browsers, and from the Start Menu. I just can't get it to work with Mozilla.

    I solved this problem by looking at the plug-ins I had in 5.0 and found that I had two versions of Adobe - a V8 and a V10 enabled. I disabled the V8 and it all works fine now.

Maybe you are looking for

  • Word wrap on scrolling textPane

    Hi, How do I turn the word wrap off on a textPane so I can have a scrollable continuous string? Thanks Andy

  • Making field mara-maktl not mandatory in mm02/mm01

    hello sdn people, hopefully the economy is not in peril where you are... as my subject line states, i have checked the transactions OMSR / OMS9 and it shows that the field should be display, but it is still required. i would like to turn this off so

  • Edit photo in LR5 not opening image with LR edits in PSCC

    I've been using the edit photo in PS option from LR2 all the way through to LR4 with no issues, and now since upgrading to LR5 and PSCC my images will not open in PSCC with the edits Ive done in LR5.  Its beyond frustrating. Can anyone suggest any ti

  • Macromediaflashplayer8 problem

    hi, i have adobe 9.0.16.0 installed and also flash player 9, but when i start up my computer i keep getting a message saying:'A script in this movie is causing macromedia flash player 8 to run slowly.If it continues,your computer may become unrespons

  • Question on upgrading to tiger

    Im going to upgrade from panther to tiger and I'm trying to find out what version of iTunes comes with tiger 10.4.3,(im thinking 6.0.1), Im running panther 10.3.9 now and have installed the update of iTunes to 6.0.2 will this downgrade of iTunes from