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
 Blur 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
exchangeviews Posted - May 12 2015 : 01:59:39
Dear All,

Is there a way to make the portion of image blur. Something using mouse(brush) move over image or a new layer over background layer to make background blur as shown in image below:

3   L A T E S T    R E P L I E S    (Newest First)
exchangeviews Posted - May 12 2015 : 12:43:27
Thanks Bill.

Look at the brush Demo, you will see that a circle/rectangle is used to paint the image where mouse moves. I was trying to blur the portion of image where mouse moves over image.
w2m Posted - May 12 2015 : 12:07:05
Your code looks ok to me. What do you mean by "Mouse brush"?

Bill Miller
Adirondack Software & Graphics
Email: w2m@hughes.net
EBook: http://www.imageen.com/ebook/
Custom Commercial ImageEn Development
exchangeviews Posted - May 12 2015 : 03:33:55
I got the solution but not sure if it is ok.

ImageEnVect1.LayersCreateFromSelection;
ImageEnVect1.Proc.Blur(2);
ImageEnVect1.DeSelect;
ImageEnVect1.LayersMerge(0,1);


Is there any better way using mouse brush?