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
 Eraser Part Image

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
khorsandreza Posted - Sep 10 2017 : 07:21:03
Hi All
I cut the image around using the [ImageEnView1] tool. But sometimes it's part of the background!
I need to remove the remaining parts from the eraser tool.
please help .
Thanks

Notice the attached image


2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Sep 10 2017 : 19:33:15
Hi

If this is a green screen image then you really should be using the ChomaKey functionality:



You can try it at:

https://www.imageen.com/demos/#ImageEditing


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
w2m Posted - Sep 10 2017 : 11:26:11
If the background is all the same color then try this:
var
  iRGB: TRGB;
begin
  ImageEnView.EnableAlphaChannel := True;
  iRGB := ImageEnView.IEBitmap.Pixels[0, ImageEnView.IEBitmap.Height - 1];
  ImageEnView.Proc.SetTransparentColors(iRGB, iRGB, 0);
  ImageEnView.IO.Params.BitsPerSample := 8;
  ImageEnView.IO.Params.SamplesPerPixel := 4;
  ImageEnView.Update;
end;

Bill Miller
Adirondack Software & Graphics
Email: w2m@hughes.net
EBook: http://www.imageen.com/ebook/
Custom Commercial ImageEn Development