Hi!
On Windows, you can drive (manage?) ImageMagick from Python, via COM.
See: http://www.imagemagick.org/script/api.php#com+
@-salutations
--
Michel Claveau
--
http://mail.python.org/mailman/listinfo/python-list
On Mon, 08 Jun 2009 08:13:37 -0700, Xah Lee wrote:
> is there a python image library that does pretty much what imagemagick
> does?
Python Imaging Library (PIL).
http://pypi.python.org/pypi/PIL/1.1.6
--
Steven
--
http://mail.python.org/mailman/listinfo/python-list
is there a python image library that does pretty much what imagemagick
does?
all i need is for converting png/jpg, and scaling images. No need
other fancy things imagemagick does.
i know there's a python wrapper for imagemagick, but i need
independent ones that doesn't require s
I have uploaded a very early alpha version of python bindings for
ImageMagick to our blog. ImageMagick is a library to do all kind of
image processing. MagickWand is a reduced API to common manipulation
tasks like resizing and composing of images. My bindings are a ctypes
based wrapper around this
Sick Monkey escribió:
> I ran into another slight problem. And I attempted to fix it, but have
> not been able to do so yet. If a filename does not contain a space,
> then this method works like a charm. But if there is a space then the
> code throws a nasty error.
Ok, the issue is that sub
On May 31, 2007, at 8:08 PM, Sick Monkey wrote:
I ran into another slight problem. And I attempted to fix it, but
have not been able to do so yet. If a filename does not contain a
space, then this method works like a charm. But if there is a
space then the code throws a nasty error.
i
I ran into another slight problem. And I attempted to fix it, but have not
been able to do so yet. If a filename does not contain a space, then this
method works like a charm. But if there is a space then the code throws a
nasty error.
import os
import subprocess
from os import *
imagefile = "
Sick Monkey wrote:
> When I run the following command:
> [EMAIL PROTECTED] david.huggins]# identify -format %w
> '/someDIR/images/david.huggins/100_0264.JPG'
>From Python interpreter:
>>> cmd = "identify -format %w test.jpg"
>>> p = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE,
>>> stde
On May 30, 2007, at 11:00 PM, Sick Monkey wrote:
When I run the following command:
[EMAIL PROTECTED] david.huggins]# identify -format %w '/someDIR/
images/david.huggins/100_0264.JPG'
I get the following result
2304
However, when I try to set this value to a variable, ie
I have the following:
OS = RedHat
ImagMagick installed.
Python v2.5
-
When I run the following command:
[EMAIL PROTECTED] david.huggins]# identify -format %w
'/someDIR/images/david.huggins/100_0264.JPG'
I get the following result
2304
However, when I try
>
> There have been a few wrappers for ImageMagick over the last few years.
>
> There was once something called "PythonMagick", for example. However
> AFAIK, they are all currently defunct. There was a later version using
> Boost, but it apparently required a lot of system re
azrael wrote:
> Hy
> did anyone manage to work with imahemagick through python. I've been
> googling like a crazy for some instalation instructions, but i cant
> find anything. please help.
There have been a few wrappers for ImageMagick over the last few years.
There was once
Hy
did anyone manage to work with imahemagick through python. I've been
googling like a crazy for some instalation instructions, but i cant
find anything. please help.
thnx
--
http://mail.python.org/mailman/listinfo/python-list
same process that handles
> other requests and that will probably slow them down when there will
> be a peak.
recent versions of PIL release the GIL for all long-running operations,
so a threaded design might good enough for your purpose.
> If we use ImageMagick you create new process
requests and that will probably slow them down when there will
be a peak. If we use ImageMagick you create new process that does the
image processing which probably uses multiple CPUs better and is more
scalable, right?
Thanks, Sebastjan
--
http://mail.python.org/mailman/listinfo/python-list
15 matches
Mail list logo