Welcome![Sign In][Sign Up]
Location:
Search - html image

Search list

[WEB Codehtml

Description: HTML 语言教程:目录 --- --- --- --- --- --- --- -- 新的特色 *** HTML 标记(Tag)的索引(Index) 页面(Page)  字体(Font)  文字布局(Text Style)  图象(Image)  表单(Form) 表格(Table)  表格进阶(Advanced)  多窗口页面(Frames) 会移动的文字(Marquee)  多媒体页面(Alternative Inline Elements) 详细目录 页面 文件结构 语言字符集信息 背景色彩和文字色彩 页面空白 链接 开新窗口 标尺线 字体 标题 字号 物理字体 逻辑字体 颜色 客户端字体 字符实体 文字布局 行的控制 文字的对齐 文字的分区 列表 定制列表元素 预格式化文本 空白 多列文本 图象 基本语法 和文字的对齐 在页面中的对齐/布局 边框 客户端图象映射图 表单 基本语法 文字和密码 复选和单选 图象坐标 隐藏表单的元素 列表框 文本区域 表格 基本语法 跨多行、多列的表元 尺寸设置 文字的对齐/布局 在页面中的对齐/布局 标题 表格进阶 色彩 分组显示 边框 分隔线 多窗口页面 基本
Platform: | Size: 63389 | Author: lan de | Hits:

[Windows Developimage insertor

Description: inserts any number of images present in a directory into the HTML. It s gui is very cooooooool
Platform: | Size: 4310 | Author: 王逸翔 | Hits:

[xml-soap-webservicehtml放大代码

Description: 图片放大源代码,你可以利用此代码对光栅图和矢量图进行任意的放大和缩小,达到意想不到的效果。-image to enlarge the source code, you can use this code to vector and raster map adheres to the pan and zoom to reach an unexpected effect.
Platform: | Size: 1845 | Author: 123 | Hits:

[Delphi VCL带附件及Html显示的邮件发送类

Description:

unit UnitSendMail;

interface

uses
  Windows, SysUtils, Classes,StdCtrls, ExtCtrls, ComCtrls, Dialogs,
  IdMessage, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
  IdExplicitTLSClientServerBase,IdMessageClient, IdSMTPBase, IdSMTP, IdText,
  IDAttachmentFile;

function SendEMail(SenderName, SenderAddress: PChar;
    Receivename, ReceiveAddress: PChar; MailSubject, MailContent: PChar;
    JpgFileName: PChar; SendType: Integer; PicID: PChar; IsCustom: Boolean;Attachment:PChar): Boolean; stdcall;
function ConnectMailServer(Host, UserName, Password: PChar;
    Port: Integer): Boolean; stdcall;
procedure DisconnectMail; stdcall;

type
  TSendMailObj = class
  private
    FHost: String;
    FPort: Integer;
    FUserName: String;
    FPassword: String;
    ASmtp: TIdSMTP;
  public
    property Host: string read FHost write FHost;
    property Port: Integer read FPort write FPort;
    property UserName: String read FUserName write FUserName;
    property Password: String read FPassword write FPassword;
    constructor Create;
    function ConnectServer: Boolean;
    function SendEMail(SenderName, SenderAddress: PChar;
      Receivename, ReceiveAddress: PChar; MailSubject, MailContent: PChar;
      JpgFileName: PChar; SendType: Integer; PicID: PChar;
      IsCustom: Boolean;Attachment:PChar): Boolean;
  end;

var
  SendObj: TSendMailObj;

implementation

function SendEMail(SenderName, SenderAddress: PChar;
    Receivename, ReceiveAddress: PChar; MailSubject, MailContent: PChar;
    JpgFileName: PChar; SendType: Integer; PicID: PChar; IsCustom: Boolean;Attachment:PChar): Boolean; stdcall;
begin
  Result :=  SendObj.SendEMail(SenderName, SenderAddress, Receivename,
          ReceiveAddress, MailSubject, MailContent,
            JpgFileName, SendType, PicID, IsCustom,Attachment);
end;

function ConnectMailServer(Host, UserName, Password: PChar;
    Port: Integer): Boolean; stdcall;
begin
  try
    //if SendObj = nil then
    SendObj := TSendMailObj.Create;
{    if SendObj.ASmtp.Connected then
      SendObj.ASmtp.Disconnect;  }
    SendObj.Host := StrPas(Host);
    SendObj.Port := Port;
    SendObj.Username := StrPas(UserName);
    SendObj.Password := StrPas(Password);
    Result := SendObj.ConnectServer;
  except
    Result := False;
  end;
end;

procedure DisconnectMail; stdcall;
begin
  if SendObj <> nil then
  begin
    if SendObj.ASmtp <> nil then
      SendObj.ASmtp.Disconnect;
    SendObj := nil;
    SendObj.Free;
  end;
end;
{ TSendMailObj }

function TSendMailObj.ConnectServer: Boolean;
begin
  ASmtp.Host := FHost;
  ASmtp.Port := FPort;
  ASmtp.Username := FUserName;
  ASmtp.Password := FPassword;
  try
    ASmtp.Connect;
    Result := ASmtp.Connected;
  except
    Result := False;
  end;
end;

constructor TSendMailObj.Create;
begin
  ASmtp := TIdSMTP.Create(nil);

end;

function TSendMailObj.SendEMail(SenderName, SenderAddress, Receivename,
  ReceiveAddress, MailSubject, MailContent, JpgFileName: PChar;
  SendType: Integer; PicID: PChar; IsCustom: Boolean;Attachment:PChar): Boolean;
var
  IdBody, IdHtml: TIdText;
  Att: TIdAttachmentFile;
  AMessage: TIdMessage;
  ASmtp_1: TIdSMTP;
begin
  ASmtp_1 := TIdSMTP.Create(nil);
  ASmtp_1.Host := FHost;
  ASmtp_1.Port := FPort;
  ASmtp_1.Username := FUserName;
  ASmtp_1.Password := FPassword;
  //ASmtp_1.AuthType := atDefault;
  ASmtp_1.Connect; // }
  if not ASmtp.Connected then
    ASmtp.Connect;
  AMessage := TIdMessage.Create(nil);
  with AMessage do
  begin
    NoDecode := False;
    NoEncode := False;
    ContentType := 'multipart/mixed';
    Encoding := meMIME;
    MsgId := 'PrettyPic';
    if FileExists(StrPas(JpgFileName)) then
      References := ChangeFileExt(ExtractFileName(StrPas(JpgFileName)), '')
    else
      References := '';
    Recipients.Clear;
    with Recipients.Add do
    begin
      Name := StrPas(Receivename);
      Address := StrPas(ReceiveAddress);
    end;
    Subject := StrPas(MailSubject);
    Sender.Name := StrPas(SenderName);
    Sender.Address := StrPas(SenderAddress);
    From.Name := Sender.Name;
    From.Address := Sender.Address;
    if SendType = 0 then
    begin
      IdBody := TIdText.Create(MessageParts);
      IdBody.ContentType := 'text/plain';
      IdBody.Body.Add(StrPas(MailContent));
      IdBody.Body.Add('');
    end
    else
    begin
      IdHtml := TIdText.Create(MessageParts);
      IdHtml.ContentType := 'text/html;charset=gb2312';
      IdHtml.ContentTransfer := '7bit';
      IdHtml.Body.Add(' <html>');
      IdHtml.Body.Add('  <head>');
      IdHtml.Body.Add('      <title>' + StrPas(MailSubject) + ' </title>');
      IdHtml.Body.Add('  </head>');
      IdHtml.Body.Add('  <body title="' + References + '">');
      IdHtml.Body.Add('    ' + StrPas(MailContent) + ' <br>');
      if (not IsCustom) and FileExists(StrPas(JpgFileName)) then
        IdHtml.Body.Add('      <img src="cid:' + StrPas(PicID) + '" alt="' + ExtractFileName(StrPas(JpgFileName)) +
                            '" name="' + ExtractFileName(StrPas(JpgFileName)) + '" title="">');
      IdHtml.Body.Add('  </body>');
      IdHtml.Body.Add(' </html>');
    end;
    if FileExists(StrPas(JpgFileName)) then
    begin
      Att := TIdAttachmentFile.Create(MessageParts, StrPas(JpgFileName));
      Att.ExtraHeaders.Values['Content-ID'] := StrPas(PicID);
      Att.ContentType := 'image/jpg';
    end;  
    if FileExists(StrPas(Attachment)) then
    begin
      Att := TIdAttachmentFile.Create(MessageParts, StrPas(Attachment));
    end;
  end;
  try
    ASmtp_1.Send(AMessage);
    if Att <> nil then
      Att.Free;
    if IdBody <> nil then
      IdBody.Free;
    if IdHtml <> nil then
      IdHtml.Free;
    if AMessage <> nil then
      AMessage.Free;
    ASmtp_1.Disconnect;

    ASmtp_1.Free; //}
    ASmtp.Disconnect;
    Result := True;
  except on e: Exception do
  begin
    Result := False;
  end;
  end;

end;

end.


Platform: | Size: 1685 | Author: kennyxue | Hits:

[Linux-Unixgtkdemo

Description: gtk实现的图像采集的示例程序。-gtk realized examples of image acquisition procedures.
Platform: | Size: 69632 | Author: 兔子 | Hits:

[Windows Developimage insertor

Description: inserts any number of images present in a directory into the HTML. It s gui is very cooooooool
Platform: | Size: 4096 | Author: 王逸翔 | Hits:

[Multimedia Develophtmlimagecapture_src

Description: Capture an HTML document as an image
Platform: | Size: 4096 | Author: 何明 | Hits:

[AI-NN-PRwebsphinx-src

Description: 一个Web爬虫(机器人,蜘蛛)Java类库,最初由Carnegie Mellon 大学的Robert Miller开发。支持多线程,HTML解析,URL过滤,页面配置,模式匹配,镜像,等等。-a Web Crawler (robots, spiders) Java class libraries, initially by the Carnegie Mellon University's Robert Miller development. Supports multi-threading, HTML parsing URL filtering, and the page configuration, pattern matching, image, and so on.
Platform: | Size: 474112 | Author: 徐欣 | Hits:

[xml-soap-webservicehtml放大代码

Description: 图片放大源代码,你可以利用此代码对光栅图和矢量图进行任意的放大和缩小,达到意想不到的效果。-image to enlarge the source code, you can use this code to vector and raster map adheres to the pan and zoom to reach an unexpected effect.
Platform: | Size: 2048 | Author: 123 | Hits:

[Books如何制作CHM文件

Description: 教你如何制作CHM,制作工具HTML Help Image Editor-teach you how to make CHM, HTML Help tools Image Editor
Platform: | Size: 284672 | Author: 洪一 | Hits:

[GUI DevelopimageMap

Description: JAVA图象映射,用来根据鼠标的点击,像HTML一样,跳到指定的文档位置,显示相应的内容.-JAVA image mapping, used based on mouse clicks, like HTML, the document onto the designated location, showing the corresponding content.
Platform: | Size: 4096 | Author: 刘垒 | Hits:

[xml-soap-webserviceHtmlAnalyzer

Description: 本例程演示了如何使用正则表达式解析HTML文件。本例程使用C#语言编写,可以下载指定网页并进行分析,将HTML文档结构以树状形式展现出来,并提供基于正则表达式的搜索功能,用户可以方便的筛选出网页上形式相似的内容。 基于FLib的图片浏览器,支持简单图像处理。-the routine demonstration of how to use regular expressions are analytic HTML document. Routine use of the C# language, designated website can be downloaded and analyzed, HTML files in a tree structure of the form shown, and to provide regular expression is based on the search function, users can select a convenient form on the website similar to the content. Based on the pictures FLib browser, support a simple image processing.
Platform: | Size: 262144 | Author: 周嘉 | Hits:

[GDI-Bitmap088x_casestudy_html

Description: 在VC6.0中利用GDI+处理图形图象中的简单绘图-in VC6.0 use GDI graphics image processing simple drawings
Platform: | Size: 650240 | Author: 李欣 | Hits:

[Picture ViewerMultiImageViewer

Description: This applet demonstrates:1、receiving multiple files from a drag-drop operation 2、being a drag-drop source 3、optimizing the viewer for performance--creating thumbnails on the fly and owner draw issues 4、usability issues--changing image and form sizes and utilizing a non-paging scrollbar -This applet demonstrates : 1. receiving multiple files from a drag-drop oper.html ation 2, being a drag-drop source 3, optimizing performance for the viewer-- creat ing thumbnails on the fly and owner draw four issues , usability issues-- changing image and form sizes and utilizing a non-paging 9x15
Platform: | Size: 10240 | Author: 田巾 | Hits:

[Internet-Network53

Description: DELPHIBOX The ImageHTML converts images to ASCII characters in HTML format. The output image is in three formats: true color, grayscale, and mono color. The ImageHTML is provided "AS IS " without any warranty of any kind, either express or implied. The entire risk as to the quality and performance of the software is with you. The author is not liable for any damages resulting from the use and misuse of the software. The ImageHTML is freeware. You may copy it as long as you copy all of files.
Platform: | Size: 13312 | Author: | Hits:

[.netsift-latest_win

Description: Rob Hess 開發的SIFT Feature Detector程式 These functions also work with image feature files from both David Lowe s SIFT detector and the Oxford VGG s affine covariant feature detectors. http://web.engr.oregonstate.edu/~hess/index.html-Rob Hess developed SIFT Feature Detector program These functions also work with image feature files from both David Lowe s SIFT detector and the Oxford VGG s affine covariant feature detectors.http:// web.engr.oregonstate.edu/~ hess/index. html
Platform: | Size: 565248 | Author: Michael | Hits:

[WEB Codehtml

Description: HTML 语言教程:目录 --- --- --- --- --- --- --- -- 新的特色 *** HTML 标记(Tag)的索引(Index) 页面(Page)  字体(Font)  文字布局(Text Style)  图象(Image)  表单(Form) 表格(Table)  表格进阶(Advanced)  多窗口页面(Frames) 会移动的文字(Marquee)  多媒体页面(Alternative Inline Elements) 详细目录 页面 文件结构 语言字符集信息 背景色彩和文字色彩 页面空白 链接 开新窗口 标尺线 字体 标题 字号 物理字体 逻辑字体 颜色 客户端字体 字符实体 文字布局 行的控制 文字的对齐 文字的分区 列表 定制列表元素 预格式化文本 空白 多列文本 图象 基本语法 和文字的对齐 在页面中的对齐/布局 边框 客户端图象映射图 表单 基本语法 文字和密码 复选和单选 图象坐标 隐藏表单的元素 列表框 文本区域 表格 基本语法 跨多行、多列的表元 尺寸设置 文字的对齐/布局 在页面中的对齐/布局 标题 表格进阶 色彩 分组显示 边框 分隔线 多窗口页面 基本-err
Platform: | Size: 63488 | Author: lan de | Hits:

[Special EffectsSegmentation

Description: 医学图象分割软件,使用了基于Min-Cut/Max-Flow开元方程库(可在http://www.adastral.ucl.ac.uk/~vladkolm/software.html下载最新版本) 做分割判断, 并使用cimg库读取dcm图片. 本部分源码只负责切出轮廓, 轮廓将在openGL端中输出. -Medical image segmentation software, the use of equations based on the Kaiyuan Min-Cut/Max-Flow library (available at http://www.adastral.ucl.ac.uk/ ~ vladkolm/software.html download the latest version) to do partition to judge, and use the library to read CIMG DCM picture. The source code is only responsible for part of the contour cut, contour in openGL output side.
Platform: | Size: 166912 | Author: zhou | Hits:

[JSP/JavaHTMOTOJPEG

Description: 能够实现HTML代码转成图片。转成的图片可以进行分页,也可以不进行分页,只生成一张图片。-change html page to jpg.the image can be one,also can be more.
Platform: | Size: 3072 | Author: 武冬风 | Hits:

[Linux-UnixyEd-3.6.sh

Description: 这是linux版本的,3.6版,功能方面,yEd 支持自动布局,分组管理等等,支持 UML。可以根据绘制的 UML 图生成 JAVA 代码,可以直接导出为 Gif、PNG、Jpeg、Pdf、Html 图像地图文件等。通过试用,感觉另外一个比较重要的功能是它可以支持外部添加的图形,这使得这款小巧的软件也具备了扩展图形库的可能。-This is the linux version, 3.6, function, yEd supports automatic layout, group management, etc., support the UML. Draw the UML diagram can generate JAVA code that can be directly exported to Gif, PNG, Jpeg, Pdf, Html image map files. Through the trial, I feel another more important function is to add that it can support external graphics, which makes this compact software graphics library with an extension possible.
Platform: | Size: 43373568 | Author: 源泉 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 17 »

CodeBus www.codebus.net