Where is the image file size???

Where is the image file size in LR3? I can't see it anywhere neither in the Library module, nor in the Develop module.

As far as I know Lightroom does not display the file size. Keep in mind that LR never makes changes to the Original files that you import.
When you export a file with LR edits the file size generated will depend on the edits applied and the size and quality settings you choose in the export dialog.

Similar Messages

  • Url idle with ccm 5.1: where upload the image file?

    Hi,
    I'm trying to work the url idle feature in ccm 5.1.
    The phone gets the message error http (404).
    I have the default configuration on the enterprise parameters of the callmanager and I have upload the xml image file in the tftp directory and in a ccmcip directory, but it doesn't work.
    Where must I upload the image file or why it dosn't work?

    I am having the same problem...I don't suppose you would mind being a bit more specific!!!????

  • Accesing url idle ccm 5.1: where upload the image file?

    Hi,
    I'm trying to work the url idle feature in ccm 5.1.
    The phone gets the message error http (404).
    I have the default configuration on the enterprise parameters of the callmanager and I have upload the xml image file in the tftp directory and in a ccmcip directory, but it doesn't work.
    Where must I upload the image file or why it dosn't work?

    You can try this link for Idle URL timout
    http://cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00801c0764.shtml

  • Where are the image files located?

    hey guys, my book is 75 mb and I can only guess that it's because my images are Too big. I don't know how to get the file sizes down because I replaced them but they must still be retained in the image folder because when I look at the size its 75mb. Does anyone know where the images are located?

    Finding out where the images are held doesn't really help – here's why:
    iBA a files aren't really document files – they're more like zipped folders. iBA does a whole heap of background stuff to make the book work. When you drag an or import an image into iBA, it gets filed into a certain place within that folder structure, and presumably 'logs' that location in some xml-type wizardry somewhere else in that folder structure.
    Because of this, it's not a great idea to muck around with any of that stuff - it often makes things worse, not better.
    As for image size - as Vinny said - all you can do is make the images 2048 x 1536 if you want view them full screen. That looks best on a Retina display, as almost all iPads being sold now are.
    I don't know what your intentions are with the project, but in my experience, 75Mb pretty small. Is 75Mb the iBA file or an exported .ibooks file? Once a book gets exported to .ibooks format, the file size comes down. The iBA files I have worked on are much larger – the smallest being about 975Mb, going up to about 3.25Gb.

  • Why is Keynote storing images 20x larger than the original file size upon import?

    In Keynote, I'll add a 150KB PNG image to a slide and the 500KB presentation goes to 3.7MB... a more than 3MB increase. I'm trying to troubleshoot large file sizes as a simple deck takes up 50-100MB on disk. Anyone know what is going on to make the file 20x larger once added to Keynote? And how I can keep the file size down? The 'Reduce File Size' option is worthless in this case... offering a less than 10% reduction on the earlier 20x amplification. Thanks

    Chris H 71 wrote:
    This was originally in Keynote 09.
    Yes converting an existing version 5 file in to Keynote 6 does many strange things. Any existing version 5 files I have, I continue to edit in 5. When starting a new presentation, I can use 6 without many problems at all.
    I provided the files to replicate the issue to Apple support and never heard back.
    Apple do not provide feedback to users on issues, they only request information from users.

  • How to fetch the image file from oracle database and display it.

    hi... i've inserted the image file into the oracle database... now i want to retreive it and want to display it... can anybody help me... pls

    not a big deal dude... i fetched the image from database and saved it into my local hard disk.. but when tried to open it,ends up with no preview... dont know what d prob is... any idea... i've inserted the image as bytes n trying to fetch it as binary stream.. is that the problem... here im giving my insertion and retireving code.. jus go through it...
    Insertion code:_
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package PMS;
    import java.io.File;
    import java.io.FileInputStream;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    public class Browse_java
    static Connection con=null;
    public static void main(String args[])
    try{
    System.out.println("(browse.java) just entered in to the class");
    con = new PMS.DbConnection().getConnection();
    System.out.println("(browse.java) connection string is"+con);
    PreparedStatement ps = con.prepareStatement("INSERT INTO img_exp VALUES(?,?)");
    System.out.println("(browse.java) prepare statement object is"+ps);
    File file =new File("E:/vanabojanalu-/DSC02095.JPG");
    FileInputStream fs = new FileInputStream(file);
    System.out.println("lenth of file"+file.length());
    byte blob[]=new byte[(byte)file.length()];
    System.out.println("lenth of file"+blob.length);
    fs.read(blob);
    ps.setString(1,"E:/vanabojanalu-/DSC02095.JPG");
    ps.setBytes(2, blob);
    // ps.setBinaryStream(2, fs,(int)file.length());
    System.out.println("(browse.java)length of picture is"+fs.available());
    int i = ps.executeUpdate();
    System.out.println("image inserted successfully"+i);
    catch(Exception e)
    e.printStackTrace();
    finally
    try {
    con.close();
    } catch (SQLException ex) {
    ex.printStackTrace();
    and Retrieving code is:
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package PMS;
    import java.beans.Statement;
    import java.io.*;
    import java.net.*;
    import java.sql.*;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import oracle.jdbc.OracleResultSet;
    * @author Administrator
    public class view_image2 extends HttpServlet {
    * Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("image/jpeg");
    //PrintWriter out = response.getWriter();
    try
    javax.servlet.http.HttpServletResponse res=null;;
    int returnValue = 0;
    Connection con = null;
    PreparedStatement stmt = null;
    ResultSet rs = null;
    InputStream in = null;
    OutputStream os = null;
    Blob blob = null;
    //String text;
    //text=request.getParameter("text");
    //Class.forName("com.mysql.jdbc.Driver");
    con=new PMS.DbConnection().getConnection();
    System.out.println("jus entered the class");
    //String query = "SELECT B_IMAGE FROM img_exp where VC_IMG_PATH=?";
    //conn.setAutoCommit(false);
    PreparedStatement pst = con.prepareStatement("select b_image from img_exp where vc_img_path=?");
    System.out.println("before executing the query");
    pst.setString(1,"C:/Documents and Settings/Administrator/Desktop/Leader.jpg");
    rs = pst.executeQuery();
    //System.out.println("status of result set is"+rs.next());
    System.out.println("finished writing the query");
    int i=1;
    if(rs.next())
    System.out.println("in rs") ;
    byte[] byte_image=rs.getBytes(1);
    // byte blob_byte[]= new byte[(byte)blob.length()];
    //System.out.println("length of byte is"+blob_byte);
    //String len1 = (Oracle.sql.blob)rs.getString(1);
    //System.out.println("value of string is"+len1);
    //int len = len1.length();
    //byte [] b = new byte[len];
    //in = rs.getBinaryStream(1);
    int index = in.read(byte_image, 0, byte_image.length);
    System.out.println("value of in and index are"+in+" "+index);
    FileOutputStream outImej = new FileOutputStream("C://"+i+".JPG");
    //FileOutputStream fos = new FileOutputStream (imgFileName);
    BufferedOutputStream bos = new BufferedOutputStream (outImej);
    //byte [] byte_array = new byte [blob_byte.length]; //assuming 512k size; you can vary
    //this size depending upon avlBytes
    //int bytes_read = in.read(blob_byte);
    bos.write(index);
    /*while (index != -1)
    outImej.write(blob_byte, 0, index);
    index = in.read(blob_byte, 0, blob_byte.length);
    //System.out.println("==========================");
    //System.out.println(index);
    //System.out.println(outImej);
    //System.out.println("==========================");
    /*ServletOutputStream sout = response.getOutputStream(outImej);
              for(int n = 0; n < blob_byte.length; n++) {
                   sout.write(blob_byte[n]);
              sout.flush();
              sout.close();*/
    outImej.close();
    //i++;
    else
    returnValue = 1;
    catch(Exception e)
    System.out.println("SQLEXCEPTION : " +e);
    finally {
    //out.close();
    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    * Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    * Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    * Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    }

  • How to reduce image file size in spreadsheet

    I have created a spreadsheet that contains cells with small amounts of text, and images that I brought in from the Media Browser from iPhoto. This has caused the file size to become HUGE, on the order of 234 MB. Saving it as a pdf only reduces it to 220 MB.
    I have tried the Format>Image>Reduce Image File Size, as well as File>Reduce File Size, but in both cases, those options are grayed out.
    What am I doing wrong? All I really want is thumbnail versions of my image files.
    I don't understand what the Reduce Image File Size command would be used for, if it doesn't work for this?

    When you insert a picture in a cell, it's used as a background.
    To do that, the app keep it in a size allowing it to accomodate the larger cell size permitted.
    If you want to get small images matching the cell size which you use, you must reduce the picture by yourself before inserting it. For instance, cells are often 72 * 16 pixels ones so you may reduce your pictures so that thir width become 72 pixels.
    Of course, if the user enlarge the cell, the picture will become highly pixelated.
    Look at this example.
    In B4 is the original : 202 x 177 pixels
    In C3 is the reduced one : 72 x 63
    in B2 is the reduced one in a 202 x 177 pixels cell. It's awfully pixelized
    We must arbitrate between size and quality.
    Yvan KOENIG (VALLAURIS, France) samedi 10 septembre 2011 16:50:24
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Why is image file size getting inflated by Pages?

    I have a newsletter I am creating, and I have inserted 6 photos. They have been pre-downsized using Image Ready, so each image is around 30k. But after they have been inserted, the file size of the entire Pages document is huge. So I opened the Package for the document (Control click on the icon) and I see that now the images are each around 300k. The images have not been manipulated in Pages, no shadows or strokes. They have been resized just a teeny bit (made smaller in all cases).
    So what is going on to cause this huge inflation of file size. It is making my document too big to email (although it has helped to control the pdf export to "Good"... or even better to use the Color Sync file size reduction dialog, which is buried so deep in the Print dialog that I can't believe this is a common way to do it...)
    Anyway, all help would be appreciated. Thanks, Peter

    yes, you are right that the best results that I got were from the Print command and the color sync option to reduce file size. Without that, I took a Pages doc that was around 2.7megs and the pdf varied from 1.8-2.5 using the export command. With the color sync method I did get it down to a 450k pdf, which I am satisfied with.
    Still it baffles me that a 40k jpeg will inflate to 300k in Pages. I don't see multiple copies in the Package for the document, so I don't think it is multiplying. And I think that at least one of the images lives in the document without having been resized from within Pages, so that doesn't seem to be involved.
    I am using jpegs, adjusting them in Photoshop and then optimizing them with Image Ready, but they are JPEGs all thru the process, and they clearly are averaging around 35-40k after Image Ready does it's t hing. That is the whole purpose of Image Ready, it comes with Photoshop with that intention solely. I could try saving the image file in Preview or some other program and seeing if it inflates liek the Image REady jpegs do.
    Anyway, I am still curiouis about why this happens, but I can live with the rather bizarre method of using the Print>Color Sych method.
    Thanks to all of you for your help, really,
    Peter

  • Using Pages with iOS. How do I reduce image file size when I create a document with embedded images?

    Hi,
    I have created an annual family news letter in Pages on my iPad which incorporates pictures of events, holidays, occasions etc etc. I've then gone to covert it to pdf with the intention of sharing it via email but get a warning message about the resulting file size (in this case 16Mb).
    Is there any way of reducing the file size - which is obviously being driven by the images?  The pics are being pulled in from the iPad photo library.
    Thanks Mike

    (1) you are asking about Pages for iOS in a forum dedicated to Pages for OSX.
    Most of us aren't using Pages for iOS so it would be more efficient to ask in the forum dedicated to iWork for iOS (at this time this discussion area isn't divided in three areas).
    https://discussions.apple.com/community/app_store/iwork_for_ios
    (2) As you understood why your file is huge, the answer is simple : reduce the size of your picture files before inserting them in Pages documents.
    Drop the unneeded areas, reduce the resolution in tools dedicated to image processing before inserting them.
    Yvan KOENIG (VALLAURIS, France) mercredi 21 décembre 2011 18:32:19
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • What is the actual file size for the iphone 4s update - 55.5 mb's or 832 mb's

    Can someone tell me the actual file size of the new update for the iphone 4s On my iphone it is telling me it is 55.5 mbs but when I try to download the file thru i tunes it twlls me it is 830 odd mb's.
    Thanks, michael.

    I suspect if you update wirelessly you are just downloading a "delta" updater whereas downloading through iTunes you are downloading the entire replacement firmware. Wirelessly updating does not take nearly as long for the download nor does it require completely erasing then restoring the device.

  • What is the max file size that a Adapter Engine [J2SE] can handle ?

    We are having a scenario where a 4 GB compressed file needs to be sent across without mapping, I'm trying to explore the possible options to tackle this scenario.
    Some of the options, we are considering :
    - Sending a file from one Adapter Engine [J2SE] to another Adapter Engine [J2SE] bypassing PI. Adapter Logs will be monitored. What is the maximum file size that can be then handled assuming a standard installation ?
    - What is the max file size that Adapter Engine [J2SE] can send through PI without mapping?
    Any help with the above options or with any other possible solutions to handle extremely large file transfers will be much appreciated.

    Hi,
    j2se is not a good option here
    if you have 4gb then you need a copy solution
    a) build an proxy that will just copy the file from sender dest to receiver
    b) build an adapter that will do the same as proxy)
    this way processing of this message will be controlled with SAP PI/XI
    it will be as quick as copy & paste of the 4gb file
    I did the a) for one of the flow for 300 mb and it works perfectly
    Regards,
    Michal Krawczyk

  • How to keep a copy of the image file on memory card when using tethered shooting with a Nikon D800?

    I love tethered Shooting but as default (at least for Nikon) Lightroom does only save the file on the computer, not on the memory card.
    Now I want to have a backup of the image file on the memory card additionally to downloading it. The tethering software digiCamControl can do this with my camera, so it is technically possible.
    So how can I achieve this using Lightroom tethering?

    Thanks. FWIW I'm very keen on improving tethering and lobbied Adobe endlessly until they added the overlay for shooting into layouts because it was a major reason why some of my clients were unable to switch to Lightroom from PhaseOne. But we have to be realistic and remember that tethering just isn't a key market for Adobe as it is for PhaseOne, so progress is painfully slow. For example, where is live view or setting exposure which are in PhaseOne? I'd be amazed if we get those features for a few versions, and that's why I point serious tethered shooters to other solutions. And realistically, assuming your understanding of the SDK is correct you shouldn't expect a change until the next full version of Lightroom.  Good if it happens, but I wouldn't bet on it.

  • What is image dpi after "Reduce Image File Size"

    Does anyone know the resulting image dpi after using the "Reduce Image File Size" command in pages? My mother is trying to prepare some things for pre-press, and can't send her document to the printing press, because the pages docs are friggin huge! I'm trying to give her the easiest option for resizing all of the many images in the document, but don't know if this is a viable option if the end product needs to be printed. I need the output to be at least 300dpi.

    As fruhulda wrote, asking Pages to apply changes to the pictures isn't the good path.
    In fact, it's a perfect way to get a fat file.
    My practice is :
    Prepare the document in Pages to define the wanted size of every embedded pictures.
    Edit the picture files in a tool dedicated to this task so that the resulting files will be 300 dpis ones for the wanted sizes.
    Then, replace the original pictures by the definitive ones.
    In most cases, the file will be lighter than the original one and you will have the 300 dpis resolution (except if you apply shadows but it's an other story).
    Yvan KOENIG (VALLAURIS, France) lundi 20 décembre 2010 19:36:56

  • Maximum Image file size flash can handle?

    Does anyone knows the max image file size flash can load
    using MovieClipLoader?
    I tried 10.5 MB PNG file and Flash thinks it is loaded but,
    the actual image never shows up.
    Thanks,

    Well it is good for that client. But it still won't work in
    Flash. Sorry. You will need to slice the picture into different
    chunks at 2880 x 2880 max and reassemble the tiles in Flash.
    You may also run into an issue that things sometimes get lost
    if there is more that 16,000 (or thereabouts) pixels difference in
    their coordinates.

  • Jpeg Image file size for a Downloadable Product

    I'm creating a site in BC for the client to sell digital download copies of their original photographs. The purpose of the product for the consumer would be to use the low res download as a screen save or for viewing in a gallery on a desktop, tablet or smartphone device. BC accommodates such products but I haven't a clue as to what size to upload the image files in the BC Product Details page.
    Does anyone have any relevant information to share?

    If the client intends on selling digital copies of the images, then I would make sure to make the previews small.  Like 600 x 800 small.  If it gets too big people aren't going to be inclined to pay for bigger.
    I usually upload my photos in 1040 or 1280 on social media.  But 1280 looks pretty good on most laptops.  That'll change as screens get denser, but as of now I would think if I was trying to sell images and had previews at 1280 a lot of people would just take the 1280 and run.

Maybe you are looking for

  • Ipod cannot be updated all the way, WHY

    I have restored my ipod and gone throught beginning process with itunes and it updates for a while then it stops and says "Ipod Cannot be updated. The required folder cannot be found" Is it anti virus software? I am about to completely reinstall upda

  • Games not showing up in Game Center.

    When I look at 'Games' under Game Center, it shows 0 games. When you click on the 'Find Game Center Games' button it takes you to the 'Game Center' section of the App Store, where surprisingly enough there is a game in the Game Center' section of the

  • Bootcamp not releasing services

    My wife's Mini (early 2009, 2GB RAM, 120GB HDD) has developed a new problem: when she tries to switch from Windows XP Pro SP3 to Snow Leopard using the diamond shaped icon in the systray the desktop freezes (you can move the cursor but nothing else r

  • Tax Collected at Source on Scarp Sales

    Hi Gurus, Can anyone help me with configuration and steps for Tax Collected at Source on Scarp Sales Regards, Harmees

  • EJB Deployment error

    Hello, Am trying to deploy an EJB that passes the Sun App Server verifier. Fails with a report in the jar_verified.txt file of " Test Description : Unexpected error in verifier, check for problems related to: [ java.lang.NoClassDefFoundError: mil/osd