CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9

Thread: About CImage ..

  1. #1
    Join Date
    Jan 2012
    Location
    India
    Posts
    193

    About CImage ..

    I am using Visual Studio 6.0 and my project is MFC SDI project.

    Can I use CImage class ?

    How can I include "atlimage.h" ?

    Thanking you ..

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: About CImage ..

    Most likely you'll need to install a later windows sdk. Not sure if that will work on VC6, though.

    Btw, have you search your system for atlimage.h? If it's on your system, you might just have to add it to the include path before including it in your project.

  3. #3
    Join Date
    Jan 2012
    Location
    India
    Posts
    193

    Cool Re: About CImage ..

    Thank you Arjay Sir ..

    I couldn't find the atlimage.h and other related files on the drive.

    I will need to change Visual Studio Version ..

    hmmm ...

  4. #4
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: About CImage ..

    I am using Visual Studio 6.0 and my project is MFC SDI project.

    Can I use CImage class ?
    AFAIK, no, you can't.
    Victor Nijegorodov

  5. #5
    Join Date
    Jan 2009
    Posts
    399

    Re: About CImage ..

    Quote Originally Posted by new_2012 View Post
    I am using Visual Studio 6.0 and my project is MFC SDI project.

    Can I use CImage class ?

    How can I include "atlimage.h" ?

    Thanking you ..
    I had the same problem in a past ... even if you get CImage source, this class had a lot of other #include classes that, the same, you haven't ... an alternative is to use an extended of CBitmap, CBitmapEx or something, or a CDib, or CxImage ... I din't work with CImage, but I think that there is no difference between them ... perhaps those hwo know them, they can tell you more ..
    Last edited by mesajflaviu; October 16th, 2013 at 06:31 AM.

  6. #6
    Join Date
    Nov 2000
    Location
    Voronezh, Russia
    Posts
    6,620

    Re: About CImage ..

    Quote Originally Posted by new_2012 View Post
    I am using Visual Studio 6.0 and my project is MFC SDI project.

    Can I use CImage class ?

    How can I include "atlimage.h" ?
    You can't. CImage is available starting with Visual Studio .NET 2003, afaik.
    Best regards,
    Igor

  7. #7
    Join Date
    Jul 2005
    Location
    Netherlands
    Posts
    2,042

    Re: About CImage ..

    Quote Originally Posted by mesajflaviu View Post
    an alternative is to use an extended of CBitmap, CBitmapEx or something, or a CDib, or CxImage ... I din't work with CImage, but I think that there is no difference between them ... perhaps those hwo know them, they can tell you more ..
    CxImage is a nice library that works well with MFC. Not sure if it supports VS6, but you don't want to work with that pre-standard dinosaur anyway.
    Cheers, D Drmmr

    Please put [code][/code] tags around your code to preserve indentation and make it more readable.

    As long as man ascribes to himself what is merely a posibility, he will not work for the attainment of it. - P. D. Ouspensky

  8. #8
    Join Date
    Jan 2012
    Location
    India
    Posts
    193

    Re: About CImage ..

    Thanks a lot to all of you .. I will learn more about CBitmapEX ..

  9. #9
    Join Date
    Jan 2012
    Location
    India
    Posts
    193

    Re: About CImage ..

    I will read about cxImage library ..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured