[PATCH 1/2] stkutil: convert img to xpm

2010-07-26 Thread Kristen Carlson Accardi
--- src/stkutil.c | 147 + src/stkutil.h |9 2 files changed, 156 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index 9cac850..ae4cc32 100644 --- a/src/stkutil.c +++ b/src/stkutil.c @@ -6076,3 +6076,150

Re: [PATCH 1/2] stkutil: convert img to xpm

2010-07-26 Thread Denis Kenzior
Hi Kristen, On 07/26/2010 01:27 PM, Kristen Carlson Accardi wrote: --- src/stkutil.c | 147 + src/stkutil.h |9 2 files changed, 156 insertions(+), 0 deletions(-) Both patches in this series have been applied, thanks.

Re: [PATCH 1/2] stkutil: convert img to xpm

2010-07-23 Thread Denis Kenzior
Hi Kristen, On 07/22/2010 07:10 PM, Kristen Carlson Accardi wrote: --- src/stkutil.c | 148 + src/stkutil.h |8 +++ 2 files changed, 156 insertions(+), 0 deletions(-) diff --git a/src/stkutil.c b/src/stkutil.c index

Re: [PATCH 1/2] stkutil: convert img to xpm

2010-07-23 Thread Denis Kenzior
Hi Kristen, On 07/23/2010 04:39 PM, Kristen Carlson Accardi wrote: On Fri, 23 Jul 2010 16:03:16 -0500 Denis Kenzior denk...@gmail.com wrote: Hi Kristen, On 07/23/2010 03:52 PM, Kristen Carlson Accardi wrote: On Fri, 23 Jul 2010 15:03:59 -0500 Denis Kenzior denk...@gmail.com wrote: This

Re: [PATCH 1/2] stkutil: convert img to xpm

2010-07-23 Thread Kristen Carlson Accardi
On Fri, 23 Jul 2010 16:46:51 -0500 Denis Kenzior denk...@gmail.com wrote: Hi Kristen, On 07/23/2010 04:39 PM, Kristen Carlson Accardi wrote: On Fri, 23 Jul 2010 16:03:16 -0500 Denis Kenzior denk...@gmail.com wrote: Hi Kristen, On 07/23/2010 03:52 PM, Kristen Carlson Accardi

Re: [PATCH 1/2] stkutil: convert img to xpm

2010-07-23 Thread Denis Kenzior
Hi Kristen, Also, you might want to change unsigned ints to unsigned chars. The image size and CLUT size can never be more than 256. The image size can be greater than 256, but I think you mean the value of height, width, and ncolors can never be greater than 256, which is true. Sorry,

Re: [PATCH 1/2] stkutil: convert img to xpm

2010-07-22 Thread Marcel Holtmann
Hi Kristen, Also, XPM is pretty flexible here, there's no need to use 0-9 digits only. For instance, you can do two look up tables, one for images with LUTs up to 64 entries and another for LUTs with more. E.g. a-za-z...@$ and 'aa ab ac .. pp' or something like that. I realize