Questions tagged [timage]

TImage is a VCL component that allows one to output images.

126 questions
-2
votes
1 answer

Picture value of TImage is not staying TBitmap

In a Delphi XE3 project, I am having an issue in changing a bitmap image. In the design view the picture value of a TImage is TBitmap, as shown: However, when I change the image, the picture value is a TDXSmartImage: So far, the actual image type…
-2
votes
1 answer

Memory Error when attempting to load jpeg from resource file Delphi XE7 / OSX

I found the code to do the following on this site, so thanks However the line "logo.Bitmap.LoadFromStream( MyRs);" Access Violation - some kind of memory error I assume. I used Project | Resources and Images ... to add the Jpeg Is this a problem…
Trevor
  • 1
-2
votes
2 answers

DELPHI Change Property of Object stored in Variable

Is there a way to change the property of a TImage which is stored in a variable? I have a function that writes the Name propery of a TImage in the FigureSelectedName variable, and it writes the field Name in the FieldSelected variable. Now my…
KS_HTK
  • 11
  • 4
-3
votes
2 answers

TImage - dynamically load resource by component name

I will assign this procedure into OnMouseEnter. I have some TImage that will change it's picture OnMouseEnter. It is easier to make each procedure of it on event handler. But i don't like to repeat the same code. var i: Integer; CoName:…
Bianca
  • 893
  • 2
  • 13
  • 31
-3
votes
2 answers

Opening an image in TImage from a server

I am working on a huge project using Delphi XE5, the core of the program is to open an image using the TImage component on the application but the image is on a server that is accessed trough the internet. The image that displays depends on the…
Harmdw
  • 1
  • 1
-5
votes
2 answers

I created an array of TImage but they aren't visible

I'm using Delphi and I created an array of ten elements of type TImage whit this name and structure: Form3.images[1..max] of TImage. I tried to initialize it in this way: for x := 1 to max do begin images[x] := TImage.Create(Form3); …
Black8AC
  • 1
  • 3
1 2 3
8
9