Board index » cppbuilder » Saving a Image
Shawn
![]() CBuilder Developer |
Shawn
![]() CBuilder Developer |
Saving a Image2004-01-23 06:46:20 PM cppbuilder44 Hi I would like to generate 1 image From several images (thumbnails). Like a contact sheet. Instead of printing all the thumbnails individually I would like to print one image containing 10+ thumbnails Thanks Shawn |
Hans Galema
![]() CBuilder Developer |
2004-01-25 06:42:56 PM
Re:Saving a Image
Shawn wrote:
In the Subject you speak about "Saving" an image. QuoteI would like to generate 1 image QuoteFrom several images (thumbnails). QuoteLike a contact sheet. QuoteInstead of printing all the thumbnails individually QuoteI would like to print one image containing 10+ thumbnails |
Shawn
![]() CBuilder Developer |
2004-01-26 04:39:51 PM
Re:Saving a Image
What kind of image ? Bitmap ? What component ?
- I would prefer a JPG image - The component (You tell Me) What type are the images and what type of picture do they contain ? - The images are small JPG images (50x50x24) Suddenly you want to "print" the images ? - Printing is no problem it is the generating and saving of the image (contact sheet) to disk! "Hans Galema" < XXXX@XXXXX.COM >wrote in message QuoteShawn wrote: {smallsort} |
Hans Galema
![]() CBuilder Developer |
2004-01-26 05:05:29 PM
Re:Saving a Image
Shawn wrote:
QuoteWhat kind of image ? Bitmap ? What component ? scrol down to grab the context. QuoteWhat type are the images and what type of picture do they contain ? for code to put them in memory or to display ? QuoteSuddenly you want to "print" the images ? Hans. |
Shawn
![]() CBuilder Developer |
2004-01-26 06:24:04 PM
Re:Saving a Image
What I need is as follow:
I have ten images on my disk (50x50), JPG images Now I would like to create 1 BIG Jpg Image size (800x600) from all ten images on my disk(contact sheet), and then save the newly created image also to my disk. Shawn |
Hans Galema
![]() CBuilder Developer |
2004-01-26 06:41:48 PM
Re:Saving a Image
Shawn wrote:
QuoteWhat I need is as follow: QuoteNow I would like to create 1 BIG Jpg Image size (800x600) from all ten Once the image is in a TBitMap you can use CopyRect() to copy it to another (contact sheet)bitmap. Repeat ten times adjusting the destination rect for CopyRect(). Then assign the (contact sheet)bitmap to the TJPEGImage and finally use the SaveToFile method of theTJPEGImage to save it contents as a file to your disk. Hans. |