Click here to Skip to main content
Sign Up to vote bad
good
Hi,
I am developing a web application which are based on image processing. I am not able to fix one issue in my application. I want to draw border on transparent images. i.e for a round transparent image I need to draw border round shaped. Need to detect whole image path and draw border based on that. I used something like
 
var borderColor = Color.White;
 
            var newSize = new Size(
                original.Width + borderWidth * 2,
                original.Height + borderWidth * 2);
 
            var img = new Bitmap(newSize.Width, newSize.Height);
            var g = Graphics.FromImage(img);
 
            g.Clear(borderColor);
            g.DrawImage(original, new Point(borderWidth, borderWidth));
            g.Dispose();
 
but this is not working based on transparent image.
Posted 30 Aug '12 - 18:52


This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 498
1 Arun Vasu 275
2 Maciej Los 273
3 Mahesh Bailwal 264
4 Aarti Meswania 175
0 Sergey Alexandrovich Kryukov 9,660
1 OriginalGriff 7,329
2 CPallini 3,968
3 Rohan Leuva 3,339
4 Maciej Los 2,851


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 31 Aug 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid