2017-06-09 38 views

回答

0

這個問題實際上在

LIB /瓦瑞恩/圖像/適配器/ Gd2.php

和是由於使用imagefill的和不imagefillrectangle。

要解決這個問題,首先要創建文件

/app/code/local/Varien/Image/Adapter/Gd2.php

/lib/Varien/Image/Adapter/Gd2.php內容複製到它。

接下來,打開此文件並找到這行:

$此 - > _ fillBackgroundColor($ newImage);

並將其替換:

$此 - > _ fillBackgroundColor($ newImage,$ frameWidth,$ frameHeight);

下,找到這行:

如果(imagefill($ imageResourceTo,0,0,$顏色)!){

並將其替換:

if(!imagefilledrectangle($ imageResourceTo,0,0,$ w,$ h,$ color)){

進入Magento Admin後,轉到緩存管理並刷新所有Magento圖像緩存。

請嘗試此並讓我知道在任何查詢的情況下。

+0

請讓我知道,如果這個解決方案可以幫助你,並讓我知道你是否需要任何其他幫助。 –

+0

感謝您的答覆,但上面的解決方案是不能再次工作,它顯示在管理端的類別上傳圖像的黑色背景 –

+0

你能告訴我你的magento版本嗎? –