Results 1 to 8 of 8

Thread: integration help

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    May 2006
    Location
    Philadelphia, PA USA
    Posts
    11
    Thanks
    2
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11

    Question integration help

    i have an integration problem. There is a pre existing standalone program that I need to put a gui
    on top of. Its only one function that I need to use. The gui displays images that the program sends it.
    Qt Code:
    1. #include <Magick++.h>
    2. using namespace Magick;
    3.  
    4. void loadImage() {
    5. Image image;
    6.  
    7. image.read("image.gif");
    8. image.write("output.gif");
    9. }
    10.  
    11. int main() {
    12. loadImage();
    13.  
    14. return 0;
    15. }
    To copy to clipboard, switch view to plain text mode 

    this program already has its own makefile which is attached. How do I integrate my
    gui with this program
    Attached Files Attached Files

Similar Threads

  1. Help sought on console + GUI Integration...
    By mysearch05 in forum Newbie
    Replies: 7
    Last Post: 28th January 2006, 14:41
  2. Qt Integration
    By ToddAtWSU in forum Newbie
    Replies: 4
    Last Post: 23rd January 2006, 17:54

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.