M
M
Maksim Sobolev2020-01-30 09:25:35
JavaScript
Maksim Sobolev, 2020-01-30 09:25:35

Why is the image not opening?

5e327a0c78bd8570957220.png

The windows photo viewer cannot display the image. There may not be enough RAM. Close some unused programs or the hard drive is almost full, free up some disk space, then try again


This happens only in one picture, updated the drivers for the screen and video card, it still does not turn on through photoshop, illustrator and the browser is displayed.
I checked on five computers, all the same.
Maybe someone else has done this before and knows what to do.
I will attach a link to the photo, I threw it in the archive.
link i.disk

Answer the question

In order to leave comments, you need to log in

6 answer(s)
D
dollar, 2019-05-06
@tereshock98

You need four different timers, that is, their identifiers need to be written to different variables. And in the after section, respectively, call clearTimeout() four times in a row

//например
var timerInSlider1, timerInSlider2, timerInSlider3, timerInSlider4;

In general, in a good way, it is better to make a small cycle, it will be more beautiful and correct in terms of code reuse.
Something like this:
//Минимальные изменения вашего кода
var timerInSlider = [1,2,3,4]; //массив для четырёх таймеров

$.scrollify({
    section: ".section",
    scrollbars: true,
    interstitialSection: ".non-full-height",
    overflowScroll: true,
    before: function(indexBigSlider, sections){
        if(indexBigSlider == 2) timerInSlider.forEach((e,i) => { //цикл

            timerInSlider[i] = setTimeout(function(){
                $(".fullwidth-slider").trigger('owl.next');
                console.log((i+1)+" итерация");
            }, 12000 * (i+1)); //время зависит от номера таймера

            //остальной код убрали
        });
    },
    after: function(indexBigSlider, sections){
        if(indexBigSlider == 3){
            console.log("След слайдер");
            //также в цикле убираем
            timerInSlider.forEach(e=>clearTimeout(e)); 
        }
    }
});

R
Radjah, 2020-01-30
@sobolevmaksim

Very similar to a broken image that the viewer stumbles over. I have the same inscription in Win7. At the same time, IrfanView opens it normally.

V
Valdemar Mayakovtsev, 2021-05-04
@forajump

Most likely, the standard image viewer is incompatible with some metadata, in particular, with a color profile recorded by a smartphone, for example. You can convert the color profile (GIMP, Photoshop), remove metadata (EXIF Purge, ImageMagick), or add a compatible color profile to the system (so-so solution, since you may need to attach a standard color profile to your monitor and printer).

A
Amerzhan, 2020-01-30
@Amerzhan

opened on the Yandex disk ... try to open it yourself through Yandex, then save as .

D
dedsamurai, 2021-08-06
@dedsamurai

Solved by cleaning the hard drive from .tmp files

P
Patricko, 2021-08-07
@Patrico

Same problem. applies to all screenshots from the phone. How to make changes so that they open? why not edit every photo?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question