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
 Is it possible do a lomo effect use imageen?

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
gary Posted - Jun 19 2011 : 07:19:05
Is it possible do a lomo effect use imageen?
1   L A T E S T    R E P L I E S    (Newest First)
fab Posted - Jun 19 2011 : 08:27:20
Not directly. ImageEn provides a set of tools that you can use to compose other effects, and you surely can compose a lomo-like effect.
For example you could merge two layers using a blend operation: one layer will be the image to process and another could be a painted ellipse to make the border more darken:

Note: intensities and smooth are deliberately increased to show the effect.


  ImageEnView1.IO.LoadFromFile('hongkong.jpg');
  ImageEnView1.LayersAdd();
  ImageEnView1.IEBitmap.Fill($303030);
  ImageEnView1.IEBitmap.Canvas.Brush.Style := bsSolid;
  ImageEnView1.IEBitmap.Canvas.Brush.Color := $E0E0E0;
  ImageEnView1.IEBitmap.Canvas.Ellipse(0, 0, 
                  ImageEnView1.IEBitmap.Width, ImageEnView1.IEBitmap.Height);
  ImageEnView1.Proc.Blur(16);
  ImageEnView1.Layers[1].Operation := ielXFader;
  ImageEnView1.LayersMerge(0, 1);
  ImageEnView1.IO.SaveToFile('hongkong_2.jpg');