Re: [E-devel] [Patch] Add scale down decoding feature to evas png loader

2011-10-19 Thread The Rasterman
new patch. Thanks. -Original Message- From: Carsten Haitzler (The Rasterman) [mailto:ras...@rasterman.com] Sent: Thursday, October 13, 2011 7:02 PM To: Enlightenment developer list Cc: Jiyoun Park Subject: Re: [E-devel] [Patch] Add scale down decoding feature to evas png loader

Re: [E-devel] [Patch] Add scale down decoding feature to evas png loader

2011-10-17 Thread Jiyoun Park
] Sent: Thursday, October 13, 2011 7:02 PM To: Enlightenment developer list Cc: Jiyoun Park Subject: Re: [E-devel] [Patch] Add scale down decoding feature to evas png loader On Mon, 03 Oct 2011 18:12:41 +0900 Jiyoun Park jy0703.p...@samsung.com said: small things: +ie-w = (int) w32 / ie

Re: [E-devel] [Patch] Add scale down decoding feature to evas png loader

2011-10-13 Thread The Rasterman
On Mon, 03 Oct 2011 18:12:41 +0900 Jiyoun Park jy0703.p...@samsung.com said: small things: +ie-w = (int) w32 / ie-load_opts.scale_down_by ; +ie-h = (int) h32 / ie-load_opts.scale_down_by ; +if((ie-w 1) || (ie-h 1)) !!! spaces (before ; and after if) in allocation of

[E-devel] [Patch] Add scale down decoding feature to evas png loader

2011-10-03 Thread Jiyoun Park
Hello. I add scale down decoding feature to evas png loader. 5515X3986 size png image need 80~90M memory, but scale down(scale num=2) option can reduce memory to 25~30M. I use down sample method for scale down. (there is more efficient algorithm for scale down, I'll add this to my todo list)