虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

images

images国际著名品牌:全景图片库,北京全景视觉网络科技有限公司,是中国最具影响力的图片公司,成立于1993年。整合了全球众多顶尖图片公司的图片资源,经近20年的发展,通过自有的海量图片资源、先进的存储技术、网络搜索技术、图片处理技术以及经验丰富的专业图片创作团队与服务团队,为全球的广告/传媒人提供创意平台、定制化图片以及视觉图像解决方案。作为中国最具规模和最大的图片资源库之一,全景公司整合了世界范围内60多家著名图片品牌的图片和近千余名海内外著名摄影师、艺术家的作品,并取得了独家代理权。同时,全景公司还拥有一支30余人的资深摄影团队,不断倾力打造中国更贴近市场的自主版权的作品。
  • DHCP服务器配置

    标签: DHCP 服务器

    上传时间: 2016-06-24

    上传用户:liuy

  • 网络共享文件夹的访问管理

    标签: 网络 共享文件夹 访问

    上传时间: 2016-06-24

    上传用户:liuy

  • 32feet.NET 3.5 Bluetooth coding

    32feet.NET is a shared-source project to make personal area networking technologies such as Bluetooth, Infrared (IrDA) and more, easily accessible from .NET code. Supports desktop, mobile or embedded systems. 32feet.NET is free for commercial or non-commercial use. If you use the binaries you can just use the library as-is, if you make modifications to the source you need to include the 32feet.NET License.txt document and ensure the file headers are not modified/removed. The project currently consists of the following libraries:- Bluetooth IrDA Object Exchange Bluetooth support requires a device with either the Microsoft, Widcomm, BlueSoleil, or Stonestreet One Bluetopia Bluetooth stack. Requires .NET Compact Framework v3.5 or above and Windows CE.NET 4.2 or above, or .NET Framework v3.5 for desktop Windows XP, Vista, 7 and 8. A subset of functionality is available for Windows Phone 8 and Windows Embedded Handheld 8 in the InTheHand.Phone.Bluetooth.dll library.

    标签: feet 3.5 NET 32

    上传时间: 2016-07-06

    上传用户:magister2016

  • SVM程序

    请您认真填写上传信息,管理员将会对您提交的内容进行审核。若用户上传不合格资源,则会清空该用户的所有下载积分,以及限制该账户上传。

    标签: SVM 程序

    上传时间: 2016-08-20

    上传用户:ysystc699

  • 89C51C

    51单片机基本应用,程序!适合初学者

    标签: 89C51C

    上传时间: 2016-12-12

    上传用户:123456AAAA

  • 机器人仿真程序

    机器人控制仿真程序,希望大家用得上。

    标签: 机器人 仿真程序

    上传时间: 2017-02-09

    上传用户:xueqing_123

  • CCS样式选择符设计

    CCS样式选择符,初学者,设计,DW,网页制作,大一作业 部分预览: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>CSS样式选择符</title> <style type="text/css">  body  { background-image:url(images/%E8%83%8C%E6%99%AF%E5%9B%BE%E7%89%87.jpg); background-repeat:repeat;  }    .class1  { text-align:center; font-weight:bolder;  }  .class2  { font-family:"仿宋"; text-indent:8em;  }    .class3  { font-size:18px; font-family:"宋体"; text-indent:4em;  }    #id1  { font-family:Zombie, Verdana, "Comic Sans MS"; font-style:oblique; font-size:64px;  }    #id2  { font-family:"黑体"; font-size:36px;  }  #id3  { color:#F69; font-weight:bolder; text-shadow:#FCC;  } </style> </head> <body>  <table width="780" height="1555" border="0" cellspacing="0" align="center" bgcolor="#FFFFFF">   <tr height="30">    <td align="center"><img src="images/顶部图片.jpg" /></td>   </tr>

    标签: CCS 网页设计

    上传时间: 2017-12-07

    上传用户:圈圈Ace

  • java反编译

    反编译工具    良心资源  各大软件都能看到源码,希望大家前来下载!!!

    标签: java 反编译

    上传时间: 2018-02-26

    上传用户:a448177979

  • 基于红外光谱技术的混合气体检测系统概述

    介绍检测系统的设计,对实际设计具有很大意义。希望能帮助大家

    标签: 红外 光谱技术 气体检测系统

    上传时间: 2018-03-06

    上传用户:zhf214

  • 数据结构实验

    #include <stdio.h>   #include <stdlib.h> ///链式栈      typedef struct node   {       int data;       struct node *next;   }Node,*Linklist;      Linklist Createlist()   {       Linklist p;       Linklist h;       int data1;       scanf("%d",&data1);       if(data1 != 0)       {           h = (Node *)malloc(sizeof(Node));           h->data = data1;           h->next = NULL;       }       else if(data1 == 0)       return NULL;       scanf("%d",&data1);       while(data1 != 0)       {           p = (Node *)malloc(sizeof(Node));           p -> data = data1;           p -> next = h;           h = p;           scanf("%d",&data1);       }       return h;   }      void Outputlist(Node *head)   {       Linklist p;       p = head;       while(p != NULL )       {           printf("%d ",p->data);           p = p->next;       }       printf("\n");   }      void Freelist(Node *head)   {       Node *p;       Node *q = NULL;       p = head;       while(p != NULL)       {           q = p;           p = p->next;           free(q);       }   }      int main()   {       Node *head;       head = Createlist();          Outputlist(head);          Freelist(head);          return 0;   }   2.顺序栈 [cpp] view plain copy #include <iostream>   #include <stdio.h>   #include <stdlib.h> ///顺序栈   #define MaxSize 100      using namespace std;      typedef

    标签: 数据结构 实验

    上传时间: 2018-05-09

    上传用户:123456..