Application179 이미지 리사이즈/조작 시 부드럽게 렌더링 하기 간단한 팁.C#에서 GDI+의 Graphics 오브젝트를 사용해서 렌더링을 할 때 사이즈 변경 등의 변형이 일어나면 들쭉날쭉한 도트가 심해지는 현상이 있는데요, 간단하게 InterpolationMode를 설정하여 렌더링 방식을 선택할 수 있네요.Image img = Image.FromFile("a.jpg");using (Bitmap bitmap = new Bitmap(img.Width, img.Height)){using (Graphics g = Graphics.FromImage(bitmap)){ // 드로잉 모드 g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic; //.. 2008. 12. 5. 웹 이미지 리소스 가져오기 using (WebClient wc = new WebClient()) { byte[] data = wc.DownloadData(imgUrl); using (MemoryStream ms = new MemoryStream(data)) using (Image img = Image.FromStream(ms)) using (Graphics g = this.CreateGraphics()) { g.DrawImage(img, 0, 0); } } 출처 : http://blog.jeidee.net/272 2008. 12. 5. 웹서비스 .net compact framework 2,0 사용시 웹참조 동적으로 하기 출처 : http://thinkinginhands.tistory.com/14 .net cf2.0에서 웹 참조를 동적으로 하기 위해서 reference.cs 파일에 웹참조 클래스에서 아래 그림과 같이 생성자를 하나 더 만들어 url을 동적으로 생성해 주었다. 위 그림의 빨간색 박스가 추가한 생성자 이다. url은 config 파일을 만들어 동적으로 수정할 수 있도록 하였으면 위 생성자를 호출하는 부분은 아래 그림과 같다. wsFile 은 웹참조 주소가 저장되어 있는 config 파일이며, setWsAddr()은 이 주소를 동적으로 셋팅해 주는 부분이다. 2008. 12. 3. string.Split sting aaa= "1|2|3|"; string[] arrayStr = aaa.Spllit(new Char[] {'|'}); string bbb = arrayStr[0]; 2008. 12. 2. 이전 1 ··· 9 10 11 12 13 14 15 ··· 45 다음