home | Download | Guestbook | Sitemap
codelookerDownloadOther classesDelphi VCL
Search:
Color-Lines.ZIP
  • Classification:Other classes - Delphi VCL
  • Development Tool:Delphi
  • Sise:7.00 KB
  • Upload time:2011/5/30 13:11:10
  • Uploader:NIMRAH
  • Download Statistics:
Description
const maxWidth = 200 maxHeight = 150 var thumbnail : TBitmap thumbRect : TRect begin thumbnail := Form1.GetFormImage try thumbRect.Left := 0 thumbRect.Top := 0 //proportional resize if thumbnail.Width > thumbnail.Height then begin thumbRect.Right := maxWidth thumbRect.Bottom := (maxWidth * thumbnail.Height) div thumbnail.Width end else begin thumbRect.Bottom := maxHeight thumbRect.Right := (maxHeight * thumbnail.Width) div thumbnail.Height end thumbnail.Canvas.StretchDraw(thumbRect, thumbnail) //resize image thumbnail.Width := thumbRect.Right thumbnail.Height := thumbRect.Bottom //display in a TImage control Image1.Picture.Assign(thumbnail) finally thumbnail.Free end end -const maxWidth = 200 maxHeight = 150 var thumbnail : TBitmap thumbRect : TRect begin thumbnail := Form1.GetFormImage try thumbRect.Left := 0 thumbRect.Top := 0 //proportional resize if thumbnail.Width > thumbnail.Height then begin thumbRect.Right := maxWidth thumbRect.Bottom := (maxWidth * thumbnail.Height) div thumbnail.Width end else begin thumbRect.Bottom := maxHeight thumbRect.Right := (maxHeight * thumbnail.Width) div thumbnail.Height end thumbnail.Canvas.StretchDraw(thumbRect, thumbnail) //resize image thumbnail.Width := thumbRect.Right thumbnail.Height := thumbRect.Bottom //display in a TImage control Image1.Picture.Assign(thumbnail) finally thumbnail.Free end end




File list:
BresenhamLibrary.PAS
ColorLines.cfg
ColorLines.dof
ColorLines.dpr
ColorLines.res
ScreenColorLines.dfm
ScreenColorLines.pas
SpectraLibrary.pas
If you are a member, Log in. If you are not a member, Please register
Related source code
[color split rgb channel] - this sources code is showing spit a image to rgb channel
[colors] - manage colors
[Color_Image_Fusion] - fusion des images couleurs code matlab complet
[Color Detection] - Color detection by using Matlab
[Color_with_touch] - this code used to calibrate the touch of tcb8000c TFT screen with pic 18f4620 micro controller
[vertexcoloring] - VERTEX COLORING ALGORITHM SIMULATION WITH INPUT FILES
[316C04-colormixer] - a funny color mixer and personalizable
[Color-image-compresion-dct-transform...] - CODE FOR COLOR IMAGE COMPRESSION USING QUANTIZATION ALORITHM. VECTOR QUANTIZATION.
[Color-Reproduction-from-Noisy-CFA-Da...] - Color Reproduction from Noisy CFA Data of Single Sensor Digital Cameras
[Color-Watermarking] - This code is one application of visible watermarking.
Download Address
download DownLoad
Comments: Don't forget to comment after downloading! Comment...
About - Advertise - Sitemap