Jump to content

Picture in TUniDBGrid bad quality


Bernie07

Recommended Posts

Hello,

 

it seems that pictures which are in a TUniImageList shown in a TUniDBGrid are not the quality as the original. The PNG Image have a size of 16x16.

 

Here is the code in OnFieldImage of TUniDBGrid (ImageMitarbeiter is a TUniImageList)

 

      OutImage := TBitmap.Create;
      OutImage.SetSize(16,16);
      if DataKDMonEinsaetzeAssistent.MemMitarbeiterAktiv.AsBoolean then begin
         ImageMitarbeiter.GetBitmap(CBitmapIndexMitarbeiterAktiv, TBitmap(OutImage));
      end
      else begin
         ImageMitarbeiter.GetBitmap(CBitmapIndexMitarbeiterEhemalig, TBitmap(OutImage));
      end;
 
Is there a way to get the original quality?
The original Image is a png file.
 
Best wishes
Bernhard
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...