Hi Guys,
I have four images(img1.jpg,img2.jpg,img3.jpg,img4.jpg) that I wanted arrange in a new image(imgx.jpg). do you how could I do this?
How to arrange images to generate a new image?
Re: How to arrange images to generate a new image?
Vilian,
do You need a general solution like using
PIXELFORMER or do You need to create different
images many times from inside Your program
best regards
Uwe
do You need a general solution like using
PIXELFORMER or do You need to create different
images many times from inside Your program
best regards
Uwe
Last edited by ukoenig on Fri Oct 09, 2020 1:28 pm, edited 1 time in total.
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Re: How to arrange images to generate a new image?
I need to create different images many times inside my program.
- nageswaragunupudi
- Posts: 8017
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: How to arrange images to generate a new image?
Code: Select all
function StitchImages()
local cImage1 := "c:\fwh\bitmaps\olga1.jpg" // 352x450
local cImage2 := "c:\fwh\bitmaps\olga2.jpg" // 352x450
local cImage3 := "https://cf.bstatic.com/images/hotel/max1024x768/223/223087771.jpg" // 1024x683
local hBmp
hBmp := FW_MakeYourBitmap( 704, 450+470, <|hDC|
FW_DrawImage( hDC, cImage1, { 0, 0, 450, 352 } )
FW_DrawImage( hDC, cImage2, { 0, 352, 450, 704 } )
FW_DrawImage( hDC, cImage3, { 450, 0, 920, 704 } )
return nil
> )
FW_SaveImage( hBmp, "new.jpg", 50 )
Deleteobject( hBmp )
XIMAGE( "new.jpg" )
return nil
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
Re: How to arrange images to generate a new image?
Thank You Mr Rao,
It's exactly I need
It's exactly I need