Changeset 538 for trunk/Packages
- Timestamp:
- Apr 16, 2024, 10:57:39 AM (7 months ago)
- Location:
- trunk/Packages
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/CevoComponents/ScreenTools.pas
r536 r538 549 549 DataPixel.PixelB := 0; 550 550 end else begin 551 MaskPixel.PixelR := $00;552 MaskPixel.PixelG := $00;553 MaskPixel.PixelB := $00;551 MaskPixel.PixelR := 0; 552 MaskPixel.PixelG := 0; 553 MaskPixel.PixelB := 0; 554 554 end; 555 555 DataPixel.NextPixel; -
trunk/Packages/DpiControls/Dpi.Common.pas
r523 r538 11 11 12 12 function BitBlt(DestDC: HDC; X, Y, Width, Height: Integer; SrcDC: HDC; XSrc, 13 13 YSrc: Integer; Rop: DWORD = SRCCOPY): Boolean; 14 14 function BitBltCanvas(Dest: TCanvas; X, Y, Width, Height: Integer; Src: TCanvas; 15 XSrc, YSrc: Integer; Rop: DWORD = SRCCOPY): Boolean; 15 XSrc, YSrc: Integer; Rop: DWORD = SRCCOPY): Boolean; 16 function BitBltBitmap(Dest: TBitmap; X, Y, Width, Height: Integer; Src: TBitmap; 17 XSrc, YSrc: Integer; Rop: DWORD = SRCCOPY): Boolean; 16 18 function CreateRectRgn(X1, Y1, X2, Y2: Integer): HRGN; 17 19 {$IFDEF WINDOWS} … … 39 41 resourcestring 40 42 SNotImplemented = 'Not implemented'; 43 SUnsupportedPaintOperationType = 'Unsupported paint operation type'; 41 44 42 45 43 46 implementation 47 48 uses 49 NativePixelPointer; 44 50 45 51 function BitBltCanvas(Dest: TCanvas; X, Y, Width, Height: Integer; … … 47 53 begin 48 54 Result := BitBlt(Dest.Handle, X, Y, Width, Height, Src.Handle, XSrc, YSrc, Rop); 55 end; 56 57 function BitBltBitmap(Dest: TBitmap; X, Y, Width, Height: Integer; 58 Src: TBitmap; XSrc, YSrc: Integer; Rop: DWORD): Boolean; 59 var 60 SrcPixel: TPixelPointer; 61 DstPixel: TPixelPointer; 62 DstWidth, DstHeight: Integer; 63 SrcWidth, SrcHeight: Integer; 64 XX, YY: Integer; 65 DstPixelX, DstPixelY: Integer; 66 XNative, YNative: Integer; 67 DstPixelWidth, DstPixelHeight: Integer; 68 begin 69 if Frac(ScreenInfo.Dpi / 96) = 0 then 70 begin 71 // Use faster non-fractional scaling 72 Result := BitBlt(Dest.Canvas.Handle, X, Y, Width, Height, Src.Canvas.Handle, XSrc, YSrc, Rop); 73 Exit; 74 end; 75 76 if X < 0 then begin 77 Width := Width + X; 78 XSrc := XSrc - X; 79 X := 0; 80 end; 81 if Y < 0 then begin 82 Height := Height + Y; 83 YSrc := YSrc - Y; 84 Y := 0; 85 end; 86 if (X + Width) > Dest.Width then begin 87 Width := Dest.Width - X; 88 end; 89 if (Y + Height) > Dest.Height then begin 90 Height := Dest.Height - Y; 91 end; 92 93 DstWidth := ScaleToNativeDist(X, Width); 94 DstHeight := ScaleToNativeDist(Y, Height); 95 SrcWidth := ScaleToNativeDist(XSrc, Width); 96 SrcHeight := ScaleToNativeDist(YSrc, Height); 97 XNative := ScaleToNative(X); 98 YNative := ScaleToNative(Y); 99 100 Dest.BeginUpdate; 101 SrcPixel := TPixelPointer.Create(Src.NativeBitmap); 102 DstPixel := TPixelPointer.Create(Dest.NativeBitmap); 103 for YY := 0 to Height - 1 do begin 104 DstPixelHeight := ScaleToNative(Y + YY + 1) - ScaleToNative(Y + YY); 105 for DstPixelY := 0 to DstPixelHeight - 1 do begin 106 for XX := 0 to Width - 1 do begin 107 SrcPixel.SetXY(ScaleToNative(XSrc + XX), ScaleToNative(YSrc + YY)); 108 DstPixel.SetXY(ScaleToNative(X + XX), ScaleToNative(Y + YY) + DstPixelY); 109 DstPixelWidth := ScaleToNative(X + XX + 1) - ScaleToNative(X + XX); 110 for DstPixelX := 0 to DstPixelWidth - 1 do begin 111 {$IFDEF DEBUG} 112 if SrcPixel.PosValid and DstPixel.PosValid then 113 {$ENDIF} 114 if Rop = SRCCOPY then begin 115 DstPixel.PixelB := SrcPixel.PixelB; 116 DstPixel.PixelG := SrcPixel.PixelG; 117 DstPixel.PixelR := SrcPixel.PixelR; 118 end else 119 if Rop = SRCPAINT then begin 120 DstPixel.PixelB := SrcPixel.PixelB or DstPixel.PixelB; 121 DstPixel.PixelG := SrcPixel.PixelG or DstPixel.PixelG; 122 DstPixel.PixelR := SrcPixel.PixelR or DstPixel.PixelR; 123 end else 124 if Rop = SRCAND then begin 125 DstPixel.PixelB := SrcPixel.PixelB and DstPixel.PixelB; 126 DstPixel.PixelG := SrcPixel.PixelG and DstPixel.PixelG; 127 DstPixel.PixelR := SrcPixel.PixelR and DstPixel.PixelR; 128 end else 129 if Rop = DSTINVERT then begin 130 DstPixel.PixelB := not DstPixel.PixelB; 131 DstPixel.PixelG := not DstPixel.PixelG; 132 DstPixel.PixelR := not DstPixel.PixelR; 133 end else begin 134 raise Exception.Create(SUnsupportedPaintOperationType); 135 end; 136 DstPixel.NextPixel; 137 end; 138 end; 139 //DstPixel.NextLine; 140 end; 141 end; 142 Dest.EndUpdate; 143 Result := True; 49 144 end; 50 145 … … 95 190 function ScaleToNative(Value: Integer): Integer; 96 191 begin 97 Result := Round(Value * ScreenInfo.Dpi / 96);192 Result := Ceil(Value * ScreenInfo.Dpi / 96); 98 193 end; 99 194 -
trunk/Packages/DpiControls/Dpi.Graphics.pas
r506 r538 692 692 SrcPtr: TPixelPointer; 693 693 DstPtr: TPixelPointer; 694 xx, yy: Integer; 695 SrcX, SrcY: Integer; 696 DstX, DstY: Integer; 697 DstWidth, DstHeight: Integer; 698 begin 699 //Dst.Canvas.StretchDraw(Rect(0, 0, ScaleToNative(Dst.Width), ScaleToNative(Dst.Height)), Src); 700 //Exit; 694 XX, YY: Integer; 695 DstPixelX, DstPixelY: Integer; 696 DstPixelWidth, DstPixelHeight: Integer; 697 begin 701 698 Dst.BeginUpdate; 702 699 SrcPtr := TPixelPointer.Create(Src, 0, 0); 703 700 DstPtr := TPixelPointer.Create(Dst, 0, 0); 704 {for yy := 0 to Dst.Height - 1 do begin 705 for xx := 0 to Dst.Width - 1 do begin 706 SrcPtr.SetXY(Min(ScaleFromNative(xx), Src.Width - 1), 707 Min(ScaleFromNative(yy), Src.Height - 1)); 708 DstPtr.PixelB := SrcPtr.PixelB; 709 DstPtr.PixelG := SrcPtr.PixelG; 710 DstPtr.PixelR := SrcPtr.PixelR; 711 DstPtr.NextPixel; 712 end; 713 DstPtr.NextLine; 714 end; 715 } 716 for SrcY := 0 to Src.Height - 1 do begin 717 DstHeight := ScaleToNative(SrcY + 1) - ScaleToNative(SrcY); 718 for DstY := 0 to DstHeight - 1 do begin 719 for SrcX := 0 to Src.Width - 1 do begin 720 DstWidth := ScaleToNative(SrcX + 1) - ScaleToNative(SrcX); 721 for DstX := 0 to DstWidth - 1 do begin 701 for YY := 0 to Src.Height - 1 do begin 702 DstPixelHeight := ScaleToNative(YY + 1) - ScaleToNative(YY); 703 for DstPixelY := 0 to DstPixelHeight - 1 do begin 704 for XX := 0 to Src.Width - 1 do begin 705 DstPixelWidth := ScaleToNative(XX + 1) - ScaleToNative(XX); 706 for DstPixelX := 0 to DstPixelWidth - 1 do begin 722 707 DstPtr.PixelB := SrcPtr.PixelB; 723 708 DstPtr.PixelG := SrcPtr.PixelG; -
trunk/Packages/DpiControls/Dpi.PixelPointer.pas
r507 r538 93 93 94 94 resourcestring 95 SOutOfRange = 'Pixel pointer out of range [X: %d . Y: %d]';95 SOutOfRange = 'Pixel pointer out of range [X: %d, Y: %d, Width: %d, Height: %d]'; 96 96 SWrongBitmapSize = 'Wrong bitmap size [width: %d, height: %d]'; 97 97 … … 160 160 X := B - Y * BytesPerLine; 161 161 X := Floor(X / BytesPerPixel); 162 raise Exception.Create(Format(SOutOfRange, [X, Y ]));162 raise Exception.Create(Format(SOutOfRange, [X, Y, Width, Height])); 163 163 end; 164 164 {$ENDIF} -
trunk/Packages/DpiControls/NativePixelPointer.pas
r506 r538 63 63 procedure SetX(X: Integer); inline; // Set horizontal pixel position relative to base 64 64 procedure CheckRange; inline; // Check if current pixel position is not out of range 65 function PosValid: Boolean; 65 66 class function Create(Bitmap: TRasterImage; BaseX: Integer = 0; BaseY: Integer = 0): TPixelPointer; static; 66 67 property PixelARGB: TColor32 read GetPixelARGB write SetPixelARGB; … … 93 94 94 95 resourcestring 95 SOutOfRange = 'Pixel pointer out of range [X: %d . Y: %d]';96 SOutOfRange = 'Pixel pointer out of range [X: %d, Y: %d, Width: %d, Height: %d]'; 96 97 SWrongBitmapSize = 'Wrong bitmap size [width: %d, height: %d]'; 97 98 … … 159 160 X := X - Y * BytesPerLine; 160 161 X := Floor(X / BytesPerPixel); 161 raise Exception.Create(Format(SOutOfRange, [X, Y ]));162 raise Exception.Create(Format(SOutOfRange, [X, Y, Width, Height])); 162 163 end; 163 164 {$ENDIF} 165 end; 166 167 function TPixelPointer.PosValid: Boolean; 168 begin 169 Result := not ((PByte(Pixel) < PByte(Data)) or 170 (PByte(Pixel) >= PByte(Data) + Height * BytesPerLine)); 164 171 end; 165 172
Note:
See TracChangeset
for help on using the changeset viewer.