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
 Tselection

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
kelong Posted - Jul 03 2013 : 04:04:02
ImageEN how to achieve the figure of the selection do?

5   L A T E S T    R E P L I E S    (Newest First)
w2m Posted - Jul 09 2013 : 06:06:00
I thought you were discussing selections... if you add layers and load the layer with an image you can move the layers around just like you can with Graphics32.

{ Allow selection of transparent layers
If you do not add this then you can only move the layer by clicking on a pixel that is not transparent }
ImageEnView1.SelectionOptions := ImageEnView1.SelectionOptions + [iesoSelectTranspLayers];

Add a transparent layer:

  iLayer := ImageEnView1.LayersAdd;
  ImageEnView1.Layers[iLayer].Bitmap.AlphaChannel.Fill(0);
  ImageEnView1.Layers[iLayer].Name := AnsiString('Layer ' + IntToStr(ImageEnView1.LayersCount -
    1));
  ImageEnView1.CurrentLayer.VisibleBox := True;
  ImageEnView1.CurrentLayer.Selectable := True;
  ImageEnView1.LayersDrawBox := True;

To load an image into a selected (currentlayer)layer:
ImageEnView1.IO.LoadFromFile(OpenPictureDialog1.FileName);

To move and resize a layer:
ImageEnView1.MouseInteract := [miMoveLayers, miResizeLayers];


289.08 KB
William Miller
Adirondack Software & Graphics
Email: w2m@frontiernet.net
EBook: http://www.imageen.com/ebook/
Apprehend: http://www.frontiernet.net/~w2m/index.html
kelong Posted - Jul 08 2013 : 21:29:28
Figure is Graphics32 vcl achieve out of Layers. ImageEnview energy to achieve it anyway?



I LOVE IMAGEEN
w2m Posted - Jul 08 2013 : 09:35:25
ImageEn selections only supports one selection, so this is not possible.

William Miller
Adirondack Software & Graphics
Email: w2m@frontiernet.net
EBook: http://www.imageen.com/ebook/
Apprehend: http://www.frontiernet.net/~w2m/index.html
kelong Posted - Jul 08 2013 : 08:30:25
it here.


I LOVE IMAGEEN
xequte Posted - Jul 03 2013 : 13:18:23
Hi

This image link does not seem to be valid.



Nigel
Xequte Software
www.xequte.com
nigel@xequte.com