Browser should show ALL images, in all formats.

I recently opened an image for editing from Lightroom to Photoshop, corrected some perspective distortion, and saved the result as a PNG.  Lightroom then failed to show the new image, even after I synchronized the folder.  A respondent in the Lightroom forum said that Lightroom doesn't support PNG, to which I ask, WTF?
Lightroom should support any format supported by Photoshop.  It displays JPEGs, which aren't a raw format.  Exactly how many products should we have to run concurrently to simply manage images?  Lightroom is supposed to be the product that does it, but if it fails to show all images in each directory, it fails at its purpose.

MikeLeone wrote: So you think LR should support BMP? PCX? How many cameras store their
photos in these formats? PS supports them, but why should LR?
I'll agree with support for PNG, at least as far as exporting, as some
web sites like using this format rather than JPEG (although the
reasons for using PNG aren't technical, but legal, AFAIK - licensing
for using the JPG format - rather than something technical, like
smaller file size, etc).
Very true, though I am more arguing that LR should be able to leverage formats available to other Adobe products installed on the same machine more than anything.
BMP and PCX, no most cameras don't use those formats *anymore*. But I remember having an old camera that took photos in BMP format (it may have been a webcam, but still a camera) which I have in my library from a long time ago. In my day job we still actually use applications that suprisingly enough can only display PCX images; though I never would intentionally keep anything in PCX.
I think anything it is able to import it should be able to export; but again if you have it natively supported in the Adobe product or universally supported by the OS without additional codec installation it should be supported, even if it is something obscure as PCX.
MikeLeone wrote:
That should be a feature request for the camera manufacturers, then,
shouldn't it? Ask them to share their non-published, proprietary
drivers with Adobe? Or at the very least, publish an API so LR (and
presumably, other programs) can call the code (presuming that the code
is modular enough to be called by other programs, of course).
Yeah, I understand that neither Canon nor Nikon are supporting DNG files straight out of the camera yet and both still maintain a propreitary formated RAW file, but I would suspect that generally a Canon .CR2 file doesn't change all that much if at all other than the camera identifier from a 20D to a 5D Mk II to the 7D for example.
Why do current Lightroom users need to wait until Adobe releases 2.6 or 3.0 to be able to use Lightroom with their 7D?
Why if Adobe releases a Camera RAW update for PS that includes the 7D does it still not work in LR?
Yes the mfg. need to be more open or pick a standard and run with it, but it just seems excessive for Adobe not to play nice too.
It is in Canon/Nikon/Adobe's best interest to play nice and share this information with Adobe. So I am betting they are not withholding it. I was getting Canon SDK notifications for the longest time and sometimes months before a Camera was available, and sometimes it was even annouced this information was made available to developers on new camera models. I am sure Nikon does the same thing and Adobe is getting this information from all mfg.
Christopher

Similar Messages

  • E mail attachments that are deleted show up in all images or all documents; how can I prevent this form happening?

    e mail attachments that are deleted seem to still show up in the all images or all documents files; how do I keep this from happening?  If an attachment is deleted I don't want to continue to keep a copy anywhere.  Thanks.

    I know this is almost a year later but I have been searching for a solution to the same problem you had. How did you fix this issue? I can see that something pops up on this site right before a transition. Why does that happen and not show in the preview and how do you fix it? Any help is appreciated!

  • I wanted to add photos to my facebook page as i could not see any photos posted. I erased all images on all websites!!

    I attempted to add the view photos option to facebook only and i managed to somehow erase all photo images on every website or page. NO photos anymore,anywhere!!!! Please help

    See this:
    https://support.mozilla.com/en-US/kb/Images+or+animations+do+not+show

  • All images on all websites are slightly blurry

    I tried searching for help, and the only thing I saw was to try resetting the zoom (command+0 on Mac) but that didn't change anything. Please advise.

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    This Cloud forum is not about help with program problems... a program would be Photoshop or Lighroom or Muse or ???

  • An orphan photo will not appear in "All Images"

    I have one picture in a project that does not show up when I go to "All Images" in the Library. I "imported" this picture from my desktop "Into the Aperture Library" but it did not show up in the Library.
    Why doesn't it appear in "All Images"? All other images appear there.
    Thank you for any help.

    I should have said Smart Album.
    If you control click on the library icon you will be able to select New > Smart Album. With that you can select all images (ie no filtering). That should show your missing image.
    Is the date correct on your missing image? If the date is wrong, it will not appear where you expect it to. See here for some information on smart albums:
    http://www.bagelturf.com/aparticles/library/smarta/

  • Trouble showing different images. Some of them appear, others don't

    I'm using socket connection to transmit images from a computer to another. Sometimes it shows the image, sometimes it doens't.
    Here is the code that i'm using:
    SERVER SIDE:
    Archivo = new File("C:/Documents and Settings/Pedro/Desktop/Prueba2.JPG");
    Entrada = new FileInputStream(Archivo);
    salida = cliente.getOutputStream();
    longitud = (int)Archivo.length(); //File length;
    int longitud2 = 0;
    // Here i pass the file length trough the socket
    // salida tells me if the file y larger than 127 bytes or not.
    // if the file is larger than 127 bytes then i divide / (1024*1024)+1
    if(longitud < 129024){
    longitud2 = (longitud/1024)+1;
    salida.write(1);
    else if(longitud > 129024){
    longitud2 = (longitud/(1024*1024))+1;
    salida.write(2);
    salida.write(longitud2);
    int c =0;
    //The array is longitud length of bytes.
    arreglo = new byte[longitud];
    while(((c = Entrada.read(arreglo)) != -1))
    salida.write(arreglo);
    socket.close();
    cliente.close();
    Entrada.close();
    salida.close();
    //THE CLIENT SIDE (A METHOD called byte[] getArreglo() OF A
    //CLASS CALLED CClienteSocket)
    //returns: an array of bytes that is going to be used to show the image.
    // Cual tells me if the length is larger or not than 127.
    int cual = entrada.read();
    int longitud = entrada.read();
    if(cual == 1){
    longitud = longitud * 1024;
    else if(cual == 2){
    longitud = longitud * 1024 * 1024;
    byte arreglo[] = new byte[longitud];
    try
    int c = 0;
    while((c = entrada.read(arreglo)) != -1)
    socket.close();
    entrada.close();
    salida.close();
    return arreglo;
    FROM ANOTHER CLASS I DO: (PRESSING A BUTTON)
    void Boton_Foto_actionPerformed(ActionEvent e)
    try
    ClaseArreglo = new CClienteSocket();
    byte[] arreglo = ClaseArreglo.getArreglo();
    Icon Foto = new ImageIcon(arreglo);
    Label_Foto.setIcon(Foto);
    catch(IOException ex1){
    System.out.println(ex1.getMessage());
    catch(Exception ex5){
    System.out.println(ex5.getMessage());
    I get no exception during this operation. I want to know why it sometimes shows the image with no problem a sometimes it shows the image in half, or it doesn't show the image at all!!
    What should i do to warranty that the image is going to be shown???

    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    See also:
    *http://kb.mozillazine.org/Profile_folder_-_Firefox

  • I Just converted my iPhoto library to Photos. Now I can't find my RAW files. I need to have all the images in my old library show up in their RAW format.

    I Just converted my iPhoto library to Photos. Now I can't find my RAW files. I need to have all the images in my old library show up in their RAW format.

    Unfortunately no - Photos use extensions and the vendor (adobe) will have to implement the extension to allow external edits in PS or PSE
    For now you must export the photo, edit and then import - not great but a work arond
    And you can continue to use iPhoto until Photos meets your needs - launch it in your applications folder - if you need assistance on this see Why won't my iPhotos open?
    LN

  • Ever since updating to ff3.6 my ebay pages load funny after I get thru the initial screen. the formatting is all screwed from the way it should be and all images have disapppeared. WAZUP????

    I get to the MY EBAY screen ok most of the time but if I want to go search for something or view one of the items I am bidding on the page display get all screwed up. It seems as if the page was disassembled in pieces and stretched out vertically. All images are gone and everything is out of place.

    Do you have a backup that you can restore from? Your old hard drive seems to be the problem.

  • All images show darker in PS since CS4

    After installeing CS4, all my images now look darker in PS. They all look at least 20% darker. I still have CS3 installed, and when I look into CS3, they images now also look darker. But when I flip back to Windows, all images look ok.
    I thought it might be Adobe gamma - which I had disabled previously because it conflicts with my color spider calibrator. Sinec installing CS4, I looked in the startup folder of windows, but Adobe Gamma is not there... So I wonder what could possibly be affecting the way the images are showing in PS.
    I tried a few different proofing methods in PS, but to no avail (only MAC proofing shows the image closer to what it should look like, but it's still not it).
    WinXP SP3
    Nvidia 8800 GTS
    All latest drivers
    4 GB ram (xp sees 3.25GB)
    Help?

    Check your color settings and your display profile.

  • Should I delete redundant images in the "All Images" folder?

    Not sure if this is the right place to post this but...
    The "All Images" folder contains so many redundant images, should I clean up those redundant files?
    If I do, will it delete them from the individual docs and other files where the images are associated?

    be careful deleting anything from there. this smart search shows among other things all the pics in your iphoto library including thumbnails and such. so what may seem like redundant things are actually not. and remember, this is not a real folder. this is a smart search. deleting anything from there will delete the originals.

  • Safari browser 5.0.6 not displaying all images on a specific site

    I have a MAC running on PowerPC G5, with an OS X Version 10.5.8. I am using Safari browser version 5.0.6. I have been using the browser for years with out any problem until last week. All images show up on all sites except on one specific site. When i use Firefox to open this specific site, all images show up normally without a problem.
    I have tried different methods suggested online including within this site, but the problem still persist. Can any one assist me on how i can resolve this problem and why images do not show up fully on the specific site when using Safari browser version 5.0.6?

    If possible, i can send you the link via email. Please send me your email address so i can send you the URL link.
    <Email Edited by Host>

  • Gallery showing all images

    I am having a problem where the Gallery application on my new N73 is showing _all_ the images on my phone, regardless of their name or format.
    For example I have 5 images belonging to an application installed on the memory card that are named either *.off or *.dat in the folder, but both Gallery and File Manger can open and view the files.
    Is there any way to tell Gallery to only look for images in certain folders, or hide folders from Gallery's eyes?
    I'm not so concerned about File Manager as its fairly nice to be able to see files if I go looking for them, but having the Gallery cluttered up is a pain.
    Dan

    Nope Sadly not - by default all images are shown in the gallery and there's no way of changing that... unless you install some 3rd party programs...
    I use one called Smart Guard Pro - google for it. There's a trial version, but could be a bit too much for what you need - it requires a password to access the hidden images.
    It also lets you hide Texts & contacts etc.
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Won't download all images from my sony camera...only 6 out 0f 170, says rest of them are "unreadable j.peg format". Help!

    Help!  My Mac will not download all images from my Sony digital camera...well, it downloaded 6 out of 170, then said "unreadable j.peg format". This is the second time I have had this problem with this camera. Up to this second time, I have not had a problem with downloading. Now when I plug the camera back in in, it shows empty frames of pix  on Mac screen, but pictures are still on the camera. Any suggestions?

    See if you can use Image Capture to upload your photos to a folder on the Desktop.  Once you have them off the memory card reformat the card using the camera, take some photos and try again.
    OT

  • TS1315 when trying to download photos  from my digital cameras I keep getting the message that pics can't be downloaded because of an unrecognizable format. It shows that they are all jpeg files. One camera is a Canon, the other a Panasonic.

    when trying to download photos  from my digital cameras I keep getting the message that pics can't be downloaded because of an "unrecognizable format". It shows that they are all jpeg files. One camera is a Canon, the other a Panasonic. I have had these cameras for a few years and have never had a problem downloading.

    I am having the same problem which has happened very infrequently before. Generally it's one photo and happened when my battery died.
    However today I tried to download six photos.
    None would download including several others for a total of 21 that would not download.
    Since I had just installed a new powered hub and added three new external 4T hard drives, I got concerned that it was the hub. Then got really worried that I'd have problems with the data I have been backing up.
    However following this sequence of events, I've determined it's not the hub, but still don't know what is causing the problem.
    (1) Put a fresh battery in the camera - same results
    (1.5) Used a different port in the new hub - same results
    (2) Put the card in the card slot in the back of my iMac - no problems except that one image I knew about last week. The six new images imported.
    (3) Tried again using the cable - still same error
    (4) Changed cables - my husband has the same camera - still same error
    (4) Put the card in his camera with his cable - still same error
    (5) Put the card in a card reader and used the same slot in the new hub - no problems - same one wouldn't import but message that there are no new photos to import.
    (6) Moved the offending one image to the Trash while the card was in the card reader
    (7) Put the card back into my camera and used my cable. iPhoto had no error and displayed the message there are no new photos.
    Conclusion:
    Not the camera
    Not the cable
    Not the hub
    Must remove bad photo from the card
    However, I have not had to do that before. I went through several imports on vacation when there was one bad image and just ignored it each time.
    Any idea why this is happening now?
    Thank you

  • On 1 pc that is partitioned, both identities are using FireFox as their browser, but one identity can see all images on webpages the other can't - how do I fix

    On a pc that is partitioned, both identities are using FireFox as browser. On one ID they can see all images on a website, such as CNN or NYT.com but on the other most of the images (within the story content and advertising images on borders of webpages) are missing. I'm not sure why this is happening, but I need help to fix it.

    If images are missing then check that you aren't blocking images from some domains.
    *Check the permissions for the domain in the current tab in "Tools > Page Info > Permissions"
    *Check that images are enabled: Tools > Options > Content: [X] Load images automatically
    *Check the exceptions in "Tools > Options > Content: Load Images > Exceptions"
    *Check the "Tools > Page Info > Media" tab for blocked images (scroll through all the images with the cursor Down key).
    If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    Make sure that you do not block third-party images, the permissions.default.image pref should be 1.
    If background images are missing then make sure that you haven't enabled a High Contrast theme in the Windows Accessibility settings and that you allow pages to choose their colors in Firefox.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    There are also extensions like Adblock Plus (Tools > Add-ons > Extensions) and security software (firewall, anti-virus) that can block images and other content.
    See also:
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Images_or_animations_do_not_load

Maybe you are looking for