ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Emboss of a specifica area

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
Guido Posted - Feb 10 2013 : 00:56:46
Hi

how can i select a specific region of an image and process it with emboss to a false colors?

Bye

Guido
3   L A T E S T    R E P L I E S    (Newest First)
w2m Posted - Feb 10 2013 : 15:16:29
There are no specific methods supported by ImageEn that does embossed colored relief. You can do embossing that provides the relief but not by color. My guess is that you would have to fill the colors then apply an emboss.

This does the embossing, but not by color:
procedure TForm1.Button1Click(Sender: TObject);
const
  iFilter: TGraphFilter = (Values: ((2, 0, 0), (0, 1, 0), (0, 0, -2)); Divisor: 1); // Emboss
  iFilter2: TGraphFilter = (Values: ((-1, 0, 1), (-1, 1, 1), (-1, 0, 1)); Divisor: 1); // Emboss
begin
   ImageEnView1.Proc.ApplyFilter(iFilter);
   //ImageEnView1.Proc.ApplyFilter(iFilter2);
   ImageEnView.Update;
end;;

Remark ImageEnView1.Proc.ApplyFilter(iFilter) and unremark ImageEnView1.Proc.ApplyFilter(iFilter2) to see slightly different results.

William Miller
Email: w2m@frontiernet.net
EBook: http://www.imageen.com/ebook/
Apprehend: http://www.frontiernet.net/~w2m/index.html
Guido Posted - Feb 10 2013 : 13:46:23
emboss as relief ! i want to say with 'false color' ... deep zone red, less-deep zone orange... yellow .... white ok ???

go to google images and digit : 'relief false colors' and see images ..

bye

Guido
w2m Posted - Feb 10 2013 : 08:39:21
What do you mean emboss to a false color?

William Miller