Results 1 to 3 of 3

Thread: Pictures, pictures...

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 1999
    Location
    Manila, Philippines
    Posts
    59
    Hi, I have a very simple problem here that i just can't solve.


    I need to edit a picture and save it to a bitmap file. I'm using a picture box and i already able to draw by using the line, bitblt and circle. The problem is that when i save the picture, my drawings are gone. Even if i just use picture1.picture = picture2.picture, the drawings i made is not copied from picture1 to picture2.

    Well, i must admit it. I'm dumb in grapics development. I'm a database application developer and not a graphics guru. I know what i have done is wrong and I'm asking you guys to please help me on this.

    Thank you very much!
    Mikey
    A/P
    Using VB6 SP4 Enterprise Ed.

  2. #2
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    By drawing on your picture, youre actually drawing to the image, it will erase as soon as you cls it.

    Put
    Code:
    picture1.picture=picture1.image
    Between your drawing methods and saving method
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  3. #3

    Thread Starter
    Member
    Join Date
    Nov 1999
    Location
    Manila, Philippines
    Posts
    59
    i see. Well, thank you very much!
    Mikey
    A/P
    Using VB6 SP4 Enterprise Ed.

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