Insert a photo
Insert a photo
Hi, all !
There is an object of type TXImage. I need to insert a photo from the Clipboard into it. How could I possibly do that ?
There is an object of type TXImage. I need to insert a photo from the Clipboard into it. How could I possibly do that ?
Re: Insert a photo
Assign data lCanPaste := .T., and press button right over control TXImage
Code: Select all
@ 300, 300 XIMAGE oImage SIZE 300, 300 ;
OF oWnd SOURCE "ejemplo.png" NOBORDER
oImage:lCanPaste := .T.
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Insert a photo
Thank you for your help !
Can I save an image from TXImage to a variable ?
Can I save an image from TXImage to a variable ?
Re: Insert a photo
I do not understand well
Please, explain better
Please, explain better
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Re: Insert a photo
The TXImage class has a Save method that allows you to save the image only to a file. I need to save the image to a variable
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Insert a photo
the GetHBitmap() function will return the handle of the picture.
I need the text of picture
I need the text of picture
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Insert a photo
I need to save the picture to BLOB. I can do this
buf=memoread ("my.jpg")
blobdirectput(0, buf)
But is it possible to do so ?
blobdirectput(0, image:GetHBitmap() )
buf=memoread ("my.jpg")
blobdirectput(0, buf)
But is it possible to do so ?
blobdirectput(0, image:GetHBitmap() )
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Insert a photo
Mr Nages,
Can you post here sample how to handle the Paste Image..?
Thanks.
Can you post here sample how to handle the Paste Image..?
Thanks.
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Insert a photo
Please set
if you want the user to paste images into the XImage control.
Then the user can
1. Copy an image from any source
2. Select the ximage by clicking on it
3) (a) Press Ctrl-V
OR
(b) Right-click on ximage and select "Paste" option from the context menu
If you want to paste thorugh program, you can use oImage:Paste() even if oImage:lCanPaste is not set to .t.
Code: Select all
oImage:lCanPaste := .t.
Then the user can
1. Copy an image from any source
2. Select the ximage by clicking on it
3) (a) Press Ctrl-V
OR
(b) Right-click on ximage and select "Paste" option from the context menu
If you want to paste thorugh program, you can use oImage:Paste() even if oImage:lCanPaste is not set to .t.
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: Insert a photo
Thanks Mr Nages.
Best Regard..
Best Regard..