Bazı JPEG görüntüleri IE'de çalışmıyor

2 Cevap php

Hello,

Bir basın arşivi var. Basın arşiv görüntüler automattically bir PDF belgesi için bağlantılar olarak minik yarattı.

Bu i IE 6, 7 ve ne olsun 8:

alt metni

O ince çalışır iken Chrome:

alt metni

: Küçük otomatik tarafından imagemagick oluşturulur

$cmd = 'convert ' . $_FILES['file']['tmp_name'] # This is a PDF file
 . '[0]' # This indicates that it is the first page that should be converted
 . ' -resize "120x120>" ' # This is the size of the thumbnail
 . $thumb_path; # This is the destination
 $resize_output = exec($cmd);

Bir komut bu gibi bakabilirsiniz

convert /tmp/AcXDYe[0] -resize "120x120>" /var/www[...]

However

Ben görüntülerde biraz daha yakından baktı ve onlar biraz farklı görünüyor ve bu tüm başarısız görüntüler arasında bir tema

Bu IE uyumlu JPEG'leri oluşturur böylece Yani, benim imagemagick komutunu değiştirebilirim?

2 Cevap

Görüntü Site özellikle diyor ki:

No color-space metadata and no embedded color profile: Windows and Mac web browsers treat colors randomly.

Images for the web are most widly viewable when in the sRGB color space and with an embedded color profile.

Ben (Adobe Illustrator CS4 ile yapılan) bir statik jpeg ile aynı sorun olsun.

<img src="{$PT_WWW_PATH}img/logo/logo_cominar_couleurs.jpg" alt="Cominar">

Edit:

Jpeg "PANTONE" renk profili kullanılarak yapıldı. Ben sRGB dönüştürülmüş ve şimdi çalışıyor.