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

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
Forum membership is Free!  Click Join to sign-up
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Is it possible do a lomo effect use imageen?
 New Topic  Reply to Topic
Author Previous Topic Topic Next Topic  

gary

3 Posts

Posted - Jun 19 2011 :  07:19:05  Show Profile  Reply
Is it possible do a lomo effect use imageen?

fab

1310 Posts

Posted - Jun 19 2011 :  08:27:20  Show Profile  Reply
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');



Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
Jump To: