Welcome![Sign In][Sign Up]
Location:
Search - .jpg.e

Search list

[WEB Codexyshop3.0_full

Description: 逍遥网店系统3.0完整版 功能说明: 商品管理:只支持一个商品图片,不能上传多图/大图;无商品提升、转移功能。 订单管理:无订单打印、订单搜索功能 会员管理:无会员搜索、邮件群发功能 广告管理:仅支持jpg/gif格式的图片,不支持flash动画。无飘浮广告、弹出广告、侧边广告。-Festival webshops complete system version 3.0 Description : Commodity Management : support only a commodity photographs, unable to upload more maps / big map; no merchandise upgrade, transfer function. Order management : no printing orders, orders search function Member Management : No Member Search, e-mail listserv advertising management : only supports jpg / gif format photographs, the flash does not support animation. No floating ads, pop-up ads, advertising side.
Platform: | Size: 4923698 | Author: prog | Hits:

[ListView/ListBoxJavaDragDrop

Description: Drag and Drop with java. Can display JPG file. -Drag and Drop with java. Can display JPG fil e.
Platform: | Size: 6294 | Author: 秦皇岛 | Hits:

[Linux-Unixfpix-0.90.1.tar

Description: Linux driver for FujiFilm FinePix digital cameras in PC-CAM (i.e. webcam) mode driver/ Contains the driver sources. Compile with \"make\". Then as root, install with \"make install\". Type \"modprobe finepix\" to load the module. userspace/ Type \"make\" to compile. fpix: test program, independant of the driver. Uses libusb to directly access the camera and capture a frame, saved under frame.jpg. Will not work if the driver is loaded. fpixtest: test program. Uses V4L2 to capture an image. fpix-stress-v4l2: never ending (in theory) stress test derived from fpixtest. -Linux driver for FujiFilm FinePix digital cameras in PC-CAM (i.e. webcam) mode driver / Co. ntains the driver sources. Compile with "make" . Then as root. install with "make install." Type "modprobe fi nepix "to load the module. userspace / Type "mak e "to compile. fpix : test program, independant of the driver. Uses libusb to direc tly access the camera and capture a frame. saved under frame.jpg. Will not work if the driv er is loaded. fpixtest : test program. Uses V4L2 to capture an image. fpi x-stress-v4l2 : never ending (in theory) stress test derived fr om fpixtest.
Platform: | Size: 28384 | Author: 毕胜 | Hits:

[Communication-MobilehyCecamera

Description: This sample demonstrates how to take pictures and videos using the CameraCaptureDialog managed API. If a default filename is used: - if a still picture is taken, the \".jpg\" extension is appended to the default filename. (Otherwise the CameraCaptureDialog would throw an InvalidArgumentException). - if a video is recorded, null is passed to the CameraCaptureDialog as the default filename. The filename returned is then renamed to match the user entered filename while keeping the extension returned.-This sample demonstrates how to take pictu res videos using the CameraCaptureDialog m Managed API. If a default filename is used : - if a still picture is taken, the. " jpg "extension is appended to the default filename. (Otherwise the CameraCaptureDialo g would throw an InvalidArgumentException). - if a video is recorded, null is passed to the CameraCaptureDialog as th e default filename. The filename returned is th en renamed to match the user entered filename wh ile keeping the extension returned.
Platform: | Size: 9987 | Author: 黄先生 | Hits:

[Otherget_remote_data

Description: jsp程序:获取远程数据(HTML/JPG), 服务器端的网页编程,内含数据库处理程序及大量javascript、HTML等程序源代码使用加密金刚锁加密(密码:buxuehao) ----E-mail:wudazhg@163.com-----2007.10
Platform: | Size: 136630 | Author: wudazhg | Hits:

[JSP/JavaAtm

Description: Account.java 主要用于用户的增删改数据(用户名+帐户余额)存于E盘accountdata.txt文件中 Bank.java 主要用于用户的增删改数据(用户名+卡号+密码)存于E盘bankdata.txt文件中 AtmAccount.java 用户的界面设计 AtmBank.java 管理员的界面设计 AtmMain.java 程序运行的主类(画面加载后从这里运行) JWindowDemo.java 加载画面 atm.jpg 加在画面时用到的图片...自己可以改换
Platform: | Size: 116709 | Author: 吴建新 | Hits:

[GDI-BitmapUPCEAcodeRead

Description: UPC-E/A 类型条码生成和读取示例。这个源代码是一款UPC-E/A 类型条码创建和读取示例,UPC-E/A条形码广泛应用于商业零售终端。该示例主要功能可以创建6位和12位UPC-E/A条形码,并保存为JPG图片。程序同时还具有扫描识别JPG图片格式的条形码图片,识别率准确率挺高,即使比较模糊的条码图片也可以顺利识别,作者开发时是基于一个嵌入式条形码读取照相机来进行读取。功能比较不错。
Platform: | Size: 438965 | Author: cxd | 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:

[Picture Viewercqa0110

Description: 在你的MFC应用程序中显示一个JPG文件-in your MFC applications showed a JPG file
Platform: | Size: 190464 | Author: 蓝天 | Hits:

[2D GraphicBmpToJpg

Description: 将BMP图像转换为JPG图像-of BMP images converted to JPG images
Platform: | Size: 3623936 | Author: 张人 | Hits:

[WEB Codexyshop3.0_full

Description: 逍遥网店系统3.0完整版 功能说明: 商品管理:只支持一个商品图片,不能上传多图/大图;无商品提升、转移功能。 订单管理:无订单打印、订单搜索功能 会员管理:无会员搜索、邮件群发功能 广告管理:仅支持jpg/gif格式的图片,不支持flash动画。无飘浮广告、弹出广告、侧边广告。-Festival webshops complete system version 3.0 Description : Commodity Management : support only a commodity photographs, unable to upload more maps/big map; no merchandise upgrade, transfer function. Order management : no printing orders, orders search function Member Management : No Member Search, e-mail listserv advertising management : only supports jpg/gif format photographs, the flash does not support animation. No floating ads, pop-up ads, advertising side.
Platform: | Size: 4923392 | Author: prog | Hits:

[Otherecw_compress

Description: 可批次轉換TIFF(包含TFW)或JPG(包含JGW)格式影像成ECW格式,方便大量壓縮及轉換GIS圖形格式-can installment TIFF conversion (including TFW) or JPG (including JGW) format images into ECW Lattice- to facilitate a large number of compression and conversion of GIS graphics format
Platform: | Size: 701440 | Author: 羅羽萱 | Hits:

[Compress-Decompress algrithmsjpg_dec_lib

Description: 一个用于jpg数据编解压缩的库,包含了enc和dec两个文件-a jpg for extracting data from the basement, and includes enc dec two documents
Platform: | Size: 29696 | Author: chen | Hits:

[Picture ViewerHexReplace

Description: jpg图像工具软件,可以将任意文件(如rar文件)插入到jpg图像文件中,把jpg文件作为相册上传,下载jpg图像文件后再用此工具将需要的文件提取出来-jpg image tool software can be arbitrary files (such as rar files) inserted into the jpg image file to upload jpg file as a photo album, download jpg image files and then use this tool will need to document extracted
Platform: | Size: 7168 | Author: 释智祥 | Hits:

[Embeded Linuxfbi_1.31.tar

Description: linux下开源图片codec,可显示png,jpg,bmp等,还可交叉编译,在ARM平台运行。-This is a image viewer for framebuffer devices. It is quick & dirty hacked off a svgalib PhotoCD viewer. This background is the reason for a few limits: * It can handle the usual VGA graphics modes only, i.e. packed pixels with 8 bpp pseudocolor and 16/24/32 bpp truecolor/directcolor * It was designed to handle photos. It can display paletted images (i.e. GIF) too, but not very well. On 8 bit displays you ll get dithered images... It has PhotoCD, jpeg, ppm, gif, tiff, xwd, bmp and png support buildin. Unknown formats are piped throuth convert (ImageMagick), which hopefully can handle it... If you run it with-h, it will print a short description. I ve tested this on i386 (matroxfb) and ppc (atyfb).
Platform: | Size: 92160 | Author: 张洪 | Hits:

[Multimedia programFFSetup170

Description: 它可以把图片转化成jpg,png,ico,,tga等很多格式的哦 把音频文件转换任意音频格式,mp3,wma,aac,换有很多。 也支持视频,移动设备,光驱设备的转换。真的很好的-It can be transformed into picture jpg, png, ico,, tga Oh, and many other format audio files to any audio format conversion, mp3, wma, aac, for there are many. Also supports video, mobile devices, optical devices convert. Really good
Platform: | Size: 18468864 | Author: 陈俊 | Hits:

[Windows DevelopConvertPDF

Description: 可转换为png、Tif或jpg文件,推荐png格式。 需要GhostScript 8.64,安装后将gs32dll.dll 放在此程序exe文件同一个目录内 -Can be converted to png, Tif or jpg files, png format recommend. Required GhostScript 8.64, the installation procedure will gs32dll.dll this exe file on a directory within the same
Platform: | Size: 52224 | Author: yefeng | Hits:

[Special EffectsPictureFileFormat

Description: 能转换图片的格式有:BMP/EMF/ICON/TIFF/EXIF/JPG/PNG/WMF/GIF-picture format converter: BMP/EMF/ICON/TIFF/EXIF/JPG/PNG/WMF/GIF
Platform: | Size: 43008 | Author: 王明远 | Hits:

[Windows CEEVC-Camera-zc030

Description: 使用EVC编程摄像头采集视频功能,摄像头为中星ZC030驱动、没有视频浏览功能,通过按键启动摄像头、停止摄像头、保存文件名为当前系统的时间格式如2010-01-28 13:12:34.jpg-Use EVC program cameras capture video capabilities, camera for the stars ZC030-driven, there is no video browsing through the camera button to start and stop the camera, save the file name of the current system time format such as 2010-01-28 13:12 : 34.jpg
Platform: | Size: 2630656 | Author: gaowei | Hits:

[Windows DevelopE-Book

Description: 这是一个最简单的电子书,只有上一页,下一页,跳到指定页,返回首页这几个最基本的功能。 但是它已经是一个电子书了。书的制作也很简单,只需要将图片文件保存成IMG_xxxx.jpg的格式放在BOOK目录中即可,范围从0~9999。 备注:Image目录的内容是软件本身要用的,请不要删除。 更多软件,请参见: http://www.dingcrown.com/soft-This is a simple book, only the Previous, Next, jump to a specific page, to return home these basic functions. But it is a book of. Production of the book is also very simple, just to save the image file format into IMG_xxxx.jpg on the BOOK directory can range from 0 to 9999. Note: Image catalog of content to use the software itself, please do not delete. More software, see: http://www.dingcrown.com/soft
Platform: | Size: 2195456 | Author: 这也要 | Hits:
« 12 3 »

CodeBus www.codebus.net