2011-10-18 14 views
-2

RenderOptions.SetBitmapScalingMode(thumbImg、BitmapScalingMode.HighQuality)の後でも画質が低下しています。 任意のアイデアRenderOptions.SetBitmapScalingModeをHighQualityにした後でも、イメージの画質が低下しています

 if(File.Exists(image_file.FullName)) 
     { 
      IPLRes.print("Loading " + image_file.FullName); 
      BitmapImage thumbImg = new BitmapImage(new Uri(image_file.FullName)); 
      RenderOptions.SetBitmapScalingMode(thumbImg, BitmapScalingMode.HighQuality); 
      ImageBrush imgbrush = new ImageBrush(thumbImg); 
      imgbrush.Stretch = System.Windows.Media.Stretch.Uniform; 
      RenderedPages[page_numx] = imgbrush; 

     } 

.....

ShapRectangle thumbnail = (ShapRectangle)FindName("rect_Thumb" + thumbnail_nbr); 
VISUAL thumbnailvisual = (VISUAL)FindName("rect_Thumb" + thumbnail_nbr); 
thumbnail.Fill = (System.Windows.Media.Brush)RenderedPages[page_numx]; 

enter image description here

+0

あなたの画像を表示してください。 – SLaks

答えて

関連する問題