ImageEditor.UWP
                                
                                 ImageEditor.UWP copied to clipboard
                                
                                    ImageEditor.UWP copied to clipboard
                            
                            
                            
                        a tool to edit image
ImageEditor.UWP
a tool to edit image in uwp
Overview
this is a tool(libaray) for editing image in uwp. You can crop, rotate, select layout, apply image-filter, tune brightness and color, add stickers onto image, add tags such as location, drawing and etc.
can do
this tool has these features below:
- edit local and remote(net) images;
- select layout(1:1 3:4 4:3), select backcolor for canvas, rotate and crop the background image;
- tune brightness, degree of fuzzy and degree of sharpening;
- add stickers onto canvas(download templates from internet);
- apply a kind of filters(8 filters supported);
- add tags such as location, @friends, adn etc;
- draw on the canvas, you can select pen-size, pen-color(image) which you like;
- save the canvas as a BitmapImageobject, which you can directly use.
Notes:
- the sticker template is downloaded from network. you can define a json-format file and save on the internet, the tool download the file Automaticly and parse it.
- if you want to create an independent libaray, you just need create a libaray project and copy 'Controls', 'DrawingObjects', 'Images', 'Resources' and 'Tools' directories to the new project(change the namespace if you want)
the json file like below:
{
	"papers":
	[
	{
		"name":"",
		"image_url":"http://d.lanrentuku.com/down/png/1510/haizeiwang-png/notes.png",
		"des":""
	},
	{
		"name":"",
		"image_url":"http://d.lanrentuku.com/down/png/1510/haizeiwang-png/gallery.png",
		"des":""
	},
	{
		"name":"",
		"image_url":"http://d.lanrentuku.com/down/png/1510/haizeiwang-png/maps.png",
		"des":""
	}
	]
}
how to use
it's very simple to use this tool(libaray), you just need these code snippets below:
        private async void EditLocal_Tapped(object sender, TappedRoutedEventArgs e)
        {
            FileOpenPicker fo = new FileOpenPicker();
            fo.FileTypeFilter.Add(".png");
            fo.FileTypeFilter.Add(".jpg");
            fo.SuggestedStartLocation = PickerLocationId.Desktop;
            var f = await fo.PickSingleFileAsync();
            if (f != null)
            {
                // create instance and show it
                ImageEditorControl editor = new ImageEditorControl();
                editor.Show(f);
                //register event to get edited image
                editor.ImageEditedCompleted += (image_edited) =>
                {
                    image.Source = image_edited;
                };
            }
        }
some screenshots



