[Gimp-developer] image to matrix form of image

2006-03-14 Thread virus2kk
i wnt to convert any image to matrix form like image(image in 1 and 0) .. i heard from someone sometime.. its cud be done by gimp.but i dont know ..how? so,please help me out... thnks in advance.. -- View this message in context:

Re: [Gimp-developer] Adding new list to a Combo in a call back function

2006-03-14 Thread Sven Neumann
Hi, Hari [EMAIL PROTECTED] writes: I am trying o change the list associated with a combo in one of the call back functions. I am succeful getting the right number of entries but all the items are set to the last element. Please ask such questions on the gtk or gtk-app-devel list. This list

[Gimp-developer] python plugin dos not receives changes to FLOATARRAY parameters done by libgimp functions.

2006-03-14 Thread Kleistereimer
hi! i wrote a c gimp plugin which is called from an python gimp plugin. the c plugin receives a FLOATARRAY parameter which it modifies. the c plugin sees the values the python plugin has put into the FLOATARRAY, but if it modifies these, this changes are not send back to the python plugin. how

Re: [Gimp-developer] python plugin dos not receives changes to FLOATARRAY parameters done by libgimp functions.

2006-03-14 Thread Manish Singh
On Wed, Mar 15, 2006 at 01:43:12AM +0100, Kleistereimer wrote: how to use gimp_path_get_points from a python plugin? here some samplecode: def somefunc(image): floatarray = [] for i in range(100): floatarray.append(0.0) closed = 0 count = 0