Ok, here is what I am trying to do, it is basically a card maker.

I need to be able to save the finished products in a single bmp with all text and both the card background and card pic (the area in white which will be able to have pic files loaded at runtime) intact... but i'm having difficulty accomplishing this, any tips? I got everything to show on the card and edit the way i want, it's just saving it that is giving me trouble

Recommended Answers

All 4 Replies

Just use the SavePicture method SavePicture Picture, FileName For the picture parameter, you probably have to use the object with the picture property. SavePicture Picture1.Picture, "MyPicture.bmp"

Doesn't work, just saves the single background bmp no text and nothing from the other picpox

Yeah, you're right. You need to use some API calls to select the region you want to save and save that into a bitmap file.

It's a complicated process for a C Programmer. But it looks like that is what you'll have to do to accomplish your purpose: Check out this link for an example: http://msdn.microsoft.com/en-us/library/dd145186%28v=VS.85%29.aspx

You can check out the following site for some useful examples: http://allapi.mentalis.org/

this is looking to be quite the headache.. but if I can get it working it will save me time (screenshotting and editing out the extra stuff with paint is annoyingly time consuming) Thanks for the links I'll go over the information and hopefully I can find something in that api site to assist..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.