1

奇妙な問題があります。私はcss-tricks.comのChrisのおかげでCSSAnythingスライダーを使用しており、jQueryを使用してスライダーに表示される画像のXMLフィードを取得しています。

$.post('feedURL', {},function(data){
    var slides = $(data).find('slides');
    for(var i = slides.length -1;i>=0;i--){
        var obj = $(slides[i]);
        var image = obj.find('ImageURL').text();

        var str = ' <li>';
        str += '        <img src="'+ image +'" />';
        str += '    </li>';

        $(str).find('img').one('load complete', function() {
            imageResize();
        }).end().appendTo($("#slider")); // Slider is a UL element on the page
    }
});

画像が読み込まれたら、画像のサイズ変更機能を実行します。私の画像はすべての異なるサイズでランダムにアップロードされています。これがサイズ変更機能の理由です。

function imageResize() {
    // Create the correct aspec ratio for images that are too large.
    $('#slider li img').each(function() {
        var maxWidth = 417; // Max width for the image
        var maxHeight = 313;    // Max height for the image
        var ratio = 0;  // Used for aspect ratio
        var width = $(this).width();    // Current image width
        var height = $(this).height();  // Current image height

        // Check if the current width is larger than the max
        if(width > maxWidth){
            ratio = maxWidth / width;   // get ratio for scaling image
            $(this).css("width", maxWidth); // Set new width
            $(this).css("height", height * ratio).css("margin-top", (maxHeight - height * ratio) / 2);  // Scale height based on ratio

            height = height * ratio;    // Reset height to match scaled image
            width = width * ratio;    // Reset width to match scaled image
        }

        // Check if current height is larger than max
        if(height > maxHeight){
            ratio = maxHeight / height; // get ratio for scaling image
            $(this).css("height", maxHeight);   // Set new height
            $(this).css("width", width * ratio).css("margin-top", "0");    // Scale width based on ratio

            width = width * ratio;    // Reset width to match scaled image
        }
    });
}

フィードからの画像は正常に読み込まれますが、一部の画像は横に回転して表示されます。

これが奇妙な部分です。フィードの画像URLを見て新しいウィンドウに表示すると、フィードの実際の画像は横向きに回転しますが、ChromeとFirefoxのブラウザでのみ回転しますが、Safariでは回転しません。ブラウザに関係なく、実際のスライドショー内では常に横に回転します。

右クリックしてフィードからデスクトップに画像を保存すると、画像は右側を上にして保存され、回転しません。

世界で何が起こっているのですか?誰か手がかりがありますか?

4

1 に答える 1

1

フィードで取得したのは画像ファイルのメタデータでした。写真ファイルを取得し、数回回転させてから、通常の状態に戻して保存すると、フィードに正しく表示されるようになりました。

于 2012-10-01T15:05:22.927 に答える