How to arrange images to generate a new image?

Post Reply
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

How to arrange images to generate a new image?

Post by vilian »

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?
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
ukoenig
Posts: 3981
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany
Contact:

Re: How to arrange images to generate a new image?

Post by ukoenig »

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
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.
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

Re: How to arrange images to generate a new image?

Post by vilian »

I need to create different images many times inside my program.
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
User avatar
nageswaragunupudi
Posts: 8017
Joined: Sun Nov 19, 2006 5:22 am
Location: India
Contact:

Re: How to arrange images to generate a new image?

Post by nageswaragunupudi »

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
 
Image
Regards

G. N. Rao.
Hyderabad, India
User avatar
vilian
Posts: 795
Joined: Wed Nov 09, 2005 2:17 am
Location: Brazil
Contact:

Re: How to arrange images to generate a new image?

Post by vilian »

Thank You Mr Rao,
It's exactly I need :)
Sds,
Vilian F. Arraes
vilian@vfatec.com.br
Belém-Pa-Brazil
Post Reply