From 9eda7a1e1b42bfcc4ed086c75068f7207ba3849b Mon Sep 17 00:00:00 2001 From: Cristy Date: Sat, 24 Feb 2018 20:46:04 -0500 Subject: [PATCH] ... --- MagickCore/draw-private.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MagickCore/draw-private.h b/MagickCore/draw-private.h index 57afeccf2..acb27ba14 100644 --- a/MagickCore/draw-private.h +++ b/MagickCore/draw-private.h @@ -41,6 +41,7 @@ static inline void GetFillColor(const DrawInfo *draw_info,const ssize_t x, pattern=draw_info->fill_pattern; (void) GetOneVirtualPixelInfo(pattern,TileVirtualPixelMethod,x+ pattern->tile_offset.x,y+pattern->tile_offset.y,fill,exception); + fill->alpha*=QuantumScale*draw_info->fill_alpha; } } @@ -59,6 +60,7 @@ static inline void GetStrokeColor(const DrawInfo *draw_info,const ssize_t x, pattern=draw_info->stroke_pattern; (void) GetOneVirtualPixelInfo(pattern,TileVirtualPixelMethod,x+ pattern->tile_offset.x,y+pattern->tile_offset.y,stroke,exception); + stroke->alpha*=QuantumScale*draw_info->stroke_alpha; } } -- 2.40.0