问题标签 [magickwand]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
imagemagick - 负乘与imagemagick?
有谁知道是否可以进行 Photoshop 图层合成模式“负相乘”?
乘法是可能的,但我需要消极的方式。
谢谢
php - imagick installation issues on the lion
Currently i'm having issues with installing imagick correctly on the mac lion with MAMP.
I have ImageMagick-6.7.3 successfully installed. I've tested out the calls on command line. Note: The bin folder of the ImageMagick-6.7.3 has Magick-config, MagickWand-config, and Wand-config
I'm trying to install imagick-3.2.0RC1 which "Provides a wrapper to the ImageMagick library." However, this is where I have the problem. Without this installed, My php script won't execute and won't' know what how to use Imagick is.
I've tried 1) sudo pecl install magick
output:
As you can see, it complains about not finding the MagickWand-config.
However, I'm pretty sure the path to the MagickWand-config is correct. I opened a terminal and typed
If it wasn't set the the environmental path then that should have never worked.
I also printed out the $PATH:
Update: I installed homebrew and was able to do the following:
This allowed me to call "pecl install imagick" successfully.
The issue i get next is when i call make:
I read some thread saying the the version I have might have bugs, so i tried building imagick-2.2.2 and still no go.
Any advice Appreciated. Thanks, D
image-processing - 在 Pyramid 项目中运行 Wand 示例的 Segmentation Fault
我在 Wand 0.1.9 中运行示例时遇到分段错误:
但只有当我在 Pyramid 中跑步时才会发生这种情况。当我只是在一个简单的 python .py 中运行它时,它工作正常。有任何想法吗?
该示例可以在这里看到
c - C 的 MagickWand:缺乏文档对我来说意味着更多错误
我正在为 C 编写改进的 Perlin 噪声(我不太了解单纯形噪声)地形生成器,并且我实际上已经完成了 alpha 构建。但是,有一件事让我退缩:实际上保存了愚蠢的图像。我聘请了 MagickWand 来帮助我解决创建 PNG 的问题,它总体上看起来是一个不错的实现,具有大量有用的功能等,但整个事情的文档很少。没有教程,真的,只是一堆函数列表和一些示例程序。到目前为止,这是我的代码,基于此:
编辑:删掉一堆不相关的代码。
至少,我知道这是错误的链接(编译在 wand.h 中返回一个错误,它无法找到其中一个标题)。使用 MagickWand for C 从程序中的数组创建图像的正确方法是什么?
php - windows VC9 ffmpeg 和魔法棒
我正在寻找使用 MSVC9 (Visual C++ 2008) 编译的 PHP 5.3 的 ffmpeg 和 magickwand 扩展。
有人知道吗?
php - 在 Ubuntu 上为 PHP 安装 MagickWand
我提前为这个新手问题道歉。
我想在我的 ubuntu 服务器上安装 MagickWand for PHP (http://www.magickwand.org/)。我可以使用一个简单的“apt-get install”命令吗?
该网站告诉我通过重新配置 PHP 来安装 MagickWand,但如果没有必要,我宁愿不这样做——而且我什至不确定 PHP 扩展文件在哪里或如何找到它(我到处找过—— -我没有从源代码安装PHP,所以它可能不存在??)
在此先感谢您的帮助。希望有一个快速简单的答案。
最好的,杰克
php - 如何用魔法棒白垫/边框图像?
我有一个 180x240 的图像,我想用白色填充/边框,直到它适合 360x240 的大小,所以图像中的原始内容不会失真。
http://www.magickwand.org/ - 我在文档中找不到任何提示功能
imagemagick - PHP 使用 IMAGEMAGICK 或 imagick 或 magicwand
我使用 Imagemagick ( www.imagemagick.org )
因为我在 hostgator 上,所以我也安装了imagick和 magickwand。
我可以使用 imagick 和 magickwand 进行简单的操作,但如果我想在 imagemagick.org 上复制高级教程,我会失败。
目标: 让这个工作http://www.imagemagick.org/Usage/advanced/#jigsaw
问题:
我怎么能用imagick或magickwand做到这一点?
我还能以某种方式通过命令行与模块 imagemagick 进行通信,比如 exec(....)?
感谢 4 简短的帮助
c++ - WhiteThresholdImage魔法
如何将 WhiteThresholdImage 与 magick++ 一起使用?
我搜索它并找到了解决方案,所以我尝试:
错误:无法将 'Magick::Image' 转换为 'MagickLib::Image* {aka MagickLib::_Image*}' 以将参数 '1' 转换为 'unsigned int MagickLib::WhiteThresholdImage(MagickLib::Image*, const char*) '</p>
错误:未在此范围内声明“WhiteThresholdImage”
memory-leaks - 使用 ImageMagick 调整动画 gif 大小时的内存泄漏
我正在尝试使用 ImageMagick MagickWand 调整动画 gif 的大小,但会出现一些小的内存泄漏。每 400 个 gif 约 3 Mb。我不能 100% 确定我是否正确使用了 MagickWand。
我尝试使用一个 MagickWand 而不是两个,但是功能无法正常工作,并且泄漏甚至更高。我也尝试在 for 循环中初始化 MagickWand,但没有帮助。使用此代码,可以正确调整 gif 的大小和优化。由 检测到的内存泄漏_CrtDumpMemoryLeaks()
。它们在 Windows 任务管理器中也很明显。