簡體   English   中英

將 HALD CLUT 與 ImageMagick 一起使用時出錯(output 圖像上的黑線)

[英]Error Using HALD CLUT with ImageMagick (Black lines on output image)

我是一個預建站點上的新開發人員,試圖弄清楚如何使用設置的 ImageMagick 工具。 我們使用它的方式是使用 HALD CLUT 過濾器自動更改產品的顏色。

我昨天讓它運行了,但是 output 圖像上到處都是黑線。 我在產品圖像和 HALD CLUT 過濾器上測試了更改文件類型/格式,但沒有運氣,所以我假設它與 ImageMagick 有關。

輸出圖像的屏幕截圖

有誰知道會導致這種情況的原因是什么?

這是 ImageMagick 顏色生成器的代碼:

class SwatchGenerator {
    public $mask;
    public $swatches;
    public $types;
    public $th;
    public $base_url;
    public $results;
    public $type;
    public $color;
    public $output;

    function __construct ($overwrite = false) {
        $this->th = \Loader::helper('text');
        $this->base_url = \View::url('/');
        $this->overwrite = $overwrite;
        $this->delimiter = '~';
        $this->results = [];

        $this->loadSwatches();
        $this->loadTypes();
    }

    function loadSwatches () {
        $swatches = \Express::getObjectByHandle('swatch')->getEntries();

        foreach ($swatches as $swatch) {
            $handle = $this->th->urlify($swatch->getSwatchName());
            $filter = $swatch->getSwatchFilter();
            $this->swatches[$handle] = (is_object($filter)) ? $this->getImagickInstance($filter) : false;
        }
    }

    function loadTypes () {
        $types = \Concrete\Core\File\Image\Thumbnail\Type\Type::getVersionList();

        foreach ($types as $type) {
            $type_handle = $type->getHandle();

            if (strpos($type_handle, '_2x') === false && strpos($type_handle, 'product_') !== false) {
                $this->types[$type_handle] = $type;
            }
        }
    }

    function setType ($type) {
        $this->type = $type;
    }

    function setColor ($color) {
        $this->color = $color;
    }

    function setOutput ($output) {
        $this->output = $output;
    }

    function log ($message) {
        $this->addResult($message);

        // \Log::addEntry($message);
    }

    function addResult ($message) {
        $this->results[] = $message;
    }

    function getResults () {
        return $this->results;
    }

    function getResultLog ($delimiter = "\n\r") {
        return implode("\n\r", $this->getResults());
    }

    function generate ($base_file, $allowed_type = false) {
        $mask_file = $base_file->getAttribute('color_mask');

        if (!is_object($mask_file)) {
            $this->log('Mask not found.');
            return;
        }

        if ($base_file->getAttribute('width') != 2560) {
            $this->log('Invalid image size found. Must be 2560px wide.');
            return;
        }

        // these are our core images that should not change for any swatch
        $base = $this->getImagickInstance($base_file);

        // we do this to remove any trace of transparency and flatten the file
        // resolves issues with odd masking we were seeing
        $base->setImageBackgroundColor('white');
        // $base->setImageAlphaChannel(Imagick::ALPHACHANNEL_REMOVE);
        $base->setImageAlphaChannel(11);
        $base->mergeImageLayers(Imagick::LAYERMETHOD_FLATTEN);

        // jpg output
        $base->setImageFormat('jpg');
        $base->setImageCompressionQuality(85);

        $mask = $this->getImagickInstance($mask_file);
        $overlay = clone ($base);
        $overlay->compositeImage($mask, Imagick::COMPOSITE_COPYOPACITY, 0, 0);

        // base path to write the swatches to
        $base_file = $this->parsePath($base_file->getRelativePath());
        $pathinfo = pathinfo($base_file);

        // stores our composited swatch images
        $swatches = [];

        // now create an image for each swatch we have
        foreach ($this->swatches as $swatch_handle => $filter) {
            // if we are limited to a color, then abort if we are not on it
            if ($this->color && $this->color != $swatch_handle) {
                continue;
            }

            $swatch = clone ($base);

            if ($filter) {
                $swatch->haldClutImage($filter);
            }

            $swatch->compositeImage($overlay, imagick::COMPOSITE_DEFAULT, 0, 0);

            $swatches[$swatch_handle] = $swatch;

            foreach ($this->types as $type_handle => $type) {
                // filter non-product types
                if ($allowed_type && $allowed_type !== $type_handle) {
                    continue;
                }

                // if we are limited to a type, then abort if we are not on it
                if ($this->type && $this->type != $type_handle) {
                    continue;
                }

                $output_path = $pathinfo['dirname'] . '/' . $pathinfo['filename'] . $this->delimiter . $type_handle . $this->delimiter . $swatch_handle . '.jpg';

                if (file_exists($output_path) && !$this->overwrite) {
                    $this->log('Skipping existing file at ' . $output_path);
                } else {
                    $this->log('Rendering ' . $this->th->unhandle($swatch_handle) . ' at ' . $type->getWidth() . 'px (' . $type_handle . ')');

                    $output = clone ($swatch);
                    $output->resizeImage($type->getWidth(), 0, Imagick::FILTER_LANCZOS, 0);
                    $output->writeImage('../' . $output_path);

                    if ($this->output) {
                        $this->addResult("<img src='/{$output_path}' />");
                    }
                }

            }
        }
    }

    function getImagickInstance ($file, $type = false) {
        if (is_object($file)) {
            $path = ($type) ? $file->getThumbnailURL($type) : $file->getRelativePath();

            $image = new Imagick($this->parsePath('../' . $path));
            $image->setImageFormat('png');
            $image->setFormat('png');

            return $image;
        }
    }

    function parsePath ($path) {
        // strip leading slash
        $path = preg_replace('/^\//', '', $path);

        return str_replace($base_url, '', $path);
    }
}

我使用的是 PHP 版本 7.0.3.3、Imagick 版本 3.4.3 和 ImageMagick 6.9.6-2。

我無法訪問您的原始圖像。 但我確實下載了你的 Hald 圖像。 所以我在命令行中將它應用於 ImageMagick 6.9.11.28 Q16 Mac OSX 中的以下圖像,它工作正常 - 至少沒有行。 所以我懷疑您的 ImageMagick 版本或 Imagick 版本或您的代碼存在問題。 您可以嘗試在 PHP exec() 中運行我的命令,看看是否可行。 它會告訴您 ImageMagick 是否正常工作。 這也可能是您的輸入圖像或 libpng 委托版本的問題。

輸入:

在此處輸入圖像描述

霍爾圖像:

在此處輸入圖像描述

convert lena.jpg hald.png -hald-clut result.png

在此處輸入圖像描述

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM