Wiki page image_objects changed with summary [fixed bug code in image_blur example] by Jiwon Kim

This commit is contained in:
Jiwon Kim 2016-08-01 08:46:35 -07:00 committed by apache
parent d049fe3a28
commit ae4f3921c2
1 changed files with 4 additions and 10 deletions

View File

@ -363,16 +363,10 @@ void image_blur(Evas_Object *img)
avg_color[1] /= blur_pixel_cnt;
avg_color[2] /= blur_pixel_cnt;
for (xx = x; (xx < x + blur_size) && (xx < w); xx++)
{
for (yy = y; (yy < y + blur_size) && (yy < h); yy++)
{
int idx = (yy * w * 4) + (xx * 4);
img_src[idx + 0] = avg_color[0];
img_src[idx + 1] = avg_color[1];
img_src[idx + 2] = avg_color[2];
}
}
int idx = (y * w * 4) + (x * 4);
img_src[idx + 0] = avg_color[0];
img_src[idx + 1] = avg_color[1];
img_src[idx + 2] = avg_color[2];
}
}
evas_object_image_data_update_add(img, 0, 0, w, h);