Preview of pages containing large images ( 600MB)

Hello,
I use the CS3-Server with the Java API, I have to export a pagepreview from a certain page of an indd-document as JPEG. The page that I have to export contains images each with a size greater than 600 MB. At the moment I call the doExport-method of the document-object. My JPEGExportPreferences are all set to lowresolution (72 dpi) and low JPEGQuality (kJPEGOptionsQualityLow).
But the JPEG-Export always lasts over 20 seconds which is too long.
The document must contain these images. This cannot be changed.
Now I search different way to get a pagepreview. When Indesign saves a document it saves previews as well, is it possible to use these previews? Or does anybody know a way to tell Indesign to use its internal preview instead of the large image to generate the pagepreview?
I already tried to unlink the image but the unlink-process lasts even longer than the preview generation process itself :-), even the relink to an non-existant image did not work.
I don´t know how to handle this...Does anybody run into this problem before and perhaps can help me, PLEASE?
Thank you!
Gregor

The short answer is not yet - although the expectation of 64-bit Aperture is that it HAS to be out SOON. I shoot a lot of film in medium and large format and the scans are 16bit 4000dpi some of my files exceed 2gigs and still use Aperture to organize them along with references to my negative files but Aperture will not deal with 1G files right now no matter how much memory you jamb in your machine it is pure 32bit and cannot manage multiple 32bit address spaces soooo....
4G address space - OS X and shared 32bit reserved address space - program/text space - the amount of memory Aperture uses for other things - etc = a lot less than 4G actually a lot less than 2G.
Hope that makes a long story short. Just thank heavens that OS X did not reserve 2G in address space like some older unicies.
RB

Similar Messages

  • How to fix the memory usage of Ely`s FlexBook is insanely increasing when turn page that contains large images?

    Hi,
         I am using flexbook for newspaper project. We have lots of huge size images in our app,all more than 1 MB. I use SuperImage as flexbook content,I also noticed that the application was using huge amounts of memory and crashed IE6, IE7,IE8 and Firefox. I found that flexbook updateDisplayList method call many times and each time flexbookpage call copyInto method when turg page,this cause memory growing. And memory not released when call commitProperties method.
    I would really appriciate any help because I have no clue how to fix it.(我的英语不好,但是我真的很着急。)
    See my partial code below how I am using the flexbook.
         //从后台Java代码得到报纸页面集合
         var list_pages: ArrayCollection = event.result as ArrayCollection;
         pageList = list_pages.toArray();
         //显示右侧报纸版面列表
         getPageListDisp();
         //画布擦除所有子元素
         can.removeAllChildren();
         //创建FlexBook
         var book:FlexBook =new FlexBook();
         book.height=0.9*h;
         book.width=0.8*w;
        //FlexBook需要配置的属性
         book.itemSize="halfPage";
         book.animateCurrentPageIndex=false;
         book.animatePagesOnTurn=false;
         book.setStyle("edgeAndCornerSize",120);//翻动的页脚大小
         book.setStyle("activeGrabArea",1);//把翻动的范围设置为页边
         book.scaleX=sldrb.value;//设置book的放大比例
         book.scaleY=sldrb.value;
        var con:Array = book.content;//为book添加报纸版面
        con.push(new Image());
         for(var i:int=0;i<pageList.length;i++){
         var img:Image=new Image();
         img.source=pageList[i].pageBigImgUrl;
         img.maintainAspectRatio=true;
         con.push(img);
        book.content = con;
         can.addChild(book);
    <mx:Panel id="test1" width="80%" height="100%" horizontalScrollPolicy="off" verticalScrollPolicy="off" paddingTop="15" paddingBottom="15">
        <mx:Canvas id="can" scaleX="{sldrb.value}" scaleY="{sldrb.value}" click="MouseEventFunc(event)" borderColor="#8EC7EF" backgroundColor="#FFFFFF" horizontalScrollPolicy="off" verticalScrollPolicy="off" alpha="1.0" buttonMode="true" mouseDown="MouseEventFunc(event)" mouseUp="MouseEventFunc(event)">
          </mx:Canvas>
       </mx:Panel>

    Or you could include a width to your body style:
    body {
    background-image: url(Logo/sky1.jpg);
    background-position: center center;
    background-attachment: fixed;
    width: 75%;}
    It might work or not depending on your other color scheme.

  • Can't load large image (png)

    I have a sandbox web page with large image (png file 26000x13000, 14MB packed/330MB unpacked). I can open it in IE but firefox display page without image. I have 1,2GB of free RAM, how can I adjust settings to make allow firefox display the image? Currently there is no difference if I use unpacked BMP, it doesn't work as well. I would prefer to stay with PNG since it's only 14MB on disk.

    Is there an error message?
    We've been able to load more than 100MB files.
    Try setting SQLNET.EXPIRE_TIMEOUT=0 in the sqlnet.ora file
    Fenella

  • Problem with scrolling a panel containing an image

    I am having a problem adding scrolling capabilities to a tabbed panel containing pages containing an image. In my program, I have a class called ImagePanel that extends JPanel and contains an image read from a file. In another class, I create a tabbed panel and add to it ImagePanels.
    The problem I'm facing is that the pages added to my tabbed panel contain scroll bars, but these scroll bars are not scrollable (i.e. I cannot use the bars the scroll and see the missing parts of the image).
    Any help on this manner is highly appreciated.
    The code is shown below:
    JTabbedPane m_pathwayTabbedPane = new JTabbedPane();
    ImageIcon overviewImageIcon = IconLoader.readImageIcon(pathway.gif);
    ImagePanel overviewPanel = new ImagePanel(overviewImageIcon.getImage());
    JScrollPane graphcrollPane = new JScrollPane(overviewPanel,
    ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,
    ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
    m_pathwayTabbedPane.addTab(StringManager.OVERVIEW, graphcrollPane);

    import java.awt.*;
    import java.io.*;
    import java.net.*;
    import javax.imageio.ImageIO;
    import javax.swing.*;
    public class ScrollingImages
        public static void main(String[] args)
            String[] fileNames = {
                "images/bclynx.jpg", "images/mtngoat.jpg", "images/redfox.jpg"
            JPanel panel = new JPanel(new GridBagLayout());
            panel.setBackground(Color.black);
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(5,5,5,5);
            gbc.gridwidth = gbc.REMAINDER;
            for(int j = 0; j < fileNames.length; j++)
                panel.add(new ImageComponent(fileNames[j]), gbc);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(panel));
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class ImageComponent extends JPanel
        Image image;
        public ImageComponent(String fileName)
            loadImage(fileName);
            setBackground(Color.black);
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            int w = getWidth();
            int h = getHeight();
            int imageWidth = image.getWidth(this);
            int imageHeight = image.getHeight(this);
            int x = (w - imageWidth)/2;
            int y = (h - imageHeight)/2;
            g.drawImage(image, x, y, this);
         * For the JScrollPane which will inquire about our size
         * which it needs to properly set its scrollbars.
        public Dimension getPreferredSize()
            return new Dimension(image.getWidth(this), image.getHeight(this));
        private void loadImage(String fileName)
            try
                URL url = getClass().getResource(fileName);
                image = ImageIO.read(url);
            catch(MalformedURLException mue)
                System.out.println(mue.getMessage());
            catch(IOException ioe)
                System.out.println(ioe.getMessage());
    }

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Open Dialog box: disable image preview (For large images, it's SLOOOWWWW)

    Open Dialog box in column view:
    Can I disable image preview?
    For large images, it's SLOOOWWWW !!!!!
    ( I often work with 8000 x 3500 panoramic images )

    William
    Mostly this is a problem in PhotoshopOK, my Photoshop is still a Classic version. I was looking at one or two others, like GraphicConverter, but the only pref there seems to be to generate a Preview if one doesn't exist.
    I'll look some more—it's irritating me now

  • Please help!! "Can't open the illustration. This artwork contains a very large image that can not...

    Hi all, I am subscribing Illustrator CS6 16.0.0 and using it on Windows 7.
    Few days ago I was working with one file, I saved it successfully and now when I'm trying to open it an error message occures "Can't open the illustration. This artwork contains a very large image that can not be read on this version of AI. Please try with 64-bit version." and ALMOST ALL of the objects (vector) are missing as if they were deleted!
    It's kind of strange since I created the file with the same program and everything was working properly before.
    Please Please advice further steps for recovering my file.

    Thank you so much! the file is recovered (as well as my emotional state )
    The finding of the day - apparently I have two versions of AI in my PC!

  • How to print large image across several pages?

    After using Appleworks for years I finally got Pages 09. In AW I used to be able to use drawing app to print large (36 x 36) images over several pieces of paper, simply by adding pages to the document. I would then tape the pages together to form the large poster. I can't see anyway to do this in Pages. It won't let you print any larger than 11x17, nor let you add pages to a layout to print a large image. Anybody know how to do this, or did I just waste my money?

    Welcome to Apple Discussions
    Yvan Koenig discovered with iWork '08 that you can span images across pages in a Numbers document as a substitute. Select & delete any tables & then treat the Numbers document as a draw document. You shouldn't need to add pages like in AppleWorks as Numbers adds them as needed to display all of the content.

  • Bug: All emails containing unique large images show up with the image of the first viewed email

    After deleting all messages in my inbox and rebooting my Blackberry,
    Various emails arrive in my inbox, each containing a large image.
    Whichever email I choose to open, it will show the image that it contains, but after that, every other email I view that contains a large image, displays the image of the first email, and not the actual image in the email that I'm trying to view.
    This happens constantly.

    I have the same problem. Running Windows 7. This started to happen with in the last two weeks. Even my older e-mails from a year go does the same thing. 
    Been on tech support twice and have friends of mine over to look it over. 
    Does not happen on G mail. Happens on my laptop and pc and HTC verizon phone.
    Yes, they see it the image as fine. No help from them, verizon. 
    My images will have an X or show up half grey or like there Fios TV some time all blocks.
    I been with them for a long time too. Since they were call Bell Atlantic. 
    I am at work and I use Clear.com wifi. 
    Feel very disappointed in Verizon. 
    TomLingJr

  • HELP! How do I link small thumbnail to larger image on same page?

    hello, everyone! I'm working in dreamweaver cs4 and am having no luck!
    see below - I'm trying to link the small thumbnails to the larger image on the left. in other words, when a thumbnail is chosen it's corresponding image would open on the left. I have tried mouse-over effects and image swap behaviors but still no luck. either the larger image replaces the thumbnail or a brand new window opens up with the larger image.
    I want all effects to stay on the same page. any help would be greatly appreciated!

    Hi There:
    Not sure how you have designed your page but here is a simple sample code on how you can do this with javascript and on mouseover event:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    div#left {
    display:none;
    </style>
    <script language="javascript" type="text/javascript">
    <!--
    function showImage(obj) { //v2.0
    //alert(obj);
    document.getElementById(obj).style.display='block';
    //  return eval(obj)
    function hideImage(obj) { //v2.0
    //alert(obj);
    document.getElementById(obj).style.display='none';
    //  return eval(obj)
    //-->
    </script>
    </head>
    <body>
    <div id="left" style="float:left;width:200px;"><img src="left.jpg" width="180" height="273" alt="large" /></div>
    <div id="right" style="float:right;width:200px;"><img src="thumbnail.jpg" alt="small" style="cursor:pointer;" width="57" height="228" onmouseover="showImage('left');" onmouseout="hideImage('left');"/></div>
    </body>
    </html>
    By default the bigger image is initally not there so I have added a display:none style in the head.
    The above code will show the bigger image on left when you do a mouseover on the smaller left thumbnail image. Vice-versa when you move out the mouse the image goes away (you may not need this part). So on each thumbnail image simlarly pass the id of the image you want to show via the javascript showImage function.
    Note: You can use onclick or other event per your preference.
    Regards,
    Vinay

  • Print a large image from browser on one page

    How can I print a large image that is generated by one of my servlets in a response page on one single paper page, (e.g A4 format). When I choose to use Print from Internet Explorer or Netscape the image is printed on 3 pages. Any stretch that I tried with Javascript does'n work. I dont want to use a plug-in. Can this be done with an applet or other way?
    Thanx for any answer
    Dan

    So you are asking "How can I take an image in my browser and shrink it to fit on a single page?" This has nothing to do with JSPs, of course, because once the image is in your browser the JSP or servlet is long gone. What I usually do is to save the image to a file, then I use the (Kodak) Imaging for Windows accessory to load that file and print using the "Fit to Page" option.

  • IE not loading all images in a page with large no: of images(~ 300+ images)

    I have a webpage which is trying to render more than 300 images, but IE is not rendering all the images. I have detailed the exact scenario below.
    I have a aspx page with a asp:Panel. I'm adding new aspx pages to this panel,
    Image image = new Image();
    StringBuilder url = new StringBuilder();
    url.Append(string.Format("ImageDisplay.aspx?Sample={0}", 1));
    image.ImageUrl = url.ToString();
    HtmlGenericControl div = new HtmlGenericControl("div");
    div.Controls.Add(image);
    this.pnlImages.Controls.Add(div);
    the second aspx page writes the image to the response,
    Response.Clear();
    Response.BufferOutput = true;
    string fileName = "..\\Sample.jpeg";
    Bitmap image = new Bitmap(fileName);
    image.Save(Response.OutputStream, ImageFormat.Jpeg);
    image.Dispose();
    Response.Flush();
    likewise I'm adding more than 300 images.
    IE is not rendering all the images properly, most of the images are getting broken and shows as 'X' sign. While the same page loads perfectly fine in Firefox and Chrome. I'm not able to find the cause of the issue since it only happens in IE. Could someone
    please help me with this.

    Hi,
    Please post to an asp.net forum....if possible include a link to your website with your question.
    this forum is for questions about IEAK and GPO for system administrators of domain networks....
    tip... use response.end I/o response flush....
    view... the page-source from IE (View-source) or use the Find tool on the IE Developer tool to inspect the scr value of img tags and the base href value (if used)...
    the optimal load time for web pages is considered to be 3 seconds...
    consider reducing the number and size of images, and external stylesheets and libraries on your web pages. (www.webpagetests.org)
    Rob^_^

  • Thumbnail to larger Image preview

    Hello,
    I am trying to create a photo gallery/portfolio. I would like
    to have thumbnails and when clicked a larger version of that images
    shows. After that I would like to rollover the larger image to show
    the before.
    Any ideas on how to scrip this?

    ugh! the question is a bit generic... where to begin? :)
    there are plenty of approaches to build a thumbnail based photo
    gallery in flash. however, try to find some tutorials about this
    because it would be really hard (and long) to explain it from zero
    step by step in this forum. so, follow some tutorial and if you
    have specific questions you are always welcome! ;)
    adam

  • Tiling or slicing large images in tables? Completely outdated?

    I'm working through the XHTML tutorials on Lynda.com
    The instructor does a demo of slicing a large image with sections that have animated .gifs. He slices the static portions and slices the animated portions and then combines them in a 3 slice x 3 slice table.
    He says "I still prefer to do this with tables, since it's what it was designed for."
    I know tables are outdated, but I'm not sure if it's in all respects. Like if I was going to do a data table, I certainly would use tables...
    Im not sure when this video was made, but is it still in practice and a good practice?
    He then shows a similar demo of how to combine slices using CSS. Is this outdated too? Are people still slicing large images?

    Unlike print design where everything is static and unchanging, web pages need to be flexible and web accessible to accommodate all users, displays and devices.
    Image slices have their plusses and minuses.  Occasionally, you may need them to create a flexible container that resizes to content.
         3 image slices in a CSS layout ~
         http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
    That said, you can add visual interest to web pages without a lot of images using CSS.
         2-image web page design ~
         http://alt-web.com/TEMPLATES/2-image-web-design.shtml
    Finally, have a look at CSS Zen Garden where the power of CSS is demonstrated.
    Each page contains identical HTML markup but with wildly different styles.
    Hopefully this will inspire you to move away from tables and use CSS for primary layouts.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Is it possible to downsize a large image on the server side (before serving it to the user)?

    One of the banes of my existence is resizing the same image several times because of the various contexts it appears in. For example, the main image in an article will appear bigger than it will on the index page, where many article teasers are placed. Then there's the image that goes in the Facebook "share" og. Then there's... you get the idea.
    Same image, different contexts, lots of Photoshop resizing, lots of files to keep track of... but I save on bandwidth.
    On the flip side, I can target the same (large) image and simply downsize via traditional HTML (width/height) on the browser end, but that will mean downloading a file that is 50-75% larger than what is actually needed. If the front page teaser displays a 1280px image at 500px, that's a huge (and potentially costly) waste of bandwidth.
    HOWEVER...
    If I could do the same thing on the SERVER side... in other words, tell the server to take only the pixels it needs from the (large) image and serve only THOSE to the end user... then the same image could be used in each and every context, and only the necessary bandwidth is used.
    Is this do-able? If so, what is the process formally called, and where would I begin to learn how to do it?
    Thanks!

    That's amazing. I didn't think it was possible without saving files on the server first.
    This will suit my needs just fine, but allow me to push my luck even further with the following "hail mary" question : would it be possible for the server to serve the PNG with a width of 100% of the container? In other words, the behavior would mimic width=100% but the server would still only serve as many bytes as are needed to fill that space.
    Not only would I not have to create separate files for every resize (we fixed that problem with your suggestion) but I wouldn't even have to customize every link to a specific size.
    I'm not expecting an affirmative on this one, but it was worth asking. =)

Maybe you are looking for

  • Write text to picture and save it

    Hi! What I want to do is to write a text (e.g. a date) to a picture. It should be displayed in picture control and saved to jpeg-file. Aquiring the image and saving it works well. But how do I write text to it??? I do not have the Vision-toolkit. Is

  • Desktop Manager Problem

    Hello everyone, im using a JDesktopPane to manage around 18 InternalFrames. Because of that amount i need a way to acces everyone of them in a click. I created a menu to acces everyone of them. I started everyone as iconified. BUT When i restore with

  • Upgrading iMac 2007 (7,1)  Memory

    I seem to find my trusty iMac a bit sluggish and want to upgrade the RAM (that and i was given a copy of Windows 7 as a gift) so 1 gig isnt enough to run two modern OS's. I've been doing a lot of research (making sure i know what i'm doing and making

  • I just starting getting 2 windows opened every time I click on a link from email one is the link and the other is home page is there a way to correct this

    when I receive a email and I click on a link to open it in my I receive one window with the Google start page and another goes to the link that I clicked on. Is there a way to fix this so it only goes to the link that I click on instead of opening 2

  • How does it work : String MethdName (argument) throws Exception {}

    HI, I am very new to Java. I was looking through some code written by some other developer. the code looks like String MethdName (argument) throws Exception { // some code here What it exactly means? Are we forcing this method to always throw an exce