From 0839c55af3e04dec06756f60da81a58210557c29 Mon Sep 17 00:00:00 2001 From: cristy Date: Sun, 14 Apr 2013 21:45:02 +0000 Subject: [PATCH] --- coders/caption.c | 2 +- coders/label.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/coders/caption.c b/coders/caption.c index 2ea752441..b9c837ce0 100644 --- a/coders/caption.c +++ b/coders/caption.c @@ -230,7 +230,7 @@ static Image *ReadCAPTIONImage(const ImageInfo *image_info, if ((width >= (image->columns << 1)) || (height >= (image->rows << 1))) break; } - high=draw_info->pointsize/2.0; + high=draw_info->pointsize; for (low=high/2.0; (high-low) > 1.0; ) { draw_info->pointsize=(low+high)/2.0; diff --git a/coders/label.c b/coders/label.c index 68d0ad361..f4025ebfd 100644 --- a/coders/label.c +++ b/coders/label.c @@ -157,7 +157,7 @@ static Image *ReadLABELImage(const ImageInfo *image_info, ((image->rows != 0) && (height >= (2*image->rows)))) break; } - high=draw_info->pointsize/2.0; + high=draw_info->pointsize; for (low=high/2.0; (high-low) > 1.0; ) { draw_info->pointsize=(low+high)/2.0; -- 2.50.1