TImage is a VCL component that allows one to output images.
Questions tagged [timage]
133 questions
-1
votes
1 answer
How load a base64 encrypted url in a TWebBrowser or TImage?
I have this url encrypted in base64 that is a animated QRCode.
How i can load it in a TWebBrowser (or TImage)? Thanks in advance.
Edit:
Here was my attempt, but without success:
uses
IdHTTP, IdSSLOpenSSL, GIFImg, ClipBrd;
type
TForm1 =…

FLASHCODER
- 1
- 7
- 24
-1
votes
1 answer
Lazarus: stacking images, paint order
I want to design a simple game (lazarus 1.8.4) with an image as playing field and some figures (transparent images) over it, created on runtime. So typically more than one images are at the same position. How can I make sure, that the figures are…

am2
- 380
- 5
- 21
-1
votes
1 answer
How detect if i'm moving mouse to left, right, top or bottom inside TImage component on mousemove event?
I want know how detect to what side i'm moving mouse: to left, right, top, bottom inside TImage component on mousemove event?
Thank you.
user9672569
-1
votes
1 answer
Fill in color of TImage content
I'm using Borland C++Builder 6.
I would like to use the TImage component and just fill its content in a specific color (assume, black) - how can I do that?

user687459
- 143
- 5
- 17
-1
votes
1 answer
Load images from the web to a TImage component
I have a TImage component in a XE7 FMX Android form. I would like to load images from the web onto it. I found this article, but unfortunately it seems to work only in Delphi XE5. I could use the Indy components to perform such task, but I would…

André Murta
- 141
- 2
- 9
-1
votes
2 answers
How to create a OnClick procedure for array of images?
My procedure for creating and loading picture into these images, but how do I create an OnClick procedure and determine which on I am clicking on?
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,…

Simon Davy
- 1
- 1
- 2
-2
votes
1 answer
Second unit does not find TImage
so I have some work to do using lazarus and one of my procedures is written in a second unit but also used in the first.
The problem is, I want to give the procedure a TImage from the Form connected to unit 1, but unit 2 can't find an identifier…

Neubauer
- 21
- 5
-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…

user3250933
- 59
- 3
-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
- 1
- 6
-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
- 973
- 2
- 14
- 33
-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