Problems for retrieving image attributes

Hi,
I am a new user for Oracle interMedia and i have following problem.
I have wroten ein java programm to retrieve the image properties. At First, the images (jpg, tif) are stored as BLOB in the table, then i use the function setProperties() to set the image attributes.
PreparedStatement pstmt = con.prepareStatement("INSERT INTO btable VALUES(?, ORDSYS.ORDImage.init())");
for (int ef=1; ef<=anzahl_summe; ef++){
pstmt.setInt(1, ef);
pstmt.execute();
OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM btable WHERE bid = " + ef + " FOR UPDATE");
while(rs.next()) {
OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
imgObj.loadDataFromFile(f_location[ef]);
imgObj.setProperties();
OraclePreparedStatement orpstmt = (OraclePreparedStatement)con.prepareStatement("UPDATE btable SET bild = ? WHERE bid =" + ef);
orpstmt.setCustomDatum(1,imgObj);
orpstmt.execute();
orpstmt.close();
Now if i use the functions getHeight(), getFormat(), ... for querying the properties, i will get just only the values for the image height, width and size. The other attribute values i get either null or ???. I don't understand why. The Bildforamte(jpg, tif)are supported by Oracle.
Can you tell me what shall i do?
thank you very much and greeting from germany
rabbit

Hi larry,
thank you for your help. I have set autocommit off and commit in the end of the programm. I think, that is not a problem.
I use the following table:
CREATE TABLE bildtable_intern(bild_id int PRIMARY KEY not null, bild ORDSYS.ORDImage)
My java programm:
public class OracleBild_intern {
public Connection connect() throws Exception{
//thin driver is used
conn.setAutoCommit(false);
public void bildmessung(Connection con) throws Exception{
PreparedStatement pstmt = con.prepareStatement("INSERT INTO bildtable_intern VALUES(?, ORDSYS.ORDImage.init())");
for (int ef=1; ef<=10; ef++){
pstmt.setInt(1, ef);
pstmt.execute();
OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM bildtable_intern WHERE bild_id = " + ef + " FOR UPDATE");
while(rs.next()) {
OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
//I have also tried to use loadDataFromInputStream() and loadDataFromByteArray()
imgObj.loadDataFromFile(f_location[ef]);
imgObj.setProperties();
OraclePreparedStatement orpstmt = (OraclePreparedStatement)con.prepareStatement("UPDATE bildtable_intern SET bild = ? WHERE bild_id =" + ef);
orpstmt.setCustomDatum(1,imgObj);
orpstmt.execute();
orpstmt.close();
pstmt.close();
retrieveattr(con);
public long retrieveattr(Connection con) throws Exception{
OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM bildtable_intern");
while (rs.next()){
OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
System.out.println("bild_id = " + rs.getInt(1));     
System.out.println("bild_height = " + imgObj.getHeight());
System.out.println("bild_width = " + imgObj.getWidth());
System.out.println("bild_size = " + imgObj.getContentLength());
System.out.println("bild_format = " + imgObj.getFormat());
System.out.println("contentformat = " + imgObj.getContentFormat());
System.out.println("compressionformat = " + imgObj.getCompressionFormat());
System.out.println("mimetyp = " + imgObj.getMimeType());
public static void main(String[] args) throws Exception{
//call the methode connect()
con.commit();
con.close();
I try again, but i get always only the values for image height, width and contentlength. Can you tell me, what ist wrong with this programm?
Thank you very much and greeting aus germany!
rabbit

Similar Messages

  • Problem in Retrieve Image from DB and display in the JSP page

    Hi All,
    I did one JSP Program for retriveing image from DB and display in the JSP Page. But when i run this i m getting "String Value" output. Here i have given my Program and the output. Please any one help to this issue.
    Database Used : MS Access
    DSN Name : image
    Table Name: image
    Image Format: bmp
    Output : 1973956
    Sample Program:_
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ page import="java.io.*" %>
    <%
         try{
              Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              Connection conn = DriverManager.getConnection("jdbc:odbc:image");
              Statement st = conn.createStatement();
              ResultSet rs = st.executeQuery("SELECT images FROM image");
              String imgLen="";
              if(rs.next()){
                   imgLen = rs.getString(1);
                   out.println(imgLen.length());
              if(rs.next()){
                   int len = imgLen.length();
                   byte [] rb = new byte[len];
                   InputStream readImg = rs.getBinaryStream(1);
                   int index=readImg.read(rb, 0, len);
                   System.out.println("index"+index);
                   st.close();
                   response.reset();
                   response.setContentType("image/jpg");
                   response.getOutputStream().write(rb,0,len);
                   response.getOutputStream().flush();
         }catch(Exception ee){
              out.println(ee);
    %>
    Thanks,
    Senthilkumar S

    vishruta wrote:
    <%
    %>Using scriptlets is asking for trouble. Java code belongs in Java classes. Use a Servlet.
                   out.println(imgLen.length());Your JSP was supposed to write an image to the output and you wrote some irrelevant strings to the output before? This will corrupt the image. It's like opening the image in a text editor and adding some characters before to it.
                   byte [] rb = new byte[len];Memory hogging. Don't do that.
              out.println(ee);You should be throwing exceptions and at least printing its trace, not sending its toString() to the output.
    You may find this article useful to get an idea how this kind of stuff ought to work: [http://balusc.blogspot.com/2007/04/imageservlet.html].

  • Problem for viewing Image and "\n" on Alert

    Good day.
    I made a Midlet MIDP 1.0 CLDC 1.0 that have an Image on Alert class;
    this is my code:
    Alert al = new Alert("AppTitle");
    try {
    al.setImage(Image.createImage("/MyApp/myimg.jpg"));
    } catch (java.io.IOException e) {
    al.setTimeout(3000);
    al.setType(AlertType.INFO);
    display.setCurrent(al);
    On Nokia Phones (I've tried Series 40 e 60) the result is that I view on text area Information and near of it (but cutted) the image.
    Why?
    I have another question:
    If I use on Alert class
    al.setString("MyApp\nMyName");
    within or eithout image On Nokia phones the "\n" idn't considered.
    Both problems in others phones (I've tried Motorola and Sony-Ericsson) aren't.
    Why?
    Best regards and good work.
    Stefano Errani

    Hi MTSTUNER & J Maloney
    I really appreciate the interest you've both taken in the question.
    Yes, J Maloney you would be correct. I was wanting to see the whole of the image, the masked bits and the not masked bits... as well as the mask too all simultaneously.
    I'm currently kicking myself that I've not explored the Masks panel. Don't know when it was introduced, I have kind of skipped a version of PhotoShop or two on my own machine - lame excuse, I know gov. The density idea is far more elegant than my solution. However, I did find that by creating the duplicate I've been able to colourise it so as to make the results of what I was doing really obvious visually. I like the invert idea too, so simple - and it might prove the best of the options... but I'll try it on another image as I've pretty much done this one - lots of hats, not much hair.
    No offence on the "last paragraph". My reaction was "it's not unasked" though I wasn't clear: "How do sensible people approach this exercise?"
    Thank you too MSTUNER, I appreciate the time spent.
    "Quick Mask?" occurred randomly to me. Something I've never bothered with, tending to go straight to Layer Mask work. I'll own up that Quick Mask has never managed to make itself part of my workflow, I've no idea why because I'm sure it should if I gave it time. However, a quick experiment hasn't produced a Eureka moment. I was hoping I could easily subtract or add a Quick Mask from/to an existing Layer Mask... nope, doesn't seem to want to - though it was a 'quick' experiment.
    Thank you again for taking the time and enjoy the rest of your day. Regards.

  • Problem for displaying image in jsp

    I like to retrieve and display image from database in jsp file. Now, image has been retrieved and store in session. But it cannot be displayed in jsp. Who can help me? Thanks a lot!
    Codes like below:
    <%
    byte[] b = (byte[])session.getAttribute("sessionName");
    System.out.println(b.length); //the length can be printed at console successfully
    if(b != null) {
    response.setContentType("image/*");
    OutputStream toClient=response.getOutputStream();
    toClient.write(b);
    toClient.flush();
    toClient.close();
    %>

    JSP is designed to return text/html documents.
    As such it automatically calls getWriter() to return a character stream. (places it in the implicit variable "out"
    Seeing as you want to return bytes, instead of character data, the JSP technology is not applicable
    Calling getOutputStream after getWriter has been called results in an IllegalStateException
    So calling getOutputStream in a JSP will ALWAYS throw an exception.
    Cheers,
    evnafets

  • Problem rendering still images

    I have Core i7 with GTX690. Cuda works fine... everything works fine.  It renders videos very fine but when there comes a still image...Rendering stops Applications stops, my mouse pointer starts moving slow.
    Then i started opening those images in photoshop and saved them again as a new jpeg images. it solved the problem for some images... but not for all.
    Please somebody help.
    Hassan

    What are the dimensions of your sequence and the stills.
    Stills need to be RGB.

  • Using Java to Retrieve Images from Oracle

    OracleResultSet.getCustomDatum method is deprecated. I was using this method to retrieve an ORDImage from an Oracle 9i database. What are developers using instead of getCustomDatum to retrieve images from the database. Thanks for all help in this matter.

    Hi use getBinaryStream(java.lang.String) or getBinaryStream(int) of java.sql.ResultSet for retrieving images from database
    Hope it will be useful
    regards
    chandru

  • Workflow problems: Import selection, 9 keywords in list?, Exporting image attributes...

    I have a few problems incorporating Lightroom into my work flow.
    Is there a way to:
    Select recursive directories when importing photos from disk without
    a copy. Currently, I can only choose files directory(folder) by
    directory.
    Get more than 9 keywords in a shortcut list.
    Add photos from a previously accessed CF card to a catalog in a short
    time.
    Currently it takes about the same time as loading a card from scratch.
    Export image attributes to text file
    (filename followed by keywords, rating...)
    Basic principles of my work flow:
    1. Flash card is used until contents roughly matches the archive media
    size.
    This means a 1GB card fills to 700MB after deleting rejects, and
    a 4GB card will easily fit on a DVD.
    2. Photos on card are categorized and rated/rejected/deleted one or more
    more times while the card is being filled. This results in:
    -Copies of retained images to the categorized directory structure on the
    computer.
    -Rejects deleted from card, and not appearing on the computer
    -Category, and rating information for each image in an easily parsed
    list.
    3. Post processing is done and printing is done on highest rated images
    in each category.
    For example:
    Day 1: start with a blank 4GB CF card, and shoot 1.5GB for customers A and
    B.
    Customer A has 8 subjects a,b,c,d,e,f,g,h; Customer B has 12
    subjects
    a,g,i,j,k,l,m,n,o,p,q,r. Note that some names for customers A and B
    are the same. That night, I delete rejects off the card down to
    800MB,
    and copy the saved images to the directory structure corresponding
    to each customer on the computer. Then a list is printed out to show
    an image+rating list for each subject. Notes are made for each
    "weak"
    subject, so I know who to focus on in the next day of shooting.
    Note I may have needed to do some minor post processing to determine
    rejects and rating.
    Day 2: I shoot 9 subjects for customer A: a,b,c,d,e,f,g,h,s, and 12
    subjects for customer C: j,m,q,t,u,v,w,x,y,z,aa,bb. Similar culling,
    sorting, and copying is done to Day 1.
    Day N: CF card is full, so contents is written to a DVD, then card is
    erased.
    Day M: Sufficient counts of good images are obtained for Customer A, so
    Final post processing is done, and prints are made.
    My initial experimenting with Lightroom shows it has potential to streamline
    the above work flow, but a few key hurdles have kept me from implementing
    it. I have made some assumptions about the tool in the following description,
    so the best help for me would first to point out what assumptions are incorrect
    It looks like "import from device..." only allows a copy from the CF card.
    A copy would mean once images were rejected in the catalog, it would be
    out of sync. with the CF card. So "import photos from disk..." looks
    to be the only way to accomplish principle 1 above. *[minor problem a]* I saw
    no way to import the information from the CF cart recursively in this
    mode. I had to choose the files in groups one directory (folder) at
    a time. When I imported from device, I could grab the whole CF card,
    even though it did a copy. Note another reason I can't copy the CF card
    to the catalog is that the reject/delete operation would not free-up any
    CF card space for the next shoot.
    Rejecting, rating, and categorizing (with keywords) worked easily with
    Lightroom, but *[minor problem b]* it appears the keyword shortcut list is
    limited to 9 entries. Given customers can have more than 9 subjects,
    it would be useful if this could be expanded, even if I implement some sort
    of keyword hierarchy. I suspect the camera will complain about a bad file
    format if I change any of the files on the CF card, but it looks like
    the sidecar files on the computer disk allows me to "modify" images so
    I can get a correct rating without actu

    Do you mean by batches, or the occasional one-off look see? <br /><br />is this following useful? If so, I can tell you how to get it. <br /><br /><tiff:Orientation>1</tiff:Orientation><br />   <tiff:YCbCrPositioning>1</tiff:YCbCrPositioning><br />   <tiff:XResolution>1800000/10000</tiff:XResolution><br />   <tiff:YResolution>1800000/10000</tiff:YResolution><br />   <tiff:ResolutionUnit>2</tiff:ResolutionUnit><br />   <tiff:Make>Canon</tiff:Make><br />   <tiff:Model>Canon PowerShot S80</tiff:Model><br />   <tiff:ImageWidth>3264</tiff:ImageWidth><br />   <tiff:ImageLength>2448</tiff:ImageLength><br />  </rdf:Description><br />  <rdf:Description rdf:about=""<br />    xmlns:xap="http://ns.adobe.com/xap/1.0/"><br />   <xap:ModifyDate>2008-01-04T15:31:04-08:00</xap:ModifyDate><br />   <xap:CreateDate>2007-10-12T19:37:52-07:00</xap:CreateDate><br />   <xap:MetadataDate>2008-01-04T15:31:04-08:00</xap:MetadataDate><br />   <xap:CreatorTool>Adobe Photoshop CS3 Macintosh</xap:CreatorTool><br />  </rdf:Description><br />  <rdf:Description rdf:about=""<br />    xmlns:exif="http://ns.adobe.com/exif/1.0/"><br />   <exif:ExifVersion>0220</exif:ExifVersion><br />   <exif:FlashpixVersion>0100</exif:FlashpixVersion><br />   <exif:ColorSpace>1</exif:ColorSpace><br />   <exif:CompressedBitsPerPixel>5/1</exif:CompressedBitsPerPixel><br />   <exif:PixelXDimension>3264</exif:PixelXDimension><br />   <exif:PixelYDimension>2448</exif:PixelYDimension><br />   <exif:DateTimeOriginal>2007-10-12T19:37:52-07:00</exif:DateTimeOriginal><br />   <exif:DateTimeDigitized>2007-10-12T19:37:52-07:00</exif:DateTimeDigitized><br />   <exif:ExposureTime>1/400</exif:ExposureTime><br />   <exif:FNumber>8/1</exif:FNumber><br />   <exif:ShutterSpeedValue>8643856/1000000</exif:ShutterSpeedValue><br />   <exif:ApertureValue>6/1</exif:ApertureValue><br />   <exif:ExposureBiasValue>0/3</exif:ExposureBiasValue><br />   <exif:MaxApertureValue>116/32</exif:MaxApertureValue><br />   <exif:MeteringMode>5</exif:MeteringMode><br />   <exif:FocalLength>8564/1000</exif:FocalLength><br />   <exif:FocalPlaneXResolution>3264000/286</exif:FocalPlaneXResolution><br />   <exif:FocalPlaneYResolution>2448000/214</exif:FocalPlaneYResolution><br />   <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit><br />   <exif:SensingMethod>2</exif:SensingMethod><br />   <exif:FileSource>3</exif:FileSource><br />   <exif:CustomRendered>0</exif:CustomRendered><br />   <exif:ExposureMode>1</exif:ExposureMode><br />   <exif:WhiteBalance>1</exif:WhiteBalance><br />   <exif:DigitalZoomRatio>3264/3264</exif:DigitalZoomRatio><br />   <exif:SceneCaptureType>0</exif:SceneCaptureType><br />   <exif:Flash rdf:parseType="Resource"><br />    <exif:Fired>False</exif:Fired><br />    <exif:Return>0</exif:Return><br />    <exif:Mode>2</exif:Mode>

  • Mail for exchange image retrieving

    Hallo ,
    Can somebody help me with exchange sync. The problem is that i recieve many times forworded mails. They have many signatures from anyone who has written there. So when i open a mail it continues telling me 'retrieving .png 'for example , and refresh the mail form the begining. If i read it , it turnd me back form the begining. so first 15 sec i cannot read the mail when open it because it dont stop to refresh itself for every image. In fact i stop the option for recieving image in the mail. from sett/phone / mail/message display/ image download - it is off. I think this is useful only for .jpg. So is there an option to make mail application not to refresh the mail for every singular part of one mail. Or is there a different sollution.  Devide is n8
    10x in advance

    Yes I did check that. user name / password and server URL correct. Any other suggestions
    Abi99 wrote:
    MangeshA wrote:
    16/07/2013 22:17:57 Falling back to Basic Authentication because of error  403
    I am not a champion in reading these logs, however, I guess you face HTTP error 403, which means Forbidden, which means, you either have the wrong username/password or specified a wrong server URL. Did you double-check that, already?

  • Using the value "Image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of preconfigured file types (.jpe, .jpg, .jpeg, .?

    On a form, using the value "image/*" for the accept attribute of the HTML input Element, how can I add .pdf to the array of pre-configured file types (.jpe, .jpg, .jpeg, .gif, .png, .bmp, .ico, .svg, .svgz, .tif, .tiff, .ai, .drw, .pct, .psp, .xcf, .psd, .raw)?
    Say I wanted to add .gif, .jfif or .ico. I find this array limited, how can I add types to image?
    <input type="file" name="file" accept="image/*" id="file" />
    mimeTypes.rdf does not seem to allow this.

    ''mimeTypes.rdf'' has nothing to do with web development. It's a file that stores your file handling preferences (e.g. if you want ZIP files automatically saved or opened).
    You can't change the file types of the pre-defined content specifiers (audio/*, video/*, image/*), but you can specify additional MIME types. To add PDF to your above example,
    <pre><nowiki><input type="file" name="file" accept="image/*,application/pdf" id="file" /></nowiki></pre>
    For details, see
    * [https://developer.mozilla.org/En/HTML/Element/Input developer.mozilla.org/En/HTML/Element/Input]

  • Printing problem linked to EXIF time data for JPEG images.

    For some years I have been using Photoshop Elements 8.0 with no problems of any kind. My computer runs on XP Professional with a system comfortably in excess of the minimum requirements to run Elements 8.0. I load my images into Elements from a card reader which is the same one since I got this version of Elements. I shoot mostly in JPEG with a Nikon D300. I print to one of 2 Epson printers, an SX100 and a PX700W. I don't use the wireless feature of the PX700W, connecting it via USB.
    About a year ago I suddenly began to experience printing problems. If I tried to print an image Elements crashed just at the point where printing would begin. By trial & error I discovered that if I adjusted the time in the EXIF data of the image in Elements, whether by advancing or retarding it by hours or days and then adjusted it back to the original time I had no problems printing that image thereafter.
    I also discoveredc that where I had shot in RAW I could print direct from the RAW image in Elements or from the JPEG I saved from an edited in RAW and had no problems.
    I saw the forum discussions about the issues about the date/time in EXIF having been changed following the import into Elements. For those images I still had on my memory cards I checked the EXIF data in Elements and compared it what was on the image on the card. They were the same. I also checked the time zone and time settings of the camera and they were correct.
    I backed up my catalog, re-formatted the computer to bring it back to its ex-factoy status, re-installed Elements and restored my catalog. I imported new images, tried to print them and the problem was still there.
    Before I might upgrade to Photoshop Elements 10 I'm hoping someone else may tell me they have had the same problem and, hopefully, be able to tell me how they fixed it. I know the workaround will bypass the problem but it really annoys me that it suddenly appeared and I seem to be stuck with it. I'm also concerned that, given I totally re-formatted my computer but the problem  is still with me, that the problem may be imbedded in my catalog and simply gets backed up to,\and restored from,  my backup.
    I'd be grateful for any ideas.

    Hi Miceal,
    Though I'm not sure, but see if Catalog repair and optimize helps resolve the issue.
    For doing this, click File >> Catalog and selec your catalog and then click "repair' button.
    Tick the checkbox for rebuilding indices in the repair workflow.
    Now perform the optimize operation on the catalog similarly.
    Let me know if that helps.
    Thanks
    andaleeb

  • Retrieving images for a java game

    i am currently trying to make a game whereby i have to retrieve images from a file and display it to the screen. I am able to do this using applets but the game i am implementing does not use applets - it only makes use of awt and swing components. any advice given would be gretly appreciated as i have been trying to do this for days now!

    Ive read all the tutorials and it still wont work. Ive tried both the
    ImageIcon anIcon=new ImageIcon("image.jpg");
    and the
    Image image = Toolkit.getDefaultToolkit().getImage("blah.gif" );
    I was wondering could it be something to do with XP or the java compiler im using?im using Forte for Java v3.The code complies fine but when i run it nothing appears!

  • Retrieve all attributes for a specific objectClass using ldapsearch

    Hi everybody,
    Question : is it possible to retrieve all attributes for a specific objectClass (by example person) using ldapsearch tool ?
    I tried something like that, but it doesn't work :
    ldapsearch -v -h XXX -p XXX -b "cn=schema" -s base "objectclass=person" attributetypes
    Thanks a lot,
    Franck

    Ok, Thanks for you help,
    But my question is : For a specific objectClass, by example, I would like to have all attributes for the objectClass called "inetOrgPerson"
    something like that :
    ldapsearch -D "cn=Directory Manager" -w pwd -h host ...objectClass="inetOrgPerson"
    and the response could be :
    audio || businessCategory || departmentNumber || displayName || givenName || initials || jpegPhoto || labeledUri || manager || mobile || pager || photo || preferredLanguage || mail || o || roomNumber || secretary || userPKCS12
    I dont't know how to do ????
    Thanks
    Franck

  • How to retrieve the hyperlink source/destination for an image

    Hi
    I am using Indesign CS4 on windows. I am trying to make my way learning InDesign via the SDK documents. However I am not able to understand how I can do the following
    In InDesign I have placed an image and using the "interactive" menu added an hyperlink to the image. Now, in my code, given the itemRef for the image, how can i get the hyperlink associated with it?..
    I could probably go through the HyperlinkTable and loop through all the hyperlink lists to co-relate which image in my document has the hyperlink.
    However what I want to do is given the itemRef of my image, how do i get hyperlink associated with it
    thanks for your help
    --Sam

    Yes, I could of course filter the image myself (I'm using my own modifed version of the ACME GifEncoder to save the image, so that I could even do it during the encoding without ImageFilter). So my problem could be reduced to reduce an array of more than 255 colors to 255 colors by eliminating colors which are very near from each other.
    The point is that I don't have any algorithm to make an efficient color reduction with error diffusion like every graphic software would do. I would have imagined that such a standard algorithm would be somewhere in the JAVA API. If not, I'm gonna have to invent and implement my own algorithm...
    Yannick

  • Has anyone had a problem installing the AdobePatchInstaller.exe for Raw images?

    Has anyone had a problem installing the AdobePatchInstaller.exe for Raw images?

    ssprengel;
    The message displayed when attempting to install is "Adobe Application Manager may be damaged. Download and install a new copy of Adobe Application Manager.".
    Which is not the case.

  • Imported RAW images badly corrupted, looks like red paint splashed all over the sky.  Photoshop and Iphoto have no problem with the images from my D800E.  Aperture worked fine for me in June with the same camera.  The Nikon software shows no problem.

    I am having a problem importing my images into Aperture 3 from my Nikon D800E.  The images appear as if red paint was splashed across the sky.  The Nikon software used to transfer from the camera does not show this problem and Photoshop 6 is fine with the images exported as jpg from the Nikon software.  Aperature does not even like the jpg images usable by Photoshop.  I am suspecting that Aperture is not correctly using the camera raw file.  Also, the histograms are radically different between the corrupted images and the Photoshop (good) versions.  Aperture worked just fine for me in June with the same camera.  All drivers and software are current as of this posting.  Anyone else out there seen this before??

    Are you sure you do not have Highlight Hot & Cold Areas turned on? (View->Highlight Hot & Cold Areas)?
    The bug in Digital Camera raw only affected Raw images. In your first post you wrote:
    Aperature does not even like the jpg images usable by Photoshop
    If the JPG's have the same problem then it isn't this bug.
    regards

Maybe you are looking for

  • Rework

    Dear Experts, Scenario, 1.     For certain material there are 5 operation defined in routing. 2.     Order quantity is of 100 PC. Settlings are maintained such that 2nd operation cannot be confirmed unless 1st is confirmed. 3.     While confirming or

  • Pixelated video mirroring from Macbook Air (X10.8.5), but not from my iPod i0S7

    I don't understand it. when I mirror anything from the macbook, the output on the Apple TV is pixelated, as if very low resolution. E.g., streaming Amazon. I streamed the same content from my iPod and the output on the Apple TV was perfect. This is a

  • Error in shopping cart

    Hi all, While creating the shopping cart i'm getting this problem "select storage location that is assigned to the plnat" for some othey product category ( extended ) "Plant for follow-on document missing" Any suggestion from your side ,please Thanks

  • 2 XML data comparison

    Hi, I want to compare 2 xml data and identify the difference in the values enclosed inside the tags and log it across in a table.Please let me know how to compare 2 xml files in Oracle using pl/sql code. P.S: I am having Oracle 10.2 release Thanks, V

  • Install MSI payload failed with error: 1603

    I had problems on upgrades got message to run Acrobat clean tool I did it then I run new installation from Creative Cloud failed installation gave me the following error and to contact adobe support. What I have to do? Exit Code: 7 Please see specifi