본문 바로가기
반응형

Delphi84

[개발/delphi] Graphics32 v.1.7.1 for D4,5,6,7,2005 C5,6 델파이 컴포넌트delphi VCLGraphics32 v.1.7.1 for D4,5,6,7,2005 C5,6 http://sf.net/projects/graphics32http://www.graphics32.org/wiki/ February 25, 2005: Release of Graphics32 1.7.1. 개발환경 : D4,5,6,7,2005 C5,6 Graphics32 is a library designed for fast 32-bit graphics handling on Delphi and Kylix. Optimized for 32-bit pixel formats, it provides fast operations with pixels and graphic primitives, and in most.. 2016. 1. 16.
[개발/delphi] Graphics32 v1.8.1 for D5,6,7,2005, C5,6, BDS2006 델파이/Delphi VCL 컴포넌트 Graphics32 v1.8.1 for D5,6,7,2005, C5,6, BDS2006 http://sf.net/projects/graphics32http://graphics32.org/wiki/ Graphics32 is a set of functions, classes, components and controls designed for high-performance graphics programming. Being highly specialized for 32-bit pixel format, it provides fast operations with pixels and graphic primitives and in most cases Graphics32 conside.. 2016. 1. 16.
[개발/VCL] 델파이 영상처리 VCL Sobakcc Lab 델파이 영상처리 VCL Sobakcc Lab [2003.10.16 ver 0.1.10] SB_Lab 제작: 소백촌닭(sobakcc@nate.com) http://sb.pe.kr 내용: 영상처리 관련 컴포넌트 /**************************************************************************** [비고] 컴포넌트 상에 버그나 개선할 점이 있다면 홈페이지나 메일로 알려주시면 고맙겠습니다. /**************************************************************************** [VERSION HISTORY] ### 2003.10.16 ver 0.1.10 - Added: TSBImageEffect: Brigh.. 2016. 1. 16.
[개발/delphi] 델파이 클립보드 이미지를 jpeg으로 저장하기 아래의 과정을 거치는 것 외에 특별한 것은 없음..클립보드 이미지 데이터 -> 비트맵 -> JPEG uses 에 Jpeg, ClipBrd 추가해야 함. procedure SaveClipBoardPicture(ImgPath: String);var Btm: TBitmap; Jpg: TJpegImage; begin Btm:=TBitmap.Create; Jpg:=TJpegImage.Create; try // 1. 클립보드 -> 비트맵 Btm.Assign(ClipBoard); // 2. 비트맵 -> JPEG Jpg.Assign(Btm); // 압축퀄리티 설정 Jpg.CompressionQuality:=50; // 파일로 저장 Jpg.SaveToFile(ImgPath); finally FreeAndNil(Jpg);.. 2015. 9. 28.
[개발/델파이] TAdvStringGrid에 Combobox 사용하는 방법 [DELPHI TIP] TAdvStringGrid에 Combobox 사용하는 방법.. 두가지 방법이 있습니다. 셀을 수정할때 콤보박스나 기타 컨트롤이 표시되는방법과 첨부터 나와있는방법.... 두가지다 해보면요... GetEditorType 이벤트를 이용하시면 에디트하실 때만 보입니다. 1번컬럼을 그렇게 만들어보겠습니다. 그리고 2,3번은 radio버튼으로 만들어보겠습니다. 첨부터 보이실려면 Formcreate이벤트나 기타 함수에서 한번 만들어주시면됩니다. Formcreate에서 만들어보죠. 먼저 폼생성시 procedure TForm1.FormCreate(Sender: TObject); var i:integer; begin radopt1:=tstringlist.Create; radopt1.Add('Delp.. 2015. 8. 27.
[개발/델파이] 즐겨찾기 리스트를 리스트박스로 출력하기 즐겨찾기 리스트를 리스트박스로 출력하기 uses 에 ShlObj 추가. // 즐겨찾기를 TStrings 형태로 반환function GetIEFavorites(const favpath: String): TStrings;var Str: TStrings; SearchRec: TSearchRec; Path, Dir, FileName: String; Buffer: array [0..2047] of Char; Found: Integer; begin Str:=TStringList.Create; // 일단 .URL 파일을 뒤지고 Path:=FavPath+'\*.url'; Dir:=ExtractFilePath(Path); Found:=FindFirst(Path, faAnyFile, SearchRec); while Fou.. 2015. 8. 27.
반응형