问题标签 [pgmagick]
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.
python - 如何在 linux (CentOS) 上构建 pgmagick?
pgmagick
尝试在 CentOS 5.6 上构建时,我没有取得太大的成功。
我通过以下方式安装了以下内容yum
:
但是,每当我尝试构建时,都会pgmagick
出现以下错误:
我也尝试过安装boost141
,boost141-devel
但boost141-python
pgmagick 不会针对这些库进行构建。
关于如何解决问题或进一步诊断问题的任何建议?
linux - pgmagick 安装在 Linux 上
我试图在 CentOS 上安装 pgmagick。
运行后pip install pgmagick
我得到一些错误。在我检查了日志文件后,这就是我得到的:
我错过了什么吗?如何让它发挥作用?
python - 如何在 wxpython gui 中显示 graphicsmagick 图像?
我想使用 graphicsmagick 和 wxpython 来制作交互式图像编辑器。我正在使用 pgmagick python api。
天真的尝试:
制作:TypeError: expected a readable buffer object
从wximg.SetData(im)
然后我对尝试pgmagick.getPixels
,blob等没有成功。
你成功了吗?
谢谢!
python - 如何在 Windows 上安装 python pgmagick
我正在尝试在 Windows 上安装 pgmagick 库。我正在关注官方页面: http: //pypi.python.org/pypi/pgmagick/
从那里我可以注意到我需要先安装 easy_install、pip、boost 和 graphicsMagic。在此页面中,我找到了 easy_install: http ://blog.troygrosfield.com/2010/12/18/installing-easy_install-and-pip-for-python/ 在此页面中,我可以找到 pip 和 boost: http://www .lfd.uci.edu/~gohlke/pythonlibs/#pgmagick
但我不知道如何安装magick++。我去网站下载了它,但它只安装了软件,当我尝试像这样安装 pgmagick 时: pip install pgmagick
有一个错误,我需要 magick++:
谢谢!
python - 通过 pgmagick 访问低级像素
我想知道是否可以通过 pgmagick 对图像执行低级像素操作。特别是,我想模仿此处显示的 C++ GraphicsMagick API 中的功能:
http://www.graphicsmagick.org/Magick++/Image.html#low-level-image-pixel-access
当我尝试以下操作时:
我收到如下错误:
pgmagick 中的等效功能是什么?
python - Flood fill with Graphicsmagick or pgmagick
Question
What is a good way to use flood fill with the Graphicsmagick command line or its pgmagick wrapper for python?
Background
So far this is what I have, but its saying that the signatures do not match:
Code: Error:Extra
Also, if you know of a better way that I can manipulate graphics from a Python application or the windows command line, I'm all ears. I'm starting to feel like I may be using the wrong tool for this with the state of the documentation.
python - 使用 pgmagick 从 URL 打开图像
在 pgmagick 中,你像这样初始化一个图像:
我将对远程存储在 S3 上的文件进行操作,而不是将它们临时存储在磁盘上。有没有办法从 URL 打开图像文件?当我尝试简单地用 URL 替换文件名时,我收到一个错误:Unable to open file.
我希望能够使用 URL。如果有人对此有任何建议或如何扩展 pgmagick 来实现它,我会很高兴。
python - 在圆形图像周围生成平滑的白色边框
我正在使用 pgmagick 生成一个圆形缩略图。我正在使用与此处讨论的过程类似的过程,它确实为我生成了一个不错的圆形缩略图。但是,我需要在圆的半径周围有一个白色边框。
我最初的方法是创建一个带有透明背景的稍大的白色圆圈的新图像,然后在其上合成缩略图,让白色圆圈从缩略图下方“突出”并创建边框效果。这是我用来实现这一目标的 pgmagick 代码:
这“有效”,但周围的白色边框相当扭曲,边缘不连贯——尚未准备好生产。如果我把drawer.stroke_antialias(False)拿出来,那就更糟了。
关于使用 pgmagick 使这个边界更平滑的任何想法?
python - Cant create database using manage.py syncdb coz of file_picker error
我不知道有什么问题。但是当我清理我的 settings.py
)
并关闭与文件选择器和引导程序相关的所有内容 - 它可以工作,请帮助我...................... ..................................................... ..................................................... .....................................................
我修复了它except Exception as e
比我再试一次 - 它显示
..................................................... ..................................................... ..................................................... ................................ 在安装 sorl-thumnail 之前,我必须安装一些要求,如 redis、Pillow、pgmagick和魔杖。
只有我无法安装 pgmagick - 这是错误
..................................................... ..................................................... .......比我安装了sorl-thumbnail,什么也没发生,然后再试一次-
python-2.7 - Google AppEngine 上的 pgmagick
我正在尝试在 Google AppEngine 上使用 pgmagick。我在 AppEngine 主目录中删除了 pgmagick 0.5.10 目录(包含init .py、_version.py、api.py)。我可以在 Google AppEngine 上成功部署应用程序,但在导入 pgmagick 时失败,因为init .py 正在尝试导入不存在的 _pgmagick。
文件“/Users/user/app/pgmagick/pgmagick/ init .py”,第 1 行,在 from pgmagick import _pgmagick ImportError: cannot import name _pgmagick
我是否缺少一些额外的 pgmagick 库,我可以从哪里获得它们?