VoyForums
[ Show ]
Support VoyForums
[ Shrink ]
VoyForums Announcement: Programming and providing support for this service has been a labor of love since 1997. We are one of the few services online who values our users' privacy, and have never sold your information. We have even fought hard to defend your privacy in legal cases; however, we've done it with almost no financial support -- paying out of pocket to continue providing the service. Due to the issues imposed on us by advertisers, we also stopped hosting most ads on the forums many years ago. We hope you appreciate our efforts.

Show your support by donating any amount. (Note: We are still technically a for-profit company, so your contribution is not tax-deductible.) PayPal Acct: Feedback:

Donate to VoyForums (PayPal):

Login ] [ Contact Forum Admin ] [ Main index ] [ Post a new message ] [ Search | Check update time | Archives: 12345678910 ]


[ Next Thread | Previous Thread | Next Message | Previous Message ]

Date Posted: 12:08:49 02/28/06 Tue
Author: Dima
Subject: Re: ConvertToGray Need convert to Brown (sepia)
In reply to: Lane 's message, "ConvertToGray Need convert to Brown (sepia)" on 15:46:55 08/30/05 Tue

TSeriaTransform = class(TImageTransform)
public
procedure Apply( const DibGraphic : TDibGraphic ); override;

procedure ApplyOnDest( const Source : TDibGraphic;
const Dest : TDibGraphic );


end;
procedure TSeriaTransform.Apply( const DibGraphic : TDibGraphic );
var
color:Trgb;
h,w:integer;
gray:integer;
b:byte;
begin
FLastPercent := -1;
FLastPercent := DoProgress(Self, FOnProgress, 0, 0, 100, FLastPercent);
for h := 0 to DibGraphic.height -1 do
begin
FLastPercent := DoProgress(Self, FOnProgress, h, 0, DibGraphic.height-1, FLastPercent);
for w := 0 to DibGraphic.width-1 do
begin
color:=DibGraphic.rgb[w,h];
gray:= (color.Red+color.Green+color.Blue)div 3 ; //CONVERT TO GRAY
color.Blue:=gray;
color.Green:=gray+20;
color.Red:=gray+40;
if color.Red <= ((39)) then
color.Red:=255;
if color.Green <= (19) then
color.Green:=255;
DibGraphic.rgb[w,h] :=color;
end;
end;
FLastPercent := DoProgress(Self, FOnProgress, 100, 0, 100, FLastPercent);
end;
procedure TSeriaTransform.ApplyOnDest( const Source : TDibGraphic;
const Dest : TDibGraphic );
begin
Dest.Assign(Source);

Apply(Dest);
end;
>TConvertToGrayTransform
>
>This converts to white and Black,
>I want to convert to white and Brown
>to make the picture to look antique.
>
>I beleve it is called sepia.
>
>How can I do this with the library???

[ Next Thread | Previous Thread | Next Message | Previous Message ]


Replies:


Post a message:
This forum requires an account to post.
[ Create Account ]
[ Login ]
[ Contact Forum Admin ]


Forum timezone: GMT-5
VF Version: 3.00b, ConfDB:
Before posting please read our privacy policy.
VoyForums(tm) is a Free Service from Voyager Info-Systems.
Copyright © 1998-2019 Voyager Info-Systems. All Rights Reserved.