Posts

Showing posts with the label TImage

Images & Pictures in Delphi (TImage & TDBImage)

Image
In Delphi loading, saving and  deleting  images in application is very easy. Delphi provides lots of classes and members to manage images in application. We can use useful component like TImage and TDBImage to load and save an Images. TImage is used to save or load an Image to or from a file. And TDBImage is used to  save or load an Image to or from a database.  Lets check in detail. Timage TImage control to display an image from files that ends in extensions including ICO, BMP, WMF, WMF, GIF and JPG. The Picture property specifies the image that appears in the TImage control. Delphi supports several different methods for assigning an image for the TImage component: a TPicture 's method LoadFromFile reads graphics from disk or the Assign method obtains the image from Clipboard. Properties Center Sets image in center Stretch Shows image in stretch mode Transparet Sets Transparent background ...