Re: is there python image lib that does imagemagick?

2009-06-08 Thread Michel Claveau - MVP
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

Re: is there python image lib that does imagemagick?

2009-06-08 Thread Steven D'Aprano
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 python image lib that does imagemagick?

2009-06-08 Thread Xah Lee
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

ctypes based bindings for ImageMagick

2007-12-25 Thread Achim Domma
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

Re: ImageMagick Issue

2007-06-01 Thread Facundo Batista
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

Re: ImageMagick Issue

2007-05-31 Thread Michael Bentley
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

Re: ImageMagick Issue

2007-05-31 Thread Sick Monkey
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 = "

Re: ImageMagick Issue

2007-05-31 Thread Facundo Batista
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

Re: ImageMagick Issue

2007-05-30 Thread Michael Bentley
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

ImageMagick Issue

2007-05-30 Thread Sick Monkey
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

Re: imagemagick

2007-03-01 Thread azrael
> > 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

Re: imagemagick

2007-03-01 Thread Terry Hancock
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

imagemagick

2007-03-01 Thread azrael
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

Re: PIL and ImageMagick scalability

2005-12-27 Thread Fredrik Lundh
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

PIL and ImageMagick scalability

2005-12-26 Thread Sebastjan Trepca
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