|
-
Dec 14th, 2002, 08:09 PM
#1
Thread Starter
Addicted Member
Film Negatives
I dunno if this is in the right forum. Sorry if it isn't.
I'm trying to make a VB program that develops negatives. I've scanned the negatives and stored them as bitmaps. I've tried inverting the colors but that doesn't work. Is it possible to apply some algorithm to the colors, or is there no substitution for the chemicals used in developing?
Thanks
-George
-
Dec 14th, 2002, 08:22 PM
#2
Fanatic Member
You need a special scanner. Normal scanners bounce the light off, but for nagitives the light needs to pass though the image.
-
Dec 15th, 2002, 01:54 AM
#3
Yes you need a "dias" scanner to scan negatives..
-
Dec 15th, 2002, 07:44 AM
#4
Frenzied Member
To invert colors in VB:
Add a picturebox and set its property autoredraw to true and scalemode to 3.
Add the picture you want to invert.
Create a button.
in Command1_Click add
VB Code:
Dim X As Long
Dim Y As Long
Picture1.DrawMode = 6
For X = 0 To Picture1.ScaleWidth
For Y = 0 To Picture1.ScaleHeight
Picture1.PSet (X, Y), Picture1.Point(X, Y)
Next Y
Next X
Picture1.DrawMode = 13
-
Dec 15th, 2002, 02:04 PM
#5
Fanatic Member
cyborg, read the question a little more carefully. If you know much about how printing nagitives and a regular scanner works, you would see why the inverting colors wouldn't work.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|