游子日月长

笑渐不闻声渐悄,多情却被无情恼!

导航

上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 27 下一页

2017年2月7日 #

基于图像漫游:在有限区域内显示大图像

摘要: 在开发多媒体应用中,经常会遇到需要在有限区域内显示大图像的情况,有不少文章对此提出过解决方法,如通过调用Windows的API函数,直接读写内存等。这些方法有某些优点,但实现起来较为复杂,且易出错。笔者在实践中通过仔细摸索,利用Delphi的强大的面向对象可视化开发环境开发了一种交互式图像漫游方法。 阅读全文

posted @ 2017-02-07 12:49 游子日月长 阅读(517) 评论(0) 推荐(0) 编辑

快速图象处理

摘要: P := Bitmap.Scanline[y]; x := 0; while x <= Bitmap.width*3 -1 do begin P[x] := 200; //Blue P[x+1] := 200; //Green P[x+2] := 200; //Red inc(x,3) end; 阅读全文

posted @ 2017-02-07 12:47 游子日月长 阅读(118) 评论(0) 推荐(0) 编辑

创建位图

摘要: One way to create a bitmap from a pixel array is to use the Windows API function CreateDiBitmap(). This will allow you to use one of many device independent bitmap formats that Windows uses to sto... 阅读全文

posted @ 2017-02-07 12:45 游子日月长 阅读(213) 评论(0) 推荐(0) 编辑

TColor转化为字符串

摘要: procedure TForm1.Button1Click(Sender: TObject); begin Memo1.Lines.Add(ColorToString(clRed)); Memo1.Lines.Add(IntToStr(StringToColor('clRed'))); end; 阅读全文

posted @ 2017-02-07 12:39 游子日月长 阅读(130) 评论(0) 推荐(0) 编辑

改变图象调色板

摘要: var Bitmap: TBitmap; begin Bitmap:=TBitmap.Create; Bitmap.LoadfromFile({'Whatever.bmp'}); With Image2.Picture.bitmap do Begin Width:=Bitmap.Width; height:=Bitmap.Height; Palette:=Bitmap.... 阅读全文

posted @ 2017-02-07 12:37 游子日月长 阅读(128) 评论(0) 推荐(0) 编辑

创建调色板

摘要: procedure TForm1.Button1Click(Sender: TObject); var lpPalette : PLogPalette; hPal : hPalette; i : integer; begin {Allocate the memory used by the palette} GetMem(lpPalette, sizeof(... 阅读全文

posted @ 2017-02-07 12:34 游子日月长 阅读(160) 评论(0) 推荐(0) 编辑

在MetaFile里放图片

摘要: procedure TForm1.Button1Click(Sender: TObject); var m : TmetaFile; mc : TmetaFileCanvas; b : tbitmap; begin m := TMetaFile.Create; b := TBitmap.create; b.LoadFromFile('C:\SomePath\Som... 阅读全文

posted @ 2017-02-07 12:33 游子日月长 阅读(180) 评论(0) 推荐(0) 编辑

取出资源文件中的bitmap,并将其保存到TMemoryStream中,从资源里载入图象而不丢失调色板

摘要: 从资源里载入图象而不丢失调色板 procedure loadgraphic(naam:string);var { I've moved these in here, so they exist only during the lifetime of the procedure. } HResInfo 阅读全文

posted @ 2017-02-07 12:28 游子日月长 阅读(213) 评论(0) 推荐(0) 编辑

Canvas.Pixels 实例:判断一点是否在区域中

摘要: The Windows 3.1 and Windows 95 GDI heap is limited in regards to scan converting large and complex regions such as Ellipses, Polygons, and PolyPolygon 阅读全文

posted @ 2017-02-07 12:21 游子日月长 阅读(265) 评论(0) 推荐(0) 编辑

2017年2月6日 #

HTML标签----图文详解

摘要: 国庆节快乐,还在加班的童鞋,良辰必有重谢! 本文主要内容 头标签 排版标签:<p> <br> <hr> <center> <pre> <div> <span> 字体标记:<h1> <font> <b> <u> <sup> <sub> 超链接 图片标签 一、HTML的介绍 1、HTML的概述: htm 阅读全文

posted @ 2017-02-06 14:16 游子日月长 阅读(503) 评论(0) 推荐(0) 编辑

上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 27 下一页