up vote 0 down vote favorite
1
share [g+] share [fb]

hi all In my application i want to add 2 images as resources

I want to use those images ,when i click yes button in my application first image will be set as wallpaper and when i click on No button in my application second image will be set as desktop wallpaper

thanks in advance

regards

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

The easiest way is to create a text file and name it resources.rc or something (as long as it isn't the same name as your project file as that already has a resource file of its own).

If you're adding images, you'll need to add lines such as:

IMG_1 BITMAP "c:\my files\image1.bmp"
IMG_2 RCDATA "c:\my files\image2.jpg"

Note that the first parameter is an unique identifying resource name. The second parameter is the resource type. Some constants are available such as BITMAP and AVI. For others, use RCDATA. The third parameter is the full path and file name of the resource.

Now, in Delphi, you can add this .rc file to your project in the project manager.

To use the resources, you need different methods according to the resource type.

To load a bitmap, you can use:

imgWallpaper1.Picture.Bitmap.LoadFromResourceName(HInstance, 'IMG_1');

To load a JPEG, you need to convert it like this:

var
   jpgLogo: TJpegImage;
   RStream: TResourceStream;
begin
     RStream := TResourceStream.Create(HInstance, 'IMG_2', RT_RCDATA);
     Try
        jpgLogo := TJpegImage.Create;
        Try
           jpgLogo.LoadFromStream(RStream);
           imgLogo.Picture.Graphic := jpgLogo;
        Finally
           jpgLogo.Free;
        End;
     Finally
        RStream.Free;
     End; {Try..Finally}
link|improve this answer
thanks for help mate – noob Dec 18 '09 at 17:25
feedback

See this article, "Resource Files Made Easy (in Delphi Applications)."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.