Slow image load time in web browsers. My images load too slowly.

Hi, My images are loading slowly in my site. They are png and all under 600kb. Should they be jpegs (they are photos) Can anyone advise?

I would do a few tests, I think you might be fine with the High setting, but also try a little lower if you can to conserve load time. It would be good to get your files to around 120kb each.
A .jpeg file is the way to go, as .png files tend to be 20-40% larger.
Here is an image that is set to 730x486- saved as Medium - Quality 50 - jpeg - final size 99 kb

Similar Messages

  • Web Browsers hang when loading pages

    Hi!
    On my early 2011 Macbook Pro webpages take forever to load, and somthimes dont load at all. This happens with all browsers, in safari the blue progress bar stops at the first interval and sits there for a LONG time until it goes on, in Chrome it is hung on " Sending Request " . This does not happen on all webpages, it is random.
    If anyone could help that would be great!

    Ive fixed the problem. Just go into Chrome preferences > Under the hood and uncheck " Predict network actions to improve page load performance" this fixes the problem. Thanks for your help and I hope that this can help other people with this problem.

  • Speeding load time of WEB Forms50

    I have created a new Java archive as a subset of class files
    provided in the Oracle archive 'f50web.jar' in an attempt to
    speed up the launch time of an application.
    The new Java archive contains just 160 (the only class files my
    Forms need) of the 600 class files originally in the archive and
    does indeed speed up launch time substantially - down from an
    average of 45 seconds to 25 on a Pentium 160 and from 20 seconds
    to under 5 on our dual-processor NT server.
    However, the displayed Forms now all carry a yellow banner
    across the bottom labelled 'warning - applet running' (to that
    effect). How do I get rid of the banner?
    P.S. Hints for reducing the archive size:
    Full instructions are in the Oracle document 'Tuning
    Developer/2000 Application performance on the WEB'. Note that
    the file names in the archive are case sensitive. When you have
    extracted the list of class files to include then the Unix
    command 'cpio' makes an execellent tool to copy a directory
    structure and a subset of the files it contains. 'pkzip' would
    do the job just as well.
    null

    Well I just timed it:
    56 seconds from hitting the reply button until an edit postion..
    I append I screenshot I made after 10 seconds:
    see attachment
    This stays the same while the status bar of Firefox 2.0 says: Connecting with forums.ni.com and waitn for forums.ni.com
    Ton
    Message Edited by TonP on 01-27-2007 08:49 PM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!
    Attachments:
    LoadTime.PNG ‏45 KB

  • Pages that load in all other browsers do not load in Safari

    Our Web application uses HTTPS and a Thawte-issued 256-bit AES SSL certificate. In IE, Firefox, and Chrome, the pages of our Web application load absolutely fine. In Safari 4.0.5, the pages do not load in the browser. When looking at the source for the page, there absolutely is content there, but appears to be cut off after a certain number of lines. I've tried a couple of pages, and there doesn't seem to be anything incorrect about the HTML at the line directly after the last one that Safari was able to pull back.
    I read in some forums that this may have to do with content chunking and/or variable content lengths. I read in others that it may have to do with serving images from non-HTTPS servers while using an HTTPS connection. I think the former sounds more likely.
    Has anyone encountered this issue before? This is not the known "page doesn't load in Safari, but then does when I access it in another browser" issue. It doesn't matter how many times I successfully access the pages in other browsers. They are never rendered in Safari.
    Does anyone know how to control the behavior of Safari (or even of Apache HTTP Server 2.0) when it comes to responses of variable content lengths and/or response chunking? Or am I completely off the mark?
    Thanks,
    Mike

    It turns out that Apache's mod_jk.log, which is used to store the output of communications between Apache and Tomcat, had become full. Once it reaches 2 GB, Apache can't write to it anymore. Once we stopped Apache, stopped Tomcat, rotated out that mod_jk.log, and restarted both Apache and Tomcat, our Web application started working again in both Safari and much more reliably in Chrome.

  • HFM - log that shows if a user has loaded data via web form or excel load.

    I can see any data loads that are coming from FDM, but is there a log that shows any data entered into HFM via web forms or submitted through an excel file? Any input is appreciated.
    Thanks

    You could enable Data Audit to capture data changes made by users, though this will not capture which method users chose to change the data. That is, HFM can show that data changed, and who changed it, but cannot tell whether the data was changed through a form, grid, smart view, or FDM. If you want to prevent users from changing data through forms, grids, or smart view, you can secure those input methods, but you cannot capture which one is used.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to load time only no date using sql loader

    I want to load just time portion from the data, the data looks like this
    08/10/09 ,FZ10, AD2R, DFHMIRS , 14, 01:12:07.001230, 01:02:07.112354, TRANS PURGED / TIMED OUT ,
    control file:
    LOAD DATA
    APPEND
    INTO TABLE TRANS_ABENDS
    FIELDS TERMINATED ',' TRAILING NULLCOLS
         TRANS_DATE           DATE "MM/DD/YYYY",
         TRANS_ID          ,
         ABEND_CODE          ,
         ABEND_PGM           ,
         ABEND_COUNT           ,
         RESPONSE_TIME      "to_date(:RESPONSE_TIME,'dd/mm/yy HH:MI:SS.ffffff')",
         CPU_TIME          "to_date(:RESPONSE_TIME,'dd/mm/yy HH:MI:SS.ffffff')",
         ABEND_RESOLUTION     ,
         INSTANCE          CONSTANT 'EAST'
    I can load the time using the control file but it adds the first of the month as date in the column. I want to load only time value. Appreciate any help on this.

    I meant, how are these columns defined in the table that is being loaded?
    If these are defined as DATE, then as was pointed out Oracle will default the date portions if they are not provided in the formatted string.
    If these are defined as NUMBER (with some fractional portion), then you could use a combination of substr, multiplication and concatenation to derive the time as number in the form <seconds>.<fractional seconds>.
    You could also look into the data type INTERVAL DAY TO SECOND.
    SQL> create table trans_abends (
      2   trans_date date,
      3   trans_id char(4),
      4   abend_code char(4),
      5   abend_pgm char(8),
      6   abend_count number(4),
      7   response_time interval day (0) to second (6),
      8   cpu_time interval day (0) to second (6)
      9  )
    10  /
    Table created.
    SQL> insert into trans_abends values (sysdate, 'xxxx', 'xxxx', 'xxxxxxxx', 1, to_dsinterval('+0 01:12:07.001230'), to_dsinterval('+0 01:02:07.112354') )
      2  /
    1 row created.
    SQL> select response_time, cpu_time from trans_abends;
    RESPONSE_TIME
    CPU_TIME
    +0 01:12:07.001230
    +0 01:02:07.112354For the sql loader control file, try
    "to_dsinterval('+0 '||:RESPONSE_TIME)"
    not tested.
    Edited by: user142857 on Nov 18, 2009 12:20 PM
    Edited by: user142857 on Nov 18, 2009 12:27 PM

  • OSX web browsers - image issues on one Mac, not on others

    I know this will seem very vague and could have any of a number of causes, but I am just totally stumped on this. On my MBP (details below), some images and pages in web browsers simply will not load. No "broken image" icon, just nothing there - a blank. This is not a Safari issue, as any browser I try on the machine (Firefox, Chrome) gives the same result. This problem has been going on for some time; I believe it predates Snow Leopard, though both systems are up-to-date as of now.
    On my iMac (OS 10.6.6 as well), the same images and pages load fine!
    For example, I use WordPress for my blog. If I write a post in the web version on my MBP, the icons for adding media simply do not show up (There's simply text saying Upload/Insert, then an empty gap. There are supposed to be icons for pictures, video, audio, etc). Interestingly, though there are no icons there, apparently the LINKS are still there, just invisible. Because rolling over the gap, I can see the various links in the status bar. So if I click in the right spot of the empty gap, I get taken to a page where I should be able to upload a picture. But then we hit the next iteration of the problem: the linked-to page doesn't load, either. Just a blank page. This happens in any browser I try on the MBP.
    On my iMac, everything shows up and looks fine in all browsers.
    So there's obviously some global software difference between the MBP and the iMac; for whatever reason, some rendering(?) technology is being "blocked" on the MBP. But I see no configuration differences of note between the systems in System Preferences or app support etc.
    Any ideas? I know this comes across as incredibly vague.

    After verifying that all of your browsers are up to date, clear or delete your history and caches through your browsers Preferences.
    Disconnect all peripherals from your computer. Boot from your install disc & run _*Repair Disk*_ from the utility menu. To use the Install Mac OS X disc, insert the disc, and restart your computer while holding down the C key as it starts up.
    Select your language.
    Once on the desktop, select Utility in the menu bar.
    Select *Disk Utility.*
    Select the disk or volume in the list of disks and volumes, and then click *First Aid.*
    Click _*Repair Disk.*_
    Restart your computer when done.
    Repair permissions after you reach the desktop-http://docs.info.apple.com/article.html?artnum=25751 and restart your computer when done.

  • Same image, loaded multiple times: speeding up load time?

    I wrote this message before thinking about embedding the
    image... I was thinking that putting a relative path automatically
    embedded the image, but in retrospect I was wrong, and that will
    probably solve my problem. I'll just leave the question here anyway
    though:
    I'm using image components in my application loaded from a
    relative path. The problem is, I have many copies (30+) of the same
    image, essentially 30+ identical image components which need to be
    loaded/unloaded at different intervals, and they are not loading
    fast enough for me. Would it be more effective to duplicate an
    existing "master" Image to improve load time instead of explicitly
    setting "image.source=" each time? Is there any better solution for
    improving image load speed?
    Best of all would be some way to pre-cache or buffer images,
    so that I can be guaranteed that they will load as quickly as
    possible when I bind them to an Image component.
    Cheers!

    JPGS are much better for photos.  PNGs are good when you need transparency.
    Instead of Image Swapping, why don't you use a photo gallery?
    FancyBox is nice..  It supports real text captions/descriptions, too.
    http://fancybox.net/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Loading times web view / html5 animations / edge hype

    Hi,
    I have been working with iPad publishing software quite a while now and have experienced Woodwing as well as DPS. I have come across an issue  with DPS which I can't find a solution for. When creating web view content, I mean either normal websites or Html5 animations the loading times with DPS are to long and there is the issue of the spinning loading.gif.
    Is there some way to speed up the loading time for everything which is loaded within the web view window? How would I for example speed up the time to load animations from Edge or from Hype?
    From my point of view this is a crucial thing to be solved.
    Also I know from working with Woodwing that they solved that issue and things regarding the loading time of web content/animations are running a lot smoother. ( and no I can't  just use Woodwing I need to solve this with DPS )
    Solutions welcome and info on when stuff like this will be solved as well.
    Thank you,
    Alex

    Neil, can you even say how long it takes? ... We are currently working on a magazine app for an international car manufacturers and hope that we can publish it without loading time.
    Thanks for your support!
    Mike

  • Reducing Load Times / Design Architecture

    I'm designing a flash site with a Dynamic Gallery (loading images from a XML file). what can I do to reduce load time at the beginning, or limit loading times to individual images?
    I've seen designs which loads another SWF file on top of the current one. Is this feasible?
    Any details would be greatly appreciated.

    If loading the images is the goal of the file, then the quickest way to do that is to concentrate on the images.  Any way you load them, they have to be loaded.  Be sure they are optimized for the web.  If the gallery intent would allow for it, have the images loaded on request, using thumbnails or other button-like interfaces.  Or maybe load different sections at a time.  Or load so many at first, then load the rest in the background so that there's something to look at while the rest load.
    I don't know what purpose you have in mind for loading another swf into the file, so I can't offer any ideas there.

  • Load time problems

    http://www.bootleg94.com
    anyone have any ideas on how to cut the load time down on the
    scrolling image gallery. it takes forever so if anyone has a better
    way of doing this and would like to share, please feel free.
    =)

    Please back up your data ASAP! Your drive is dying and you should make a clone of your system (I use SuperDuper!) before it gives up the ghost entirely. Use a firewire external to clone to, then, when you get a new drive, you can simply reverse clone the data onto it and you'll be up and running.

  • Applying easing while changing image using timer

    Hi
      In my app i am changing images using timer..i have 7 images when the image starts changing it flicker and background comes then the new image that is what my problem is
    here is my code..
                   import flash.utils.Timer;
                        import flash.events.TimerEvent;
                        import flash.display.Sprite;
                      var myTimer:Timer = new Timer(95, 7);
                    private var k:int;
                     public var imgary:Array=new Array();
    function init()
         for(var i:int=0;i<=6;i++)
                         imgary[i]=new Array();
                         imgary[i][0]="Assets/open_drawer"+i+".png";
                         if(i==1||i==2)
                             imgary[i][1]=81;
                         else if(i==0)
                             imgary[i][1]=77;
                         else if(i==3)
                                 imgary[i][1]=83;
                                 k=83;
                         else if(i==4)
                                 k=k+2;
                                 imgary[i][1]=k;
                         else
                                 k=k+3;
                             imgary[i][1]=k;
         myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
                myTimer.start();
    public function timerHandler(e:TimerEvent):void {
                   tests.source=imgary[e.target.currentCount-1][0];
                            tests.width=383;
                            tests.height=imgary[e.target.currentCount-1][1];
                            tests.x=0;
                            //invalidateDisplayList();
        ]]>
    </mx:Script>
    <mx:Panel  verticalAlign="top" horizontalScrollPolicy="off" backgroundColor="#616060"  id="pnlMaster" width="400" height="560" horizontalCenter="-184" verticalCenter="13">
    <mx:Image id="tests" source="@Embed(source='Assets/drawer_img.png')" width="383"  x="0"  height="75"/>
    </mx:Panel>
    </mx:WindowedApplication>

    is there any way by which i can handle this..can i provide smoothness or easing kind of thing so that it appears to the user that it is a only one image..

  • Safari (and other browsers) very slow loading "content rich" web pages

    Hi,
    I'm a very "light" user of my mac, using it basically for surfing the web, uploading pictures and music, etc... and recently any web page that has a lot of content (examples are nfl.com, nba.com, nhl.com, mlb.com, united.com, continental.com) takes a very long time to load (most other web pages load normally). Safari (and Firefox as well) gets to the web page in an instant, but then sits there trying to load content (mostly high res pictures and ads I suppose), which sometimes takes minutes or just never fully downloads the content. I'm connected to the internet via ethernet (high speed cable modem from Time Warner), and they've already come out and verified that everything on their end is fine. I've followed the instructions posted on some of the other similar posts (emptying cache, deleting cookies, disenabling add on's, reseting safari, logging in as another user, etc..), and this has not helped. Since this problem is persistent with both browsers, I'm wondering if this may be an OS issue as opposed to a browser issue. If someone can walk me through a solution (keep in mind that I'm a novice), that would be much appreciated.
    Thanks!
    Message was edited by: Mr. Cady

    HI and welcome....
    Since this problem is persistent with both browsers, I'm wondering if this may be an OS issue as opposed to a browser issue
    Could be.
    Since the problems exist with multiple browsers, login to another user account on your Mac. Try Safari there. If you see the same behavior with Safari there, then follow the instructions here. You will need your install disc. The startup disk may need repairing. Even if Safari is ok in another account, it's still a good idea to check the startup disk. That way you can rule that out.
    Insert your install disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu and launch Disk Utility.
    (In Mac OS X 10.4 or later, you must select your language first from the installer menu)
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your startup disk and click Restart
    While you have the Disk Utility window open, look at the bottom of the window. Where you see Capacity and Available. Make sure there is always 15% free space.
    Carolyn

  • Worst webbrowser in the history of web browsers. I cannot get FF to load any images. I have tried everything. Help or no longer using this browser.

    FF just opens a black text type of webpage. Just Fing horrible. Everyone says to use you, but it's just a nightmare. Shitty. Sorry, all I seem to do Is F with browsers and anything related to FF. I stopped using FF 8 years ago and it seems as I was correct! JUNK! Can someone help me regarding just to get images from the GD internet to load? Simple, shouldn't have to go through a 45 step process to get this to work. Help or not. Not impressed at all.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check more:
    *http://kb.mozillazine.org/Images_or_animations_do_not_load
    *https://support.mozilla.org/kb/Images+or+animations+do+not+show
    If images are missing then check that you do not block images from some domains.
    *Tap the Alt key or press F10 to show the Menu Bar
    Check the permissions for the domain in the currently selected tab in "Tools > Page Info > Permissions"
    Check "Tools > Page Info > Media" for blocked images
    *Select the first image link and use the cursor Down key to scroll through the list.
    *If an image in the list is grayed and "<i>Block Images from...</i>" has a checkmark then remove this checkmark to unblock images from this domain.
    Make sure that you do not block (third-party) images, the <b>permissions.default.image</b> pref on the <b>about:config</b> page should be 1.
    See also:
    *http://kb.mozillazine.org/Websites_look_wrong

  • Can this html code be changed to speed up the image load time?

    I found some html that creates a auto running slide show. I've got three images (small image sizes) but it is slow to start up when the page is first opened. http://web.me.com/phelpssculpture/Site/test.html this is the escaped code:
    <center><img id='imageholder' src='' ></img></center>
    <script type='text/javascript'>
    images = new Array();
    images.push('http://web.me.com/phelpssculpture/Docs/typewriterprpage.jpg');
    images.push('http://web.me.com/phelpssculpture/Docs/royalprpage.jpg');
    images.push('http://web.me.com/phelpssculpture/Docs/Lovetest.jpg');
    var image_index = 0;
    function rotateImage() {
    if (image_index == images.length - 1) { image_index = 0 } else { image_index++ }
    document.getElementById('imageholder').src = images[image_index];
    setInterval('rotateImage()', 5000);
    </script>
    I have a page: http://web.me.com/phelpssculpture/Site/Resume.html
    that has a rollover image (from OldToad) that has two images about the same file size and located in the same folder on my iDisk as the other slide show images but it seems to load instantly.
    this is the escaped code:
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    loadImage1 = new Image();
    loadImage1.src="http://web.me.com/phelpssculpture/Docs/typewriterprpage.jpg";
    staticImage1 = new Image();
    staticImage1.src="http://web.me.com/phelpssculpture/Docs/royalprpage.jpg";
    // End -->
    </script>
    <a href="http://web.mac.com/phelpssculpture/Site/royal.html" onmouseover="image1.src=loadImage1.src;" onmouseout="image1.src=staticImage1.src;">
    <img name="image1" src="http://web.me.com/phelpssculpture/Docs/royalprpage.jpg" border=0></a>
    Does anyone know if it's possible to improve the html of the slideshow snippet to speed up the initial load time?
    Thanks, David

    Ethmoid:
    There are seven different pages: http://web.me.com/phelpssculpture/Site/movieroyal_davidphelps.html
    Each link is directed to a different page.
    I created the basic layout on one page and then duplicated the page six times.
    the links are in one text box ( that's why they're lined up well ) and each individual word is activated as a link. I changed the background color of the forward tab to match the color of the main shape and used the send forward or send backward command to get the tabs to look right on each page.
    The only problem with the words being in a single text box is that explorer doesn't render the spacing correctly and they fall off their respective tabs. When I get time I will put each word in it's own text box ( it's not that hard to align them ) so it will render properly in explorer.
    Sincerely, David Phelps

Maybe you are looking for

  • Error while calling webservice on ECC 5.0

    Hi I have a webservice exposed on a ECC5.0 - the webservice is available for runtime. But when I call it with a single input parameter - from a test SOAP test client- I get the following error as the SOAP response What could this be/mean ? Please hel

  • HP Officejet Pro 8600 "Problem with Printer or Ink System'

    A gander at this forum suggests I am one ofa multitude of people perplexed by this issue. There is a notation beside one enquiry which says 'Problem Solved'.... well it isn't for me. My printer (typical!) is one month out of warranty. I had to replac

  • ML60 tcode !! which table stores the data which is shown in ML60 ..urgent !

    Hi Guys, Tcode ML60 shows the Relase Group, Relase strategy and all.... Can anyone tell me which table is that which the stores the data which is shown in tcode ML60 ??? The problem that i am facing is that for ML60 the amount that is fixed for every

  • E71 doesn't show caller's name

    Today I noticed that my E71 doesn't show any names when somebody calls me, neither does it show any names with text messages (SMS). It shows just the number.  It doesn't show any name, I tried it with 10+ different people, both calling and texting. 

  • Why query is running slow....?morning evrything is fine...

    in the morning all queries r running well..? but now what happened... evry query is taking half an hour to run? what might be the possible reasons? problem is not in my system...some server issue...what might be that? Message was edited by:         n