├── src ├── model │ ├── size.json │ ├── User.ts │ ├── Page.ts │ ├── Interfaces.ts │ ├── Colors.ts │ ├── Result.ts │ └── PhotoSize.ts ├── assets │ ├── variable.scss │ ├── images │ │ ├── app_code_image.jpg │ │ └── app_screenshot.png │ └── common.scss ├── static │ ├── bg.png │ ├── logo.png │ ├── new.png │ ├── hot-tag.png │ ├── example.jpeg │ └── tab │ │ ├── home1.png │ │ ├── profile1.png │ │ ├── home_pink.png │ │ └── profile_pink.png ├── enums │ └── Method.ts ├── store │ ├── index.ts │ └── modules │ │ └── photo.ts ├── utils │ ├── common.ts │ └── request.ts ├── main.ts ├── uni.promisify.adaptor.ts ├── App.vue ├── components │ ├── Card.vue │ ├── ColorDot.vue │ └── LengthLine.vue ├── config.ts ├── api │ └── photo.ts ├── pages.json ├── pages │ ├── mine │ │ └── index.vue │ ├── photo │ │ ├── index.vue │ │ └── edit.vue │ └── index │ │ └── index.vue ├── uni.scss └── manifest.json ├── shims-vue.d.ts ├── vue.config.js ├── shims-uni.d.ts ├── .gitignore ├── tsconfig.json ├── postcss.config.js ├── public └── index.html ├── README.md ├── babel.config.js └── package.json /src/model/size.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/variable.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/bg.png -------------------------------------------------------------------------------- /src/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/logo.png -------------------------------------------------------------------------------- /src/static/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/new.png -------------------------------------------------------------------------------- /src/static/hot-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/hot-tag.png -------------------------------------------------------------------------------- /src/static/example.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/example.jpeg -------------------------------------------------------------------------------- /src/static/tab/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/tab/home1.png -------------------------------------------------------------------------------- /src/static/tab/profile1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/tab/profile1.png -------------------------------------------------------------------------------- /src/static/tab/home_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/tab/home_pink.png -------------------------------------------------------------------------------- /shims-vue.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.vue" { 2 | import Vue from 'vue' 3 | export default Vue 4 | } 5 | 6 | declare module 'uview-ui' -------------------------------------------------------------------------------- /src/static/tab/profile_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/static/tab/profile_pink.png -------------------------------------------------------------------------------- /src/assets/images/app_code_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/assets/images/app_code_image.jpg -------------------------------------------------------------------------------- /src/assets/images/app_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soulerror/HivisionIDPhotos-Uniapp/HEAD/src/assets/images/app_screenshot.png -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | 2 | // vue.config.js,如没有此文件则手动创建 3 | module.exports = { 4 | transpileDependencies: ['uview-ui', '@dcloudio/uni-ui'] 5 | } -------------------------------------------------------------------------------- /src/model/User.ts: -------------------------------------------------------------------------------- 1 | //用户接口 2 | export default interface User { 3 | id: number; 4 | username: string; 5 | avatar: string; 6 | token: string, 7 | nickname?: string 8 | } 9 | -------------------------------------------------------------------------------- /src/model/Page.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 分页对象 3 | */ 4 | export default interface Page { 5 | totalPage?: number; 6 | total?: number; 7 | data: Array; 8 | current?: number; 9 | size?: number; 10 | } 11 | -------------------------------------------------------------------------------- /src/enums/Method.ts: -------------------------------------------------------------------------------- 1 | enum Method { 2 | OPTIONS = 'OPTIONS', 3 | GET = 'GET', 4 | HEAD = 'HEAD', 5 | POST = 'POST', 6 | PUT = 'PUT', 7 | DELETE = 'DELETE', 8 | TRACE = 'TRACE', 9 | CONNECT = 'CONNECT' 10 | } 11 | 12 | export default Method -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | import Photo from './modules/photo' 4 | 5 | Vue.use(Vuex) 6 | 7 | const store = new Vuex.Store({ 8 | modules: { 9 | Photo 10 | } 11 | }) 12 | 13 | export default store -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- 1 | export const copyProperties = (source: any, target: any) => { 2 | const keys = Object.keys(source); 3 | for (let index in keys) { 4 | let key: keyof typeof source = keys[index]; 5 | //如果有才设置 6 | if (target.hasOwnProperty(key)) target[key] = source[key]; 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /shims-uni.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import Vue from 'vue' 3 | declare module "vue/types/options" { 4 | type Hooks = App.AppInstance & Page.PageInstance; 5 | interface ComponentOptions extends Hooks { 6 | /** 7 | * 组件类型 8 | */ 9 | mpType?: string; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | import store from './store' 4 | import uView from 'uview-ui' 5 | import './uni.promisify.adaptor' 6 | 7 | 8 | 9 | Vue.config.productionTip = false 10 | Vue.use(uView) 11 | const app = new Vue({ 12 | store, 13 | render: h => h(App) 14 | }) 15 | app.$mount(); 16 | 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | unpackage/ 4 | dist/ 5 | 6 | # local env files 7 | .env.local 8 | .env.*.local 9 | 10 | # Log files 11 | npm-debug.log* 12 | yarn-debug.log* 13 | yarn-error.log* 14 | 15 | # Editor directories and files 16 | .project 17 | .idea 18 | .vscode 19 | *.suo 20 | *.ntvs* 21 | *.njsproj 22 | *.sln 23 | *.sw* 24 | -------------------------------------------------------------------------------- /src/model/Interfaces.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 照片配置 3 | */ 4 | export interface PhotoConfig {} 5 | 6 | /** 7 | * 图片地址 8 | */ 9 | export interface PhotoPath { 10 | //base64 透明图 11 | base64: string; 12 | //base64 高清透明图 13 | base64HD: string; 14 | //base64 透明图地址 15 | base64Path: string; 16 | //base64 高清透明图地址 17 | base64HDPath: string; 18 | } 19 | -------------------------------------------------------------------------------- /src/uni.promisify.adaptor.ts: -------------------------------------------------------------------------------- 1 | uni.addInterceptor({ 2 | returnValue (res) { 3 | if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) { 4 | return res; 5 | } 6 | return new Promise((resolve, reject) => { 7 | res.then((res: [unknown, unknown]) => res[0] ? reject(res[0]) : resolve(res[1])); 8 | }); 9 | }, 10 | }); -------------------------------------------------------------------------------- /src/model/Colors.ts: -------------------------------------------------------------------------------- 1 | export const a = [ 2 | "#D9001B", //红底 3 | "#02A7F0", //蓝底 4 | "#FFFFFF", //白底 5 | "#3492C4", //渐变蓝1 6 | "#3D99E2", //渐变懒2 7 | ]; 8 | 9 | export const Colors = [ 10 | "#428eda", 11 | "#D9001B", //红底 12 | "#539fed", 13 | "#b3b3b3", 14 | "#ac020b", 15 | "#2c4c80", 16 | //糖果色 17 | "#ffdad8", 18 | "#fef7c6", 19 | "#d1f0dc", 20 | "#e4d7f3", 21 | "#c0e8e7", 22 | "#d0ddf5", 23 | ]; 24 | -------------------------------------------------------------------------------- /src/model/Result.ts: -------------------------------------------------------------------------------- 1 | import Method from "@/enums/Method"; 2 | //返回格式 3 | export interface Result { 4 | code?: number | null; 5 | data: T; 6 | message?: string | null; 7 | msg?: string | null; 8 | } 9 | 10 | //请求参数 11 | export interface RequestOptions { 12 | method?: Method; 13 | data?: string | AnyObject | any; 14 | loading?: boolean; 15 | gateway?: string; 16 | headers?: AnyObject; 17 | remoteUrl?: string; 18 | } 19 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /src/components/Card.vue: -------------------------------------------------------------------------------- 1 | 6 | 18 | -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | interface EnvironmentConfig { 2 | host: string; 3 | } 4 | 5 | const baseApi: { [key: string]: EnvironmentConfig } = { 6 | // 开发版 7 | development: { 8 | // host: "http://localhost:8080", 9 | }, 10 | // 体验版 11 | trial: { 12 | host: "https://yourdomian.com", 13 | }, 14 | // 正式版 15 | release: { 16 | host: "https://yourdomian.com", 17 | }, 18 | // uniapp 正式环境 19 | production: { 20 | host: "https://yourdomian.com", 21 | }, 22 | }; 23 | // 环境 24 | export const env = process.env.NODE_ENV; 25 | // host 26 | export const baseUrl = baseApi[env].host; 27 | -------------------------------------------------------------------------------- /src/assets/common.scss: -------------------------------------------------------------------------------- 1 | .shake-tag { 2 | animation: shakeAndPause 1.5s steps(4, end) infinite; 3 | } 4 | 5 | /* 定义关键帧动画 */ 6 | @keyframes shakeAndPause { 7 | 8 | 0%, 9 | 5% { 10 | transform: rotate(0deg); 11 | } 12 | 13 | 5%, 14 | 10% { 15 | transform: rotate(6deg); 16 | /* 改变数值可以调整抖动的距离 */ 17 | } 18 | 19 | 10%, 20 | 15% { 21 | transform: rotate(-6deg); 22 | } 23 | 24 | 15%, 25 | 20% { 26 | transform: rotate(6deg); 27 | /* 改变数值可以调整抖动的距离 */ 28 | } 29 | 30 | 20%, 31 | 100% { 32 | transform: rotate(0deg); 33 | } 34 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "esnext", 5 | "strict": true, 6 | "jsx": "preserve", 7 | "importHelpers": true, 8 | "moduleResolution": "node", 9 | "esModuleInterop": true, 10 | "allowSyntheticDefaultImports": true, 11 | "experimentalDecorators":true, 12 | "sourceMap": true, 13 | "skipLibCheck": true, 14 | "baseUrl": ".", 15 | "types": [ 16 | "webpack-env", 17 | "@dcloudio/types", 18 | "miniprogram-api-typings" 19 | ], 20 | "paths": { 21 | "@/*": [ 22 | "./src/*" 23 | ] 24 | }, 25 | "lib": [ 26 | "esnext", 27 | "dom", 28 | "dom.iterable", 29 | "scripthost" 30 | ] 31 | }, 32 | "exclude": [ 33 | "node_modules", 34 | "unpackage", 35 | "dist", 36 | "src/**/*.nvue" 37 | ] 38 | } 39 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | const path = require('path') 2 | const webpack = require('webpack') 3 | const config = { 4 | parser: require('postcss-comment'), 5 | plugins: [ 6 | require('postcss-import')({ 7 | resolve (id, basedir, importOptions) { 8 | if (id.startsWith('~@/')) { 9 | return path.resolve(process.env.UNI_INPUT_DIR, id.substr(3)) 10 | } else if (id.startsWith('@/')) { 11 | return path.resolve(process.env.UNI_INPUT_DIR, id.substr(2)) 12 | } else if (id.startsWith('/') && !id.startsWith('//')) { 13 | return path.resolve(process.env.UNI_INPUT_DIR, id.substr(1)) 14 | } 15 | return id 16 | } 17 | }), 18 | require('autoprefixer')({ 19 | remove: process.env.UNI_PLATFORM !== 'h5' 20 | }), 21 | require('@dcloudio/vue-cli-plugin-uni/packages/postcss') 22 | ] 23 | } 24 | if (webpack.version[0] > 4) { 25 | delete config.parser 26 | } 27 | module.exports = config 28 | -------------------------------------------------------------------------------- /src/components/ColorDot.vue: -------------------------------------------------------------------------------- 1 | 7 | 28 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | <%= htmlWebpackPlugin.options.title %> 9 | 10 | 14 | 15 | 16 | 17 | 18 | 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/components/LengthLine.vue: -------------------------------------------------------------------------------- 1 | 6 | 25 | -------------------------------------------------------------------------------- /src/store/modules/photo.ts: -------------------------------------------------------------------------------- 1 | import { PhotoSize, photoSizes } from "@/model/PhotoSize"; 2 | import { MutationTree, GetterTree } from "vuex"; 3 | import { copyProperties } from "@/utils/common"; 4 | import { PhotoPath } from "@/model/Interfaces"; 5 | 6 | interface PhotoState { 7 | photoConfig: PhotoSize; 8 | photoPath?: PhotoPath; 9 | } 10 | 11 | const state: PhotoState = { 12 | photoConfig: photoSizes[0], 13 | photoPath: undefined, 14 | }; 15 | 16 | const getters = { 17 | photoConfig: (state: PhotoState) => state.photoConfig, 18 | photoPath: (state: PhotoState) => state.photoPath, 19 | }; 20 | 21 | const mutations: MutationTree = { 22 | /** 23 | * 24 | * @param state 状态 25 | * @param data 相片参数 26 | */ 27 | SET_PHOTO_SIZE(state: PhotoState, data: PhotoSize) { 28 | state.photoConfig = data; 29 | }, 30 | /** 31 | * 32 | * @param state 状态 33 | * @param data 相片 34 | */ 35 | SET_PHOTO_PATH(state: PhotoState, data: PhotoPath) { 36 | state.photoPath = data; 37 | }, 38 | }; 39 | 40 | export default { 41 | namespace: true, 42 | state, 43 | mutations, 44 | getters, 45 | }; 46 | -------------------------------------------------------------------------------- /src/api/photo.ts: -------------------------------------------------------------------------------- 1 | import request, { uploadFile } from "@/utils/request"; 2 | import Method from "@/enums/Method"; 3 | 4 | /** 5 | * 生成证件照 6 | * @param data 表单数据 7 | * @returns 结果 8 | */ 9 | export const GeneratePhoto = (data: any, name: string, path: string): Promise => { 10 | return uploadFile('/idphoto', name, path, { data, method: Method.POST }) 11 | } 12 | 13 | 14 | /** 15 | * 证件照规格Api 16 | * @returns 17 | */ 18 | export const GetPhotoSize = (): Promise => { 19 | return request("/item/list", { 20 | data: { key: "nMBnm_L2MxdXN-UIApF11tNExznpE82b" }, 21 | method: Method.POST, remoteUrl: "https://api.zheyings.cn", 22 | headers: { "Content-Type": "application/x-www-form-urlencoded" } 23 | }, 24 | ) 25 | } 26 | /** 27 | * 添加背景色 28 | * @returns 29 | */ 30 | export const AddBackgroudColor = (data: any, name: string, path: string): Promise => { 31 | return uploadFile('/add_background', name, path, { data, method: Method.POST }) 32 | } 33 | 34 | 35 | /** 36 | * 生成六寸排版照 37 | * @returns 38 | */ 39 | export const GenerateLayoutPhoto = (data: any, name: string, path: string): Promise => { 40 | return uploadFile('/generate_layout_photos', name, path, { data, method: Method.POST }) 41 | } 42 | -------------------------------------------------------------------------------- /src/pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "easycom": { 3 | "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" 4 | }, 5 | "pages": [ 6 | { 7 | "path": "pages/index/index", 8 | "style": { 9 | "navigationStyle": "custom" 10 | } 11 | }, 12 | { 13 | "path": "pages/photo/index", 14 | "style": { 15 | "navigationBarTitleText": "最美AI证件照" 16 | } 17 | }, 18 | { 19 | "path": "pages/photo/edit", 20 | "style": { 21 | "navigationBarTitleText": "最美AI证件照" 22 | } 23 | }, 24 | { 25 | "path": "pages/mine/index", 26 | "style": { 27 | "navigationStyle": "custom" 28 | } 29 | } 30 | ], 31 | "globalStyle": { 32 | "navigationBarTextStyle": "black", 33 | "navigationBarTitleText": "最美AI证件照", 34 | "navigationBarBackgroundColor": "#F8F8F8", 35 | "backgroundColor": "#F8F8F8" 36 | }, 37 | "tabBar": { 38 | "color": "#7A7E83", 39 | "selectedColor": "#3cc51f", 40 | "borderStyle": "black", 41 | "backgroundColor": "#ffffff", 42 | "list": [ 43 | { 44 | "pagePath": "pages/index/index", 45 | "iconPath": "static/tab/home1.png", 46 | "selectedIconPath": "static/tab/home_pink.png", 47 | "text": "首页" 48 | }, 49 | { 50 | "pagePath": "pages/mine/index", 51 | "iconPath": "static/tab/profile1.png", 52 | "selectedIconPath": "static/tab/profile_pink.png", 53 | "text": "我的" 54 | } 55 | ] 56 | } 57 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HivisionIDPhotos-Uniapp 2 | 3 | ## 预览 4 | 5 |

6 | 7 | 8 | #

《松鼠证件照》

9 |
10 |
11 |

12 |
13 | 14 | ## 项目介绍 15 | 基于[Zeyi-Lin](https://github.com/Zeyi-Lin)大佬的[HivisionIDPhotos](https://github.com/Zeyi-Lin/HivisionIDPhotos)项目为基础,编写的一套生成证件照的微信小程序
16 | 这里主要是微信小程序的页面 ,后台还在努力开发中~
17 | 目前小程序是直接对接[HivisionIDPhotos](https://github.com/Zeyi-Lin/HivisionIDPhotos)的API,只需运行HivisionIDPhotos后,修改config.ts文件中的接口地址为HivisionIDPhotos的接口地址即可 18 | 19 | #### 正在开发的后台主要是实现: 20 | - 微信小程序用户的登录与管理 21 | - 证件照尺寸列表的管理 22 | - 广告激励管理 23 | - 用户图片下载记录 24 | - 会考虑将图片用对象存储的方式存储,用来提升低带宽服务器的访问速率(可能会是七牛云,因为每个月免费10个G,hhh) 25 | 26 | #### Tips: 27 | 后台管理将用Golang实现
28 | 目前开发进度70%
29 | 为什么选用Golang?
30 | Java太占内存了,我的云服务器内存比较小,运行两个Java项目就给内存吃满了
31 | 用Go可以很好的避免这个问题,一个简单的Go项目,内存占用只有不到20m
32 | 目前还是Golang练习生,一边GPT一边写代码,所以后台写的比较慢 2333 33 | ## 🤩 主要功能 34 | - #### 人像抠图 35 | - #### 照片换底色 36 | - #### 生成六寸排版照 37 | - #### 自定义证件照尺寸 38 | - #### 保存图片至用户相册 39 | 40 | ## ⭐ 项目技术栈 41 | 42 | - Uniapp 43 | - Vue2 44 | - Vuex 45 | - Typescript 46 | - Uview 47 | #### 为什么不用Vue3? 48 | 因为Uview对Vue3的支持不是很好... 49 | 50 | ## 📦 运行方法 51 | 52 | - ### 下载依赖 53 | 54 | ``` 55 | yarn install 56 | ``` 57 | 58 | - ### H5启动 59 | 60 | ``` 61 | yarn serve 62 | ``` 63 | 64 | - ### 微信小程序启动 65 | 66 | ``` 67 | yarn dev:mp-weixin 68 | ``` 69 | 70 | 然后项目目录下会生成一个dist目录
71 | 使用微信开发者工具打开dist目录下的 dev/mp-weixin目录
72 | 即可在微信开发者工具中看到该程序
73 | 74 | - ### 发布微信小程序 75 | 76 | ``` 77 | yarn build:mp-weixin 78 | ``` 79 | 80 | 该命令会打包符合微信小程序代码规范的极简包 81 | 然后以和上面dev版相同方式用微信开发者工具打开项目即可 82 | 83 | ## 📧 联系我 84 | soulerror@qq.com 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | const webpack = require('webpack') 2 | const plugins = [] 3 | 4 | if (process.env.UNI_OPT_TREESHAKINGNG) { 5 | plugins.push(require('@dcloudio/vue-cli-plugin-uni-optimize/packages/babel-plugin-uni-api/index.js')) 6 | } 7 | 8 | if ( 9 | ( 10 | process.env.UNI_PLATFORM === 'app-plus' && 11 | process.env.UNI_USING_V8 12 | ) || 13 | ( 14 | process.env.UNI_PLATFORM === 'h5' && 15 | process.env.UNI_H5_BROWSER === 'builtin' 16 | ) 17 | ) { 18 | const path = require('path') 19 | 20 | const isWin = /^win/.test(process.platform) 21 | 22 | const normalizePath = path => (isWin ? path.replace(/\\/g, '/') : path) 23 | 24 | const input = normalizePath(process.env.UNI_INPUT_DIR) 25 | try { 26 | plugins.push([ 27 | require('@dcloudio/vue-cli-plugin-hbuilderx/packages/babel-plugin-console'), 28 | { 29 | file (file) { 30 | file = normalizePath(file) 31 | if (file.indexOf(input) === 0) { 32 | return path.relative(input, file) 33 | } 34 | return false 35 | } 36 | } 37 | ]) 38 | } catch (e) { } 39 | } 40 | 41 | process.UNI_LIBRARIES = process.UNI_LIBRARIES || ['@dcloudio/uni-ui'] 42 | process.UNI_LIBRARIES.forEach(libraryName => { 43 | plugins.push([ 44 | 'import', 45 | { 46 | 'libraryName': libraryName, 47 | 'customName': (name) => { 48 | return `${libraryName}/lib/${name}/${name}` 49 | } 50 | } 51 | ]) 52 | }) 53 | 54 | if (process.env.UNI_PLATFORM !== 'h5') { 55 | plugins.push('@babel/plugin-transform-runtime') 56 | } 57 | 58 | const config = { 59 | presets: [ 60 | [ 61 | '@vue/app', 62 | { 63 | modules: webpack.version[0] > 4 ? 'auto' : 'commonjs', 64 | useBuiltIns: process.env.UNI_PLATFORM === 'h5' ? 'usage' : 'entry' 65 | } 66 | ] 67 | ], 68 | plugins 69 | } 70 | 71 | const UNI_H5_TEST = '**/@dcloudio/uni-h5/dist/index.umd.min.js' 72 | if (process.env.NODE_ENV === 'production') { 73 | config.overrides = [{ 74 | test: UNI_H5_TEST, 75 | compact: true, 76 | }] 77 | } else { 78 | config.ignore = [UNI_H5_TEST] 79 | } 80 | 81 | module.exports = config 82 | -------------------------------------------------------------------------------- /src/pages/mine/index.vue: -------------------------------------------------------------------------------- 1 | 21 | 29 | -------------------------------------------------------------------------------- /src/uni.scss: -------------------------------------------------------------------------------- 1 | /** 2 | * 这里是uni-app内置的常用样式变量 3 | * 4 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 5 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App 6 | * 7 | */ 8 | 9 | /** 10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 11 | * 12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 13 | */ 14 | 15 | /* 颜色变量 */ 16 | 17 | /* 行为相关颜色 */ 18 | $uni-color-primary: #007aff; 19 | $uni-color-success: #4cd964; 20 | $uni-color-warning: #f0ad4e; 21 | $uni-color-error: #dd524d; 22 | 23 | /* 文字基本颜色 */ 24 | $uni-text-color: #333; // 基本色 25 | $uni-text-color-inverse: #fff; // 反色 26 | $uni-text-color-grey: #999; // 辅助灰色,如加载更多的提示信息 27 | $uni-text-color-placeholder: #808080; 28 | $uni-text-color-disable: #c0c0c0; 29 | 30 | /* 背景颜色 */ 31 | $uni-bg-color: #fff; 32 | $uni-bg-color-grey: #f8f8f8; 33 | $uni-bg-color-hover: #f1f1f1; // 点击状态颜色 34 | $uni-bg-color-mask: rgba(0, 0, 0, 0.4); // 遮罩颜色 35 | 36 | /* 边框颜色 */ 37 | $uni-border-color: #c8c7cc; 38 | 39 | /* 尺寸变量 */ 40 | 41 | /* 文字尺寸 */ 42 | $uni-font-size-sm: 12px; 43 | $uni-font-size-base: 14px; 44 | $uni-font-size-lg: 16px; 45 | 46 | /* 图片尺寸 */ 47 | $uni-img-size-sm: 20px; 48 | $uni-img-size-base: 26px; 49 | $uni-img-size-lg: 40px; 50 | 51 | /* Border Radius */ 52 | $uni-border-radius-sm: 2px; 53 | $uni-border-radius-base: 3px; 54 | $uni-border-radius-lg: 6px; 55 | $uni-border-radius-circle: 50%; 56 | 57 | /* 水平间距 */ 58 | $uni-spacing-row-sm: 5px; 59 | $uni-spacing-row-base: 10px; 60 | $uni-spacing-row-lg: 15px; 61 | 62 | /* 垂直间距 */ 63 | $uni-spacing-col-sm: 4px; 64 | $uni-spacing-col-base: 8px; 65 | $uni-spacing-col-lg: 12px; 66 | 67 | /* 透明度 */ 68 | $uni-opacity-disabled: 0.3; // 组件禁用态的透明度 69 | 70 | /* 文章场景相关 */ 71 | $uni-color-title: #2c405a; // 文章标题颜色 72 | $uni-font-size-title: 20px; 73 | $uni-color-subtitle: #555; // 二级标题颜色 74 | $uni-font-size-subtitle: 18px; 75 | $uni-color-paragraph: #3f536e; // 文章段落颜色 76 | $uni-font-size-paragraph: 15px; 77 | 78 | /* uni.scss */ 79 | @import 'uview-ui/theme.scss'; 80 | 81 | //公共css 82 | @import './assets/common.scss'; 83 | 84 | /* 让每个页面默认高度都是100% */ 85 | page { 86 | height: 100%; 87 | } 88 | 89 | div { 90 | box-sizing: border-box; 91 | } 92 | 93 | 94 | // 主题色 95 | $theme-color: #f9ae3d; // rbg(249,174,61) 96 | // 透明色 97 | $theme-color-transparent: rgba(249, 174, 61, 0.2); 98 | // 默认页面边距 99 | $page-padding: 40rpx; 100 | 101 | //按钮颜色 102 | $button-color: #F77261; -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "id-photos", 3 | "appid" : "", 4 | "description" : "", 5 | "versionName" : "1.0.0", 6 | "versionCode" : "100", 7 | "transformPx" : false, 8 | "h5" : { 9 | "devServer" : { 10 | "port" : 3000 11 | } 12 | }, 13 | "app-plus" : { 14 | "modules" : {}, 15 | "distribute" : { 16 | "android" : { 17 | "permissions" : [ 18 | "", 19 | "", 20 | "", 21 | "", 22 | "", 23 | "", 24 | "", 25 | "", 26 | "", 27 | "", 28 | "", 29 | "", 30 | "", 31 | "", 32 | "", 33 | "", 34 | "", 35 | "", 36 | "", 37 | "", 38 | "", 39 | "" 40 | ] 41 | }, 42 | "ios" : {}, 43 | "sdkConfigs" : {} 44 | }, 45 | "usingComponents" : true 46 | }, 47 | "quickapp" : {}, 48 | "mp-weixin" : { 49 | "usingComponents" : true, 50 | "appid" : "wxdc0787b0235752a6", 51 | "setting" : { 52 | "urlCheck" : true 53 | } 54 | }, 55 | "mp-alipay" : { 56 | "usingComponents" : true 57 | }, 58 | "mp-baidu" : { 59 | "usingComponents" : true 60 | }, 61 | "mp-toutiao" : { 62 | "usingComponents" : true 63 | }, 64 | "mp-qq" : { 65 | "usingComponents" : true 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- 1 | import { baseUrl } from "@/config"; 2 | import Method from "@/enums/Method"; 3 | import { Result, RequestOptions } from "@/model/Result"; 4 | 5 | // 默认请求头 6 | const header = { "Content-Type": "application/json; charset=UTF-8" }; 7 | 8 | // 默认超时时间 9 | const timeout = 10000; 10 | 11 | const request = ( 12 | url: string, 13 | options: RequestOptions = { method: Method.GET } 14 | ): Promise => { 15 | return new Promise((resolve, reject) => { 16 | const { method, data, gateway, loading, headers, remoteUrl } = options; 17 | const tokenStr = "test"; 18 | const token = 19 | tokenStr && tokenStr.length > 0 ? { Authorization: tokenStr } : {}; 20 | const targetHeader = headers ? headers : header; 21 | //远端地址 如果没有特殊指明 就用baseUrl 22 | const targetUrl = remoteUrl ? remoteUrl : baseUrl; 23 | //加载动画 24 | loading && uni.showLoading(); 25 | uni.request({ 26 | url: gateway ? targetUrl + gateway + url : targetUrl + url, 27 | method, 28 | data, 29 | timeout, 30 | header: { ...targetHeader, ...token }, 31 | success: ({ data }) => { 32 | //类型转换 33 | const { code, data: resData, message } = data as Result; 34 | if (code == 401) { 35 | uni.showToast({ 36 | title: "登录信息已过期,请关闭APP后重新打开", 37 | icon: "none", 38 | mask: true, 39 | }); 40 | // removeToken() 41 | reject(resData); 42 | } 43 | 44 | if (!code || code !== 200) { 45 | uni.showToast({ 46 | title: message || "服务器开小差了,请稍后再试~", 47 | icon: "none", 48 | mask: true, 49 | }); 50 | reject(resData); 51 | } 52 | resolve(resData); 53 | }, 54 | fail: ({ errMsg }) => { 55 | uni.showModal({ 56 | title: "提示", 57 | content: `服务器开小差了,请稍后再试~`, 58 | showCancel: false, 59 | }); 60 | console.error(errMsg); 61 | }, 62 | complete: () => { 63 | //关闭加载动画 64 | loading && uni.hideLoading(); 65 | }, 66 | }); 67 | }); 68 | }; 69 | 70 | /** 71 | * 72 | * @param url 路径 73 | * @param options 74 | * @returns 75 | */ 76 | export const uploadFile = ( 77 | url: string, 78 | name: string, 79 | path: string, 80 | options: RequestOptions = { method: Method.GET } 81 | ): Promise => { 82 | const { data: formData, gateway } = options; 83 | //JSON化 84 | let jsonData: any; 85 | // #ifdef MP-WEIXIN 86 | jsonData = JSON.stringify(formData); 87 | // #endif 88 | // #ifdef H5 89 | jsonData = formData; 90 | // #endif 91 | return new Promise((resolve, reject) => { 92 | uni.uploadFile({ 93 | url: gateway ? baseUrl + gateway + url : baseUrl + url, 94 | filePath: path, 95 | name: name, 96 | formData: formData, 97 | success: ({ data }) => { 98 | resolve(JSON.parse(data)); 99 | }, 100 | fail(err) { 101 | uni.showModal({ 102 | title: "提示", 103 | content: `服务器开小差了,请稍后再试~`, 104 | showCancel: false, 105 | }); 106 | console.error(err); 107 | }, 108 | }); 109 | }); 110 | }; 111 | 112 | export default request; 113 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "id-photos", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "npm run dev:h5", 7 | "dev:mp-weixin": "cross-env NODE_ENV=development UNI_PLATFORM=mp-weixin vue-cli-service uni-build --watch", 8 | "build:mp-weixin": "cross-env NODE_ENV=production UNI_PLATFORM=mp-weixin vue-cli-service uni-build", 9 | "build": "npm run build:h5", 10 | "build:app-plus": "cross-env NODE_ENV=production UNI_PLATFORM=app-plus vue-cli-service uni-build", 11 | "build:custom": "cross-env NODE_ENV=production uniapp-cli custom", 12 | "build:h5": "cross-env NODE_ENV=production UNI_PLATFORM=h5 vue-cli-service uni-build", 13 | "build:mp-360": "cross-env NODE_ENV=production UNI_PLATFORM=mp-360 vue-cli-service uni-build", 14 | "build:mp-alipay": "cross-env NODE_ENV=production UNI_PLATFORM=mp-alipay vue-cli-service uni-build", 15 | "build:mp-baidu": "cross-env NODE_ENV=production UNI_PLATFORM=mp-baidu vue-cli-service uni-build", 16 | "build:mp-jd": "cross-env NODE_ENV=production UNI_PLATFORM=mp-jd vue-cli-service uni-build", 17 | "build:mp-kuaishou": "cross-env NODE_ENV=production UNI_PLATFORM=mp-kuaishou vue-cli-service uni-build", 18 | "build:mp-lark": "cross-env NODE_ENV=production UNI_PLATFORM=mp-lark vue-cli-service uni-build", 19 | "build:mp-qq": "cross-env NODE_ENV=production UNI_PLATFORM=mp-qq vue-cli-service uni-build", 20 | "build:mp-toutiao": "cross-env NODE_ENV=production UNI_PLATFORM=mp-toutiao vue-cli-service uni-build", 21 | "build:mp-xhs": "cross-env NODE_ENV=production UNI_PLATFORM=mp-xhs vue-cli-service uni-build", 22 | "build:quickapp-native": "cross-env NODE_ENV=production UNI_PLATFORM=quickapp-native vue-cli-service uni-build", 23 | "build:quickapp-webview": "cross-env NODE_ENV=production UNI_PLATFORM=quickapp-webview vue-cli-service uni-build", 24 | "build:quickapp-webview-huawei": "cross-env NODE_ENV=production UNI_PLATFORM=quickapp-webview-huawei vue-cli-service uni-build", 25 | "build:quickapp-webview-union": "cross-env NODE_ENV=production UNI_PLATFORM=quickapp-webview-union vue-cli-service uni-build", 26 | "dev:app-plus": "cross-env NODE_ENV=development UNI_PLATFORM=app-plus vue-cli-service uni-build --watch", 27 | "dev:custom": "cross-env NODE_ENV=development uniapp-cli custom", 28 | "dev:h5": "cross-env NODE_ENV=development UNI_PLATFORM=h5 vue-cli-service uni-serve", 29 | "dev:mp-360": "cross-env NODE_ENV=development UNI_PLATFORM=mp-360 vue-cli-service uni-build --watch", 30 | "dev:mp-alipay": "cross-env NODE_ENV=development UNI_PLATFORM=mp-alipay vue-cli-service uni-build --watch", 31 | "dev:mp-baidu": "cross-env NODE_ENV=development UNI_PLATFORM=mp-baidu vue-cli-service uni-build --watch", 32 | "dev:mp-jd": "cross-env NODE_ENV=development UNI_PLATFORM=mp-jd vue-cli-service uni-build --watch", 33 | "dev:mp-kuaishou": "cross-env NODE_ENV=development UNI_PLATFORM=mp-kuaishou vue-cli-service uni-build --watch", 34 | "dev:mp-lark": "cross-env NODE_ENV=development UNI_PLATFORM=mp-lark vue-cli-service uni-build --watch", 35 | "dev:mp-qq": "cross-env NODE_ENV=development UNI_PLATFORM=mp-qq vue-cli-service uni-build --watch", 36 | "dev:mp-toutiao": "cross-env NODE_ENV=development UNI_PLATFORM=mp-toutiao vue-cli-service uni-build --watch", 37 | "dev:mp-xhs": "cross-env NODE_ENV=development UNI_PLATFORM=mp-xhs vue-cli-service uni-build --watch", 38 | "dev:quickapp-native": "cross-env NODE_ENV=development UNI_PLATFORM=quickapp-native vue-cli-service uni-build --watch", 39 | "dev:quickapp-webview": "cross-env NODE_ENV=development UNI_PLATFORM=quickapp-webview vue-cli-service uni-build --watch", 40 | "dev:quickapp-webview-huawei": "cross-env NODE_ENV=development UNI_PLATFORM=quickapp-webview-huawei vue-cli-service uni-build --watch", 41 | "dev:quickapp-webview-union": "cross-env NODE_ENV=development UNI_PLATFORM=quickapp-webview-union vue-cli-service uni-build --watch", 42 | "info": "node node_modules/@dcloudio/vue-cli-plugin-uni/commands/info.js", 43 | "serve:quickapp-native": "node node_modules/@dcloudio/uni-quickapp-native/bin/serve.js", 44 | "test:android": "cross-env UNI_PLATFORM=app-plus UNI_OS_NAME=android jest -i", 45 | "test:h5": "cross-env UNI_PLATFORM=h5 jest -i", 46 | "test:ios": "cross-env UNI_PLATFORM=app-plus UNI_OS_NAME=ios jest -i", 47 | "test:mp-baidu": "cross-env UNI_PLATFORM=mp-baidu jest -i", 48 | "test:mp-weixin": "cross-env UNI_PLATFORM=mp-weixin jest -i" 49 | }, 50 | "dependencies": { 51 | "@dcloudio/uni-app": "^2.0.2-4020420240722003", 52 | "@dcloudio/uni-app-plus": "^2.0.2-4020420240722003", 53 | "@dcloudio/uni-h5": "^2.0.2-4020420240722003", 54 | "@dcloudio/uni-i18n": "^2.0.2-4020420240722003", 55 | "@dcloudio/uni-mp-360": "^2.0.2-4020420240722003", 56 | "@dcloudio/uni-mp-alipay": "^2.0.2-4020420240722003", 57 | "@dcloudio/uni-mp-baidu": "^2.0.2-4020420240722003", 58 | "@dcloudio/uni-mp-jd": "^2.0.2-4020420240722003", 59 | "@dcloudio/uni-mp-kuaishou": "^2.0.2-4020420240722003", 60 | "@dcloudio/uni-mp-lark": "^2.0.2-4020420240722003", 61 | "@dcloudio/uni-mp-qq": "^2.0.2-4020420240722003", 62 | "@dcloudio/uni-mp-toutiao": "^2.0.2-4020420240722003", 63 | "@dcloudio/uni-mp-vue": "^2.0.2-4020420240722003", 64 | "@dcloudio/uni-mp-weixin": "^2.0.2-4020420240722003", 65 | "@dcloudio/uni-mp-xhs": "^2.0.2-4020420240722003", 66 | "@dcloudio/uni-quickapp-native": "^2.0.2-4020420240722003", 67 | "@dcloudio/uni-quickapp-webview": "^2.0.2-4020420240722003", 68 | "@dcloudio/uni-stacktracey": "^2.0.2-4020420240722003", 69 | "@dcloudio/uni-stat": "^2.0.2-4020420240722003", 70 | "@vue/shared": "^3.0.0", 71 | "core-js": "^3.8.3", 72 | "flyio": "^0.6.2", 73 | "lodash": "^4.17.21", 74 | "miniprogram-api-typings": "^3.12.3", 75 | "uview-ui": "2.0.36", 76 | "vconsole": "^3.15.1", 77 | "vue": ">= 2.6.14 < 2.7", 78 | "vue-class-component": "^7.2.6", 79 | "vue-property-decorator": "^9.1.2", 80 | "vuex": "3.2.0", 81 | "vuex-class": "^0.3.2" 82 | }, 83 | "devDependencies": { 84 | "@babel/plugin-syntax-typescript": "^7.2.0", 85 | "@dcloudio/types": "^3.3.2", 86 | "@dcloudio/uni-automator": "^2.0.2-4020420240722003", 87 | "@dcloudio/uni-cli-i18n": "^2.0.2-4020420240722003", 88 | "@dcloudio/uni-cli-shared": "^2.0.2-4020420240722003", 89 | "@dcloudio/uni-helper-json": "*", 90 | "@dcloudio/uni-migration": "^2.0.2-4020420240722003", 91 | "@dcloudio/uni-template-compiler": "^2.0.2-4020420240722003", 92 | "@dcloudio/vue-cli-plugin-hbuilderx": "^2.0.2-4020420240722003", 93 | "@dcloudio/vue-cli-plugin-uni": "^2.0.2-4020420240722003", 94 | "@dcloudio/vue-cli-plugin-uni-optimize": "^2.0.2-4020420240722003", 95 | "@dcloudio/webpack-uni-mp-loader": "^2.0.2-4020420240722003", 96 | "@dcloudio/webpack-uni-pages-loader": "^2.0.2-4020420240722003", 97 | "@types/lodash": "^4.17.7", 98 | "@vue/cli-plugin-babel": "~5.0.0", 99 | "@vue/cli-plugin-typescript": "~5.0.8", 100 | "@vue/cli-service": "~5.0.0", 101 | "babel-plugin-import": "^1.11.0", 102 | "cross-env": "^7.0.2", 103 | "jest": "^25.4.0", 104 | "postcss-comment": "^2.0.0", 105 | "sass": "^1.78.0", 106 | "sass-loader": "14", 107 | "typescript": "~4.5.5", 108 | "vue-template-compiler": ">= 2.6.14 < 2.7" 109 | }, 110 | "browserslist": [ 111 | "Android >= 4.4", 112 | "ios >= 9" 113 | ], 114 | "uni-app": { 115 | "scripts": {} 116 | } 117 | } 118 | -------------------------------------------------------------------------------- /src/pages/photo/index.vue: -------------------------------------------------------------------------------- 1 | 59 | 60 | 198 | 199 | 302 | -------------------------------------------------------------------------------- /src/pages/index/index.vue: -------------------------------------------------------------------------------- 1 | 69 | 70 | 234 | 235 | 409 | -------------------------------------------------------------------------------- /src/pages/photo/edit.vue: -------------------------------------------------------------------------------- 1 | 39 | 300 | 373 | -------------------------------------------------------------------------------- /src/model/PhotoSize.ts: -------------------------------------------------------------------------------- 1 | export interface PhotoSize { 2 | id?: number; 3 | name?: string; 4 | pxHeight: number; 5 | pxWidth: number; 6 | dpi: number; 7 | mmHeight: number; 8 | mmWidth: number; 9 | hot?: boolean; 10 | } 11 | 12 | export const photoSizes: Array = [ 13 | { 14 | id: 1, 15 | name: "国家公务员考试", 16 | pxHeight: 579, 17 | pxWidth: 413, 18 | dpi: 300, 19 | mmHeight: 49, 20 | mmWidth: 35, 21 | }, 22 | { 23 | id: 2, 24 | name: "驾驶证", 25 | pxWidth: 260, 26 | pxHeight: 378, 27 | dpi: 300, 28 | mmWidth: 22, 29 | mmHeight: 32, 30 | }, 31 | { 32 | id: 3, 33 | name: "小一寸", 34 | pxWidth: 259, 35 | pxHeight: 377, 36 | dpi: 300, 37 | mmWidth: 22, 38 | mmHeight: 32, 39 | }, 40 | { 41 | id: 4, 42 | name: "小二寸", 43 | pxWidth: 413, 44 | pxHeight: 531, 45 | dpi: 300, 46 | mmWidth: 35, 47 | mmHeight: 45, 48 | }, 49 | { 50 | id: 5, 51 | name: "简历照", 52 | pxWidth: 295, 53 | pxHeight: 413, 54 | dpi: 300, 55 | mmWidth: 25, 56 | mmHeight: 35, 57 | }, 58 | { 59 | id: 6, 60 | name: "硕士研究生考试报名", 61 | pxWidth: 480, 62 | pxHeight: 640, 63 | dpi: 300, 64 | mmWidth: 41, 65 | mmHeight: 54, 66 | }, 67 | { 68 | id: 7, 69 | name: "英语四六级", 70 | pxWidth: 390, 71 | pxHeight: 567, 72 | dpi: 300, 73 | mmWidth: 33, 74 | mmHeight: 48, 75 | }, 76 | { 77 | id: 8, 78 | name: "学生证", 79 | pxWidth: 295, 80 | pxHeight: 413, 81 | dpi: 300, 82 | mmWidth: 25, 83 | mmHeight: 35, 84 | }, 85 | { 86 | id: 9, 87 | name: "社保证", 88 | pxWidth: 358, 89 | pxHeight: 441, 90 | dpi: 300, 91 | mmWidth: 26, 92 | mmHeight: 32, 93 | }, 94 | { 95 | id: 10, 96 | name: "在职研究生考试", 97 | pxWidth: 390, 98 | pxHeight: 567, 99 | dpi: 300, 100 | mmWidth: 33, 101 | mmHeight: 48, 102 | }, 103 | { 104 | id: 11, 105 | name: "一寸照", 106 | pxWidth: 295, 107 | pxHeight: 413, 108 | dpi: 300, 109 | mmWidth: 25, 110 | mmHeight: 35, 111 | }, 112 | { 113 | id: 12, 114 | name: "二寸照", 115 | pxWidth: 413, 116 | pxHeight: 579, 117 | dpi: 300, 118 | mmWidth: 35, 119 | mmHeight: 49, 120 | }, 121 | ]; 122 | 123 | /** 124 | * 通过配置id获取配置 125 | * @param id 配置的id 126 | * @returns 配置 127 | */ 128 | export const getPhotoSize = (id: number) => { 129 | return photoSizes.find((item) => item.id === id); 130 | }; 131 | 132 | export const findSizeByKey = (key: string) => { 133 | return allSize.filter((item) => item.name && item.name.indexOf(key) > 0); 134 | }; 135 | 136 | /** 137 | * 所有尺寸证件照 138 | */ 139 | export const allSize: Array = [ 140 | { 141 | id: 1, 142 | name: "一寸", 143 | pxHeight: 413, 144 | pxWidth: 295, 145 | dpi: 300, 146 | mmHeight: 35, 147 | mmWidth: 25, 148 | }, 149 | { 150 | id: 2, 151 | name: "二寸", 152 | pxHeight: 579, 153 | pxWidth: 413, 154 | dpi: 300, 155 | mmHeight: 49, 156 | mmWidth: 35, 157 | }, 158 | { 159 | id: 3, 160 | name: "小二寸", 161 | pxHeight: 531, 162 | pxWidth: 413, 163 | dpi: 300, 164 | mmHeight: 45, 165 | mmWidth: 35, 166 | }, 167 | { 168 | id: 4, 169 | name: "大一寸", 170 | pxHeight: 567, 171 | pxWidth: 390, 172 | dpi: 300, 173 | mmHeight: 48, 174 | mmWidth: 33, 175 | }, 176 | { 177 | id: 5, 178 | name: "社保证(300dpi, 无回执)", 179 | pxHeight: 441, 180 | pxWidth: 358, 181 | dpi: 300, 182 | mmHeight: 32, 183 | mmWidth: 26, 184 | }, 185 | { 186 | id: 6, 187 | name: "小一寸", 188 | pxHeight: 378, 189 | pxWidth: 260, 190 | dpi: 300, 191 | mmHeight: 32, 192 | mmWidth: 22, 193 | }, 194 | { 195 | id: 7, 196 | name: "驾驶证、驾照(无回执、小一寸)", 197 | pxHeight: 378, 198 | pxWidth: 260, 199 | dpi: 500, 200 | mmHeight: 32, 201 | mmWidth: 22, 202 | }, 203 | { 204 | id: 8, 205 | name: "简历照片", 206 | pxHeight: 413, 207 | pxWidth: 295, 208 | dpi: 300, 209 | mmHeight: 35, 210 | mmWidth: 25, 211 | }, 212 | { 213 | id: 9, 214 | name: "美国签证", 215 | pxHeight: 600, 216 | pxWidth: 600, 217 | dpi: 300, 218 | mmHeight: 51, 219 | mmWidth: 51, 220 | }, 221 | { 222 | id: 10, 223 | name: "工商银行网申(100×140)", 224 | pxHeight: 140, 225 | pxWidth: 100, 226 | dpi: 300, 227 | mmHeight: 12, 228 | mmWidth: 8, 229 | }, 230 | { 231 | id: 11, 232 | name: "交通银行网申(一寸)", 233 | pxHeight: 413, 234 | pxWidth: 295, 235 | dpi: 300, 236 | mmHeight: 35, 237 | mmWidth: 25, 238 | }, 239 | { 240 | id: 12, 241 | name: "建设银行网申", 242 | pxHeight: 160, 243 | pxWidth: 120, 244 | dpi: 300, 245 | mmHeight: 13, 246 | mmWidth: 10, 247 | }, 248 | { 249 | id: 13, 250 | name: "学籍网", 251 | pxHeight: 630, 252 | pxWidth: 472, 253 | dpi: 150, 254 | mmHeight: 107, 255 | mmWidth: 80, 256 | }, 257 | { 258 | id: 14, 259 | name: "中国人民银行网申", 260 | pxHeight: 260, 261 | pxWidth: 200, 262 | dpi: 300, 263 | mmHeight: 22, 264 | mmWidth: 17, 265 | }, 266 | { 267 | id: 15, 268 | name: "工商银行网申(240×370)", 269 | pxHeight: 370, 270 | pxWidth: 240, 271 | dpi: 300, 272 | mmHeight: 31, 273 | mmWidth: 20, 274 | }, 275 | { 276 | id: 16, 277 | name: "工商银行网申生活照", 278 | pxHeight: 320, 279 | pxWidth: 240, 280 | dpi: 300, 281 | mmHeight: 27, 282 | mmWidth: 20, 283 | }, 284 | { 285 | id: 17, 286 | name: "中国移动网上报名", 287 | pxHeight: 120, 288 | pxWidth: 96, 289 | dpi: 300, 290 | mmHeight: 10, 291 | mmWidth: 8, 292 | }, 293 | { 294 | id: 18, 295 | name: "上海中考网报名", 296 | pxHeight: 240, 297 | pxWidth: 168, 298 | dpi: 300, 299 | mmHeight: 20, 300 | mmWidth: 14, 301 | }, 302 | { 303 | id: 19, 304 | name: "成都人事考试网", 305 | pxHeight: 126, 306 | pxWidth: 102, 307 | dpi: 300, 308 | mmHeight: 11, 309 | mmWidth: 9, 310 | }, 311 | { 312 | id: 20, 313 | name: "网申国企", 314 | pxHeight: 100, 315 | pxWidth: 70, 316 | dpi: 300, 317 | mmHeight: 8, 318 | mmWidth: 6, 319 | }, 320 | { 321 | id: 21, 322 | name: "北大考研网上报名", 323 | pxHeight: 237, 324 | pxWidth: 178, 325 | dpi: 300, 326 | mmHeight: 20, 327 | mmWidth: 15, 328 | }, 329 | { 330 | id: 22, 331 | name: "北京教师信息网", 332 | pxHeight: 189, 333 | pxWidth: 154, 334 | dpi: 300, 335 | mmHeight: 16, 336 | mmWidth: 13, 337 | }, 338 | { 339 | id: 23, 340 | name: "学信网", 341 | pxHeight: 640, 342 | pxWidth: 480, 343 | dpi: 300, 344 | mmHeight: 54, 345 | mmWidth: 41, 346 | }, 347 | { 348 | id: 24, 349 | name: "合肥人事网招聘(二寸)", 350 | pxHeight: 579, 351 | pxWidth: 413, 352 | dpi: 300, 353 | mmHeight: 49, 354 | mmWidth: 35, 355 | }, 356 | { 357 | id: 25, 358 | name: "新生网站登记", 359 | pxHeight: 172, 360 | pxWidth: 144, 361 | dpi: 300, 362 | mmHeight: 15, 363 | mmWidth: 12, 364 | }, 365 | { 366 | id: 26, 367 | name: "农业银行网申(一寸)", 368 | pxHeight: 413, 369 | pxWidth: 295, 370 | dpi: 300, 371 | mmHeight: 35, 372 | mmWidth: 25, 373 | }, 374 | { 375 | id: 27, 376 | name: "网约车照片(小二寸)", 377 | pxHeight: 661, 378 | pxWidth: 455, 379 | dpi: 300, 380 | mmHeight: 48, 381 | mmWidth: 33, 382 | }, 383 | { 384 | id: 28, 385 | name: "网约车运营证", 386 | pxHeight: 448, 387 | pxWidth: 358, 388 | dpi: 300, 389 | mmHeight: 38, 390 | mmWidth: 30, 391 | }, 392 | { 393 | id: 29, 394 | name: "兵役登记(全国征兵网)", 395 | pxHeight: 441, 396 | pxWidth: 358, 397 | dpi: 300, 398 | mmHeight: 32, 399 | mmWidth: 26, 400 | }, 401 | { 402 | id: 30, 403 | name: "中国人事网报名", 404 | pxHeight: 413, 405 | pxWidth: 295, 406 | dpi: 300, 407 | mmHeight: 35, 408 | mmWidth: 25, 409 | }, 410 | { 411 | id: 31, 412 | name: "普通话水平测试(大一寸,0~20kb)", 413 | pxHeight: 567, 414 | pxWidth: 390, 415 | dpi: 300, 416 | mmHeight: 48, 417 | mmWidth: 33, 418 | }, 419 | { 420 | id: 32, 421 | name: "中国护照(大一寸)", 422 | pxHeight: 567, 423 | pxWidth: 390, 424 | dpi: 300, 425 | mmHeight: 48, 426 | mmWidth: 33, 427 | }, 428 | { 429 | id: 33, 430 | name: "教师资格证", 431 | pxHeight: 413, 432 | pxWidth: 295, 433 | dpi: 300, 434 | mmHeight: 35, 435 | mmWidth: 25, 436 | }, 437 | { 438 | id: 34, 439 | name: "台湾通行证(大一寸,无回执)", 440 | pxHeight: 567, 441 | pxWidth: 390, 442 | dpi: 300, 443 | mmHeight: 48, 444 | mmWidth: 33, 445 | }, 446 | { 447 | id: 35, 448 | name: "港澳通行证(大一寸,无回执)", 449 | pxHeight: 567, 450 | pxWidth: 390, 451 | dpi: 300, 452 | mmHeight: 48, 453 | mmWidth: 33, 454 | }, 455 | { 456 | id: 36, 457 | name: "中级会计职称考试(一寸)", 458 | pxHeight: 413, 459 | pxWidth: 295, 460 | dpi: 300, 461 | mmHeight: 35, 462 | mmWidth: 25, 463 | }, 464 | { 465 | id: 37, 466 | name: "安徽公务员(一寸)", 467 | pxHeight: 413, 468 | pxWidth: 295, 469 | dpi: 300, 470 | mmHeight: 35, 471 | mmWidth: 25, 472 | }, 473 | { 474 | id: 38, 475 | name: "河南公务员(一寸)", 476 | pxHeight: 413, 477 | pxWidth: 295, 478 | dpi: 300, 479 | mmHeight: 35, 480 | mmWidth: 25, 481 | }, 482 | { 483 | id: 39, 484 | name: "湖南公务员(一寸)", 485 | pxHeight: 413, 486 | pxWidth: 295, 487 | dpi: 300, 488 | mmHeight: 35, 489 | mmWidth: 25, 490 | }, 491 | { 492 | id: 40, 493 | name: "西藏公务员(一寸)", 494 | pxHeight: 413, 495 | pxWidth: 295, 496 | dpi: 300, 497 | mmHeight: 35, 498 | mmWidth: 25, 499 | }, 500 | { 501 | id: 41, 502 | name: "新疆公务员(小二寸)", 503 | pxHeight: 531, 504 | pxWidth: 413, 505 | dpi: 300, 506 | mmHeight: 45, 507 | mmWidth: 35, 508 | }, 509 | { 510 | id: 42, 511 | name: "健康证(一寸)", 512 | pxHeight: 413, 513 | pxWidth: 295, 514 | dpi: 300, 515 | mmHeight: 35, 516 | mmWidth: 25, 517 | }, 518 | { 519 | id: 43, 520 | name: "社会工作者资格证(一寸)", 521 | pxHeight: 413, 522 | pxWidth: 295, 523 | dpi: 300, 524 | mmHeight: 35, 525 | mmWidth: 25, 526 | }, 527 | { 528 | id: 44, 529 | name: "陕西行政执法证(一寸)", 530 | pxHeight: 413, 531 | pxWidth: 295, 532 | dpi: 300, 533 | mmHeight: 35, 534 | mmWidth: 25, 535 | }, 536 | { 537 | id: 45, 538 | name: "浙江行政执法证(一寸)", 539 | pxHeight: 413, 540 | pxWidth: 295, 541 | dpi: 300, 542 | mmHeight: 35, 543 | mmWidth: 25, 544 | }, 545 | { 546 | id: 46, 547 | name: "雅思考试(大一寸)", 548 | pxHeight: 567, 549 | pxWidth: 390, 550 | dpi: 300, 551 | mmHeight: 48, 552 | mmWidth: 33, 553 | }, 554 | { 555 | id: 47, 556 | name: "一寸工作证", 557 | pxHeight: 413, 558 | pxWidth: 295, 559 | dpi: 300, 560 | mmHeight: 35, 561 | mmWidth: 25, 562 | }, 563 | { 564 | id: 48, 565 | name: "江西安全监管执法证(一寸)", 566 | pxHeight: 413, 567 | pxWidth: 295, 568 | dpi: 300, 569 | mmHeight: 35, 570 | mmWidth: 25, 571 | }, 572 | { 573 | id: 49, 574 | name: "在职研究生考试(大一寸)", 575 | pxHeight: 567, 576 | pxWidth: 390, 577 | dpi: 300, 578 | mmHeight: 48, 579 | mmWidth: 33, 580 | }, 581 | { 582 | id: 50, 583 | name: "中国签证(大一寸)", 584 | pxHeight: 567, 585 | pxWidth: 390, 586 | dpi: 300, 587 | mmHeight: 48, 588 | mmWidth: 33, 589 | }, 590 | { 591 | id: 51, 592 | name: "英语四六级考试(大一寸,20~200kb)", 593 | pxHeight: 567, 594 | pxWidth: 390, 595 | dpi: 300, 596 | mmHeight: 48, 597 | mmWidth: 33, 598 | }, 599 | { 600 | id: 52, 601 | name: "广州羊城通学生乘车卡(大一寸)", 602 | pxHeight: 567, 603 | pxWidth: 390, 604 | dpi: 300, 605 | mmHeight: 48, 606 | mmWidth: 33, 607 | }, 608 | { 609 | id: 53, 610 | name: "普通话水平测试(大一寸,150~300kb)", 611 | pxHeight: 567, 612 | pxWidth: 390, 613 | dpi: 300, 614 | mmHeight: 48, 615 | mmWidth: 33, 616 | }, 617 | { 618 | id: 54, 619 | name: "高考报名(一寸)", 620 | pxHeight: 567, 621 | pxWidth: 390, 622 | dpi: 300, 623 | mmHeight: 48, 624 | mmWidth: 33, 625 | }, 626 | { 627 | id: 55, 628 | name: "硕士研究生考试(大一寸)", 629 | pxHeight: 567, 630 | pxWidth: 390, 631 | dpi: 300, 632 | mmHeight: 48, 633 | mmWidth: 33, 634 | }, 635 | { 636 | id: 56, 637 | name: "西安美术联考(一寸)", 638 | pxHeight: 413, 639 | pxWidth: 295, 640 | dpi: 300, 641 | mmHeight: 35, 642 | mmWidth: 25, 643 | }, 644 | { 645 | id: 57, 646 | name: "山西省全国计算机等级考试(一寸)", 647 | pxHeight: 413, 648 | pxWidth: 295, 649 | dpi: 300, 650 | mmHeight: 35, 651 | mmWidth: 25, 652 | }, 653 | { 654 | id: 58, 655 | name: "宁夏回族自治区专业技术人员(一寸)", 656 | pxHeight: 413, 657 | pxWidth: 295, 658 | dpi: 300, 659 | mmHeight: 35, 660 | mmWidth: 25, 661 | }, 662 | { 663 | id: 59, 664 | name: "宁波外语口译考试(大一寸)", 665 | pxHeight: 567, 666 | pxWidth: 390, 667 | dpi: 300, 668 | mmHeight: 48, 669 | mmWidth: 33, 670 | }, 671 | { 672 | id: 60, 673 | name: "全国计算机等级考试(大一寸,390×567)", 674 | pxHeight: 567, 675 | pxWidth: 390, 676 | dpi: 300, 677 | mmHeight: 48, 678 | mmWidth: 33, 679 | }, 680 | { 681 | id: 61, 682 | name: "辽宁二级建造证(一寸)", 683 | pxHeight: 413, 684 | pxWidth: 295, 685 | dpi: 300, 686 | mmHeight: 35, 687 | mmWidth: 25, 688 | }, 689 | { 690 | id: 62, 691 | name: "医疗类报名(一寸)", 692 | pxHeight: 413, 693 | pxWidth: 295, 694 | dpi: 300, 695 | mmHeight: 35, 696 | mmWidth: 25, 697 | }, 698 | { 699 | id: 63, 700 | name: "普通话水平测试(大一寸,30-80kb)", 701 | pxHeight: 567, 702 | pxWidth: 390, 703 | dpi: 300, 704 | mmHeight: 48, 705 | mmWidth: 33, 706 | }, 707 | { 708 | id: 64, 709 | name: "全国医用设备使用人员业务能力考评(一寸)", 710 | pxHeight: 413, 711 | pxWidth: 295, 712 | dpi: 300, 713 | mmHeight: 35, 714 | mmWidth: 25, 715 | }, 716 | { 717 | id: 65, 718 | name: "入学报名(一寸)", 719 | pxHeight: 413, 720 | pxWidth: 295, 721 | dpi: 300, 722 | mmHeight: 35, 723 | mmWidth: 25, 724 | }, 725 | { 726 | id: 66, 727 | name: "成人自考(一寸)", 728 | pxHeight: 413, 729 | pxWidth: 295, 730 | dpi: 300, 731 | mmHeight: 35, 732 | mmWidth: 25, 733 | }, 734 | { 735 | id: 67, 736 | name: "执业药师资格考试(一寸)", 737 | pxHeight: 413, 738 | pxWidth: 295, 739 | dpi: 300, 740 | mmHeight: 35, 741 | mmWidth: 25, 742 | }, 743 | { 744 | id: 68, 745 | name: "注册会计师考试(一寸)", 746 | pxHeight: 413, 747 | pxWidth: 295, 748 | dpi: 300, 749 | mmHeight: 35, 750 | mmWidth: 25, 751 | }, 752 | { 753 | id: 69, 754 | name: "护士执业资格考试(一寸)", 755 | pxHeight: 413, 756 | pxWidth: 295, 757 | dpi: 300, 758 | mmHeight: 35, 759 | mmWidth: 25, 760 | }, 761 | { 762 | id: 70, 763 | name: "一寸半身照", 764 | pxHeight: 413, 765 | pxWidth: 295, 766 | dpi: 300, 767 | mmHeight: 35, 768 | mmWidth: 25, 769 | }, 770 | { 771 | id: 71, 772 | name: "初级护师(一寸)", 773 | pxHeight: 413, 774 | pxWidth: 295, 775 | dpi: 300, 776 | mmHeight: 35, 777 | mmWidth: 25, 778 | }, 779 | { 780 | id: 72, 781 | name: "主管护师(一寸)", 782 | pxHeight: 413, 783 | pxWidth: 295, 784 | dpi: 300, 785 | mmHeight: 35, 786 | mmWidth: 25, 787 | }, 788 | { 789 | id: 73, 790 | name: "三支一扶(一寸,大于30kb)", 791 | pxHeight: 413, 792 | pxWidth: 295, 793 | dpi: 300, 794 | mmHeight: 35, 795 | mmWidth: 25, 796 | }, 797 | { 798 | id: 74, 799 | name: "入学照(一寸)", 800 | pxHeight: 413, 801 | pxWidth: 295, 802 | dpi: 300, 803 | mmHeight: 35, 804 | mmWidth: 25, 805 | }, 806 | { 807 | id: 75, 808 | name: "英语AB级(一寸,蓝底)", 809 | pxHeight: 413, 810 | pxWidth: 295, 811 | dpi: 300, 812 | mmHeight: 35, 813 | mmWidth: 25, 814 | }, 815 | { 816 | id: 76, 817 | name: "英语AB级(小一寸,蓝底)", 818 | pxHeight: 378, 819 | pxWidth: 260, 820 | dpi: 300, 821 | mmHeight: 32, 822 | mmWidth: 22, 823 | }, 824 | { 825 | id: 77, 826 | name: "大二寸", 827 | pxHeight: 626, 828 | pxWidth: 413, 829 | dpi: 300, 830 | mmHeight: 53, 831 | mmWidth: 35, 832 | }, 833 | { 834 | id: 78, 835 | name: "国考(小二寸)", 836 | pxHeight: 531, 837 | pxWidth: 413, 838 | dpi: 300, 839 | mmHeight: 45, 840 | mmWidth: 35, 841 | }, 842 | { 843 | id: 79, 844 | name: "徐州公务员(小二寸)", 845 | pxHeight: 531, 846 | pxWidth: 413, 847 | dpi: 300, 848 | mmHeight: 45, 849 | mmWidth: 35, 850 | }, 851 | { 852 | id: 80, 853 | name: "天津公务员(小二寸)", 854 | pxHeight: 531, 855 | pxWidth: 413, 856 | dpi: 300, 857 | mmHeight: 45, 858 | mmWidth: 35, 859 | }, 860 | { 861 | id: 81, 862 | name: "河北省选调生(小二寸)", 863 | pxHeight: 531, 864 | pxWidth: 413, 865 | dpi: 300, 866 | mmHeight: 45, 867 | mmWidth: 35, 868 | }, 869 | { 870 | id: 82, 871 | name: "内蒙古公务员(小二寸)", 872 | pxHeight: 531, 873 | pxWidth: 413, 874 | dpi: 300, 875 | mmHeight: 45, 876 | mmWidth: 35, 877 | }, 878 | { 879 | id: 83, 880 | name: "辽宁公务员(小二寸)", 881 | pxHeight: 531, 882 | pxWidth: 413, 883 | dpi: 300, 884 | mmHeight: 45, 885 | mmWidth: 35, 886 | }, 887 | { 888 | id: 84, 889 | name: "吉林公务员(小二寸)", 890 | pxHeight: 531, 891 | pxWidth: 413, 892 | dpi: 300, 893 | mmHeight: 45, 894 | mmWidth: 35, 895 | }, 896 | { 897 | id: 85, 898 | name: "江苏公务员(小二寸)", 899 | pxHeight: 531, 900 | pxWidth: 413, 901 | dpi: 300, 902 | mmHeight: 45, 903 | mmWidth: 35, 904 | }, 905 | { 906 | id: 86, 907 | name: "安徽公务员(小二寸)", 908 | pxHeight: 531, 909 | pxWidth: 413, 910 | dpi: 300, 911 | mmHeight: 45, 912 | mmWidth: 35, 913 | }, 914 | { 915 | id: 87, 916 | name: "福建公务员(小二寸)", 917 | pxHeight: 531, 918 | pxWidth: 413, 919 | dpi: 300, 920 | mmHeight: 45, 921 | mmWidth: 35, 922 | }, 923 | { 924 | id: 88, 925 | name: "湖南公务员(小二寸)", 926 | pxHeight: 531, 927 | pxWidth: 413, 928 | dpi: 300, 929 | mmHeight: 45, 930 | mmWidth: 35, 931 | }, 932 | { 933 | id: 89, 934 | name: "广东公务员(小二寸)", 935 | pxHeight: 531, 936 | pxWidth: 413, 937 | dpi: 300, 938 | mmHeight: 45, 939 | mmWidth: 35, 940 | }, 941 | { 942 | id: 90, 943 | name: "广州公务员(小二寸)", 944 | pxHeight: 531, 945 | pxWidth: 413, 946 | dpi: 300, 947 | mmHeight: 45, 948 | mmWidth: 35, 949 | }, 950 | { 951 | id: 91, 952 | name: "广西公务员(小二寸)", 953 | pxHeight: 531, 954 | pxWidth: 413, 955 | dpi: 300, 956 | mmHeight: 45, 957 | mmWidth: 35, 958 | }, 959 | { 960 | id: 92, 961 | name: "海南公务员(小二寸)", 962 | pxHeight: 531, 963 | pxWidth: 413, 964 | dpi: 300, 965 | mmHeight: 45, 966 | mmWidth: 35, 967 | }, 968 | { 969 | id: 93, 970 | name: "重庆公务员(小二寸)", 971 | pxHeight: 531, 972 | pxWidth: 413, 973 | dpi: 300, 974 | mmHeight: 45, 975 | mmWidth: 35, 976 | }, 977 | { 978 | id: 94, 979 | name: "四川公务员(小二寸)", 980 | pxHeight: 531, 981 | pxWidth: 413, 982 | dpi: 300, 983 | mmHeight: 45, 984 | mmWidth: 35, 985 | }, 986 | { 987 | id: 95, 988 | name: "贵州公务员(小二寸)", 989 | pxHeight: 320, 990 | pxWidth: 260, 991 | dpi: 300, 992 | mmHeight: 27, 993 | mmWidth: 22, 994 | }, 995 | { 996 | id: 96, 997 | name: "云南公务员(小二寸)", 998 | pxHeight: 531, 999 | pxWidth: 413, 1000 | dpi: 300, 1001 | mmHeight: 45, 1002 | mmWidth: 35, 1003 | }, 1004 | { 1005 | id: 97, 1006 | name: "陕西公务员(小二寸)", 1007 | pxHeight: 531, 1008 | pxWidth: 413, 1009 | dpi: 300, 1010 | mmHeight: 45, 1011 | mmWidth: 35, 1012 | }, 1013 | { 1014 | id: 98, 1015 | name: "甘肃公务员(小二寸)", 1016 | pxHeight: 531, 1017 | pxWidth: 413, 1018 | dpi: 300, 1019 | mmHeight: 45, 1020 | mmWidth: 35, 1021 | }, 1022 | { 1023 | id: 99, 1024 | name: "宁夏公务员(小二寸)", 1025 | pxHeight: 531, 1026 | pxWidth: 413, 1027 | dpi: 300, 1028 | mmHeight: 45, 1029 | mmWidth: 35, 1030 | }, 1031 | { 1032 | id: 100, 1033 | name: "泰国签证(二寸)", 1034 | pxHeight: 531, 1035 | pxWidth: 413, 1036 | dpi: 300, 1037 | mmHeight: 45, 1038 | mmWidth: 35, 1039 | }, 1040 | { 1041 | id: 101, 1042 | name: "韩国签证(小二寸)", 1043 | pxHeight: 531, 1044 | pxWidth: 413, 1045 | dpi: 300, 1046 | mmHeight: 45, 1047 | mmWidth: 35, 1048 | }, 1049 | { 1050 | id: 102, 1051 | name: "日本签证(小二寸)", 1052 | pxHeight: 531, 1053 | pxWidth: 413, 1054 | dpi: 300, 1055 | mmHeight: 45, 1056 | mmWidth: 35, 1057 | }, 1058 | { 1059 | id: 103, 1060 | name: "越南签证(小二寸)", 1061 | pxHeight: 531, 1062 | pxWidth: 413, 1063 | dpi: 300, 1064 | mmHeight: 45, 1065 | mmWidth: 35, 1066 | }, 1067 | { 1068 | id: 104, 1069 | name: "法国签证(小二寸)", 1070 | pxHeight: 531, 1071 | pxWidth: 413, 1072 | dpi: 300, 1073 | mmHeight: 45, 1074 | mmWidth: 35, 1075 | }, 1076 | { 1077 | id: 105, 1078 | name: "澳大利亚签证(小二寸)", 1079 | pxHeight: 531, 1080 | pxWidth: 413, 1081 | dpi: 300, 1082 | mmHeight: 45, 1083 | mmWidth: 35, 1084 | }, 1085 | { 1086 | id: 106, 1087 | name: "柬埔寨签证(小二寸)", 1088 | pxHeight: 531, 1089 | pxWidth: 413, 1090 | dpi: 300, 1091 | mmHeight: 45, 1092 | mmWidth: 35, 1093 | }, 1094 | { 1095 | id: 107, 1096 | name: "德国签证(小二寸)", 1097 | pxHeight: 531, 1098 | pxWidth: 413, 1099 | dpi: 300, 1100 | mmHeight: 45, 1101 | mmWidth: 35, 1102 | }, 1103 | { 1104 | id: 108, 1105 | name: "加拿大签证(小二寸,413×531px)", 1106 | pxHeight: 531, 1107 | pxWidth: 413, 1108 | dpi: 300, 1109 | mmHeight: 45, 1110 | mmWidth: 35, 1111 | }, 1112 | { 1113 | id: 109, 1114 | name: "希腊签证(小二寸)", 1115 | pxHeight: 531, 1116 | pxWidth: 413, 1117 | dpi: 300, 1118 | mmHeight: 45, 1119 | mmWidth: 35, 1120 | }, 1121 | { 1122 | id: 110, 1123 | name: "英国签证(小二寸)", 1124 | pxHeight: 531, 1125 | pxWidth: 413, 1126 | dpi: 300, 1127 | mmHeight: 45, 1128 | mmWidth: 35, 1129 | }, 1130 | { 1131 | id: 111, 1132 | name: "西班牙签证(小二寸)", 1133 | pxHeight: 531, 1134 | pxWidth: 413, 1135 | dpi: 300, 1136 | mmHeight: 45, 1137 | mmWidth: 35, 1138 | }, 1139 | { 1140 | id: 112, 1141 | name: "瑞士签证(小二寸)", 1142 | pxHeight: 531, 1143 | pxWidth: 413, 1144 | dpi: 300, 1145 | mmHeight: 45, 1146 | mmWidth: 35, 1147 | }, 1148 | { 1149 | id: 113, 1150 | name: "南非签证(小二寸)", 1151 | pxHeight: 531, 1152 | pxWidth: 413, 1153 | dpi: 300, 1154 | mmHeight: 45, 1155 | mmWidth: 35, 1156 | }, 1157 | { 1158 | id: 114, 1159 | name: "尼泊尔签证(小二寸)", 1160 | pxHeight: 531, 1161 | pxWidth: 413, 1162 | dpi: 300, 1163 | mmHeight: 45, 1164 | mmWidth: 35, 1165 | }, 1166 | { 1167 | id: 115, 1168 | name: "老挝签证(小二寸)", 1169 | pxHeight: 531, 1170 | pxWidth: 413, 1171 | dpi: 300, 1172 | mmHeight: 45, 1173 | mmWidth: 35, 1174 | }, 1175 | { 1176 | id: 116, 1177 | name: "意大利签证(成都广州)", 1178 | pxHeight: 531, 1179 | pxWidth: 413, 1180 | dpi: 300, 1181 | mmHeight: 45, 1182 | mmWidth: 35, 1183 | }, 1184 | { 1185 | id: 117, 1186 | name: "俄罗斯签证(小二寸)", 1187 | pxHeight: 531, 1188 | pxWidth: 413, 1189 | dpi: 300, 1190 | mmHeight: 45, 1191 | mmWidth: 35, 1192 | }, 1193 | { 1194 | id: 118, 1195 | name: "荷兰签证(小二寸)", 1196 | pxHeight: 531, 1197 | pxWidth: 413, 1198 | dpi: 300, 1199 | mmHeight: 45, 1200 | mmWidth: 35, 1201 | }, 1202 | { 1203 | id: 119, 1204 | name: "阿联酋签证(小二寸)", 1205 | pxHeight: 531, 1206 | pxWidth: 413, 1207 | dpi: 300, 1208 | mmHeight: 45, 1209 | mmWidth: 35, 1210 | }, 1211 | { 1212 | id: 120, 1213 | name: "奥地利签证", 1214 | pxHeight: 531, 1215 | pxWidth: 413, 1216 | dpi: 300, 1217 | mmHeight: 45, 1218 | mmWidth: 35, 1219 | }, 1220 | { 1221 | id: 121, 1222 | name: "比利时签证(小二寸)", 1223 | pxHeight: 531, 1224 | pxWidth: 413, 1225 | dpi: 300, 1226 | mmHeight: 45, 1227 | mmWidth: 35, 1228 | }, 1229 | { 1230 | id: 122, 1231 | name: "巴西签证(小二寸)", 1232 | pxHeight: 531, 1233 | pxWidth: 413, 1234 | dpi: 300, 1235 | mmHeight: 45, 1236 | mmWidth: 35, 1237 | }, 1238 | { 1239 | id: 123, 1240 | name: "埃及签证(小二寸)", 1241 | pxHeight: 531, 1242 | pxWidth: 413, 1243 | dpi: 300, 1244 | mmHeight: 45, 1245 | mmWidth: 35, 1246 | }, 1247 | { 1248 | id: 124, 1249 | name: "孟加拉签证(小二寸)", 1250 | pxHeight: 531, 1251 | pxWidth: 413, 1252 | dpi: 300, 1253 | mmHeight: 45, 1254 | mmWidth: 35, 1255 | }, 1256 | { 1257 | id: 125, 1258 | name: "马尔代夫签证(小二寸)", 1259 | pxHeight: 531, 1260 | pxWidth: 413, 1261 | dpi: 300, 1262 | mmHeight: 45, 1263 | mmWidth: 35, 1264 | }, 1265 | { 1266 | id: 126, 1267 | name: "葡萄牙签证", 1268 | pxHeight: 531, 1269 | pxWidth: 413, 1270 | dpi: 300, 1271 | mmHeight: 45, 1272 | mmWidth: 35, 1273 | }, 1274 | { 1275 | id: 127, 1276 | name: "瑞典签证(小二寸)", 1277 | pxHeight: 531, 1278 | pxWidth: 413, 1279 | dpi: 300, 1280 | mmHeight: 45, 1281 | mmWidth: 35, 1282 | }, 1283 | { 1284 | id: 128, 1285 | name: "蒙古签证(小二寸)", 1286 | pxHeight: 531, 1287 | pxWidth: 413, 1288 | dpi: 300, 1289 | mmHeight: 45, 1290 | mmWidth: 35, 1291 | }, 1292 | { 1293 | id: 129, 1294 | name: "丹麦签证", 1295 | pxHeight: 531, 1296 | pxWidth: 413, 1297 | dpi: 300, 1298 | mmHeight: 45, 1299 | mmWidth: 35, 1300 | }, 1301 | { 1302 | id: 130, 1303 | name: "芬兰签证", 1304 | pxHeight: 531, 1305 | pxWidth: 413, 1306 | dpi: 300, 1307 | mmHeight: 45, 1308 | mmWidth: 35, 1309 | }, 1310 | { 1311 | id: 131, 1312 | name: "爱尔兰签证(小二寸)", 1313 | pxHeight: 531, 1314 | pxWidth: 413, 1315 | dpi: 300, 1316 | mmHeight: 45, 1317 | mmWidth: 35, 1318 | }, 1319 | { 1320 | id: 132, 1321 | name: "匈牙利签证", 1322 | pxHeight: 531, 1323 | pxWidth: 413, 1324 | dpi: 300, 1325 | mmHeight: 45, 1326 | mmWidth: 35, 1327 | }, 1328 | { 1329 | id: 133, 1330 | name: "新加坡签证(小二寸)", 1331 | pxHeight: 531, 1332 | pxWidth: 413, 1333 | dpi: 300, 1334 | mmHeight: 45, 1335 | mmWidth: 35, 1336 | }, 1337 | { 1338 | id: 134, 1339 | name: "执业医师资格证(小二寸)", 1340 | pxHeight: 531, 1341 | pxWidth: 413, 1342 | dpi: 300, 1343 | mmHeight: 45, 1344 | mmWidth: 35, 1345 | }, 1346 | { 1347 | id: 135, 1348 | name: "菲律宾签证", 1349 | pxHeight: 531, 1350 | pxWidth: 413, 1351 | dpi: 300, 1352 | mmHeight: 45, 1353 | mmWidth: 35, 1354 | }, 1355 | { 1356 | id: 136, 1357 | name: "印度尼西亚签证(小二寸)", 1358 | pxHeight: 531, 1359 | pxWidth: 413, 1360 | dpi: 300, 1361 | mmHeight: 45, 1362 | mmWidth: 35, 1363 | }, 1364 | { 1365 | id: 137, 1366 | name: "墨西哥签证(小二寸)", 1367 | pxHeight: 531, 1368 | pxWidth: 413, 1369 | dpi: 300, 1370 | mmHeight: 45, 1371 | mmWidth: 35, 1372 | }, 1373 | { 1374 | id: 138, 1375 | name: "乌克兰签证(小二寸)", 1376 | pxHeight: 531, 1377 | pxWidth: 413, 1378 | dpi: 300, 1379 | mmHeight: 45, 1380 | mmWidth: 35, 1381 | }, 1382 | { 1383 | id: 139, 1384 | name: "波兰签证", 1385 | pxHeight: 531, 1386 | pxWidth: 413, 1387 | dpi: 300, 1388 | mmHeight: 45, 1389 | mmWidth: 35, 1390 | }, 1391 | { 1392 | id: 140, 1393 | name: "智利签证(小二寸)", 1394 | pxHeight: 531, 1395 | pxWidth: 413, 1396 | dpi: 300, 1397 | mmHeight: 45, 1398 | mmWidth: 35, 1399 | }, 1400 | { 1401 | id: 141, 1402 | name: "文莱签证(小二寸)", 1403 | pxHeight: 531, 1404 | pxWidth: 413, 1405 | dpi: 300, 1406 | mmHeight: 45, 1407 | mmWidth: 35, 1408 | }, 1409 | { 1410 | id: 142, 1411 | name: "马达加斯加签证(小二寸)", 1412 | pxHeight: 531, 1413 | pxWidth: 413, 1414 | dpi: 300, 1415 | mmHeight: 45, 1416 | mmWidth: 35, 1417 | }, 1418 | { 1419 | id: 143, 1420 | name: "沙特阿拉伯签证(小二寸)", 1421 | pxHeight: 531, 1422 | pxWidth: 413, 1423 | dpi: 300, 1424 | mmHeight: 45, 1425 | mmWidth: 35, 1426 | }, 1427 | { 1428 | id: 144, 1429 | name: "赞比亚签证(小二寸)", 1430 | pxHeight: 531, 1431 | pxWidth: 413, 1432 | dpi: 300, 1433 | mmHeight: 45, 1434 | mmWidth: 35, 1435 | }, 1436 | { 1437 | id: 145, 1438 | name: "克罗地亚签证(小二寸)", 1439 | pxHeight: 531, 1440 | pxWidth: 413, 1441 | dpi: 300, 1442 | mmHeight: 45, 1443 | mmWidth: 35, 1444 | }, 1445 | { 1446 | id: 146, 1447 | name: "罗马尼亚签证(小二寸)", 1448 | pxHeight: 531, 1449 | pxWidth: 413, 1450 | dpi: 300, 1451 | mmHeight: 45, 1452 | mmWidth: 35, 1453 | }, 1454 | { 1455 | id: 147, 1456 | name: "乌兹别克斯坦签证(小二寸)", 1457 | pxHeight: 531, 1458 | pxWidth: 413, 1459 | dpi: 300, 1460 | mmHeight: 45, 1461 | mmWidth: 35, 1462 | }, 1463 | { 1464 | id: 148, 1465 | name: "哈萨克斯坦签证(小二寸)", 1466 | pxHeight: 531, 1467 | pxWidth: 413, 1468 | dpi: 300, 1469 | mmHeight: 45, 1470 | mmWidth: 35, 1471 | }, 1472 | { 1473 | id: 149, 1474 | name: "巴基斯坦签证(小二寸)", 1475 | pxHeight: 531, 1476 | pxWidth: 413, 1477 | dpi: 300, 1478 | mmHeight: 45, 1479 | mmWidth: 35, 1480 | }, 1481 | { 1482 | id: 150, 1483 | name: "纳米比亚签证(小二寸)", 1484 | pxHeight: 531, 1485 | pxWidth: 413, 1486 | dpi: 300, 1487 | mmHeight: 45, 1488 | mmWidth: 35, 1489 | }, 1490 | { 1491 | id: 151, 1492 | name: "尼日利亚签证(小二寸)", 1493 | pxHeight: 531, 1494 | pxWidth: 413, 1495 | dpi: 300, 1496 | mmHeight: 45, 1497 | mmWidth: 35, 1498 | }, 1499 | { 1500 | id: 152, 1501 | name: "巴林签证(小二寸)", 1502 | pxHeight: 531, 1503 | pxWidth: 413, 1504 | dpi: 300, 1505 | mmHeight: 45, 1506 | mmWidth: 35, 1507 | }, 1508 | { 1509 | id: 153, 1510 | name: "古巴签证(小二寸)", 1511 | pxHeight: 531, 1512 | pxWidth: 413, 1513 | dpi: 300, 1514 | mmHeight: 45, 1515 | mmWidth: 35, 1516 | }, 1517 | { 1518 | id: 154, 1519 | name: "捷克签证(小二寸)", 1520 | pxHeight: 531, 1521 | pxWidth: 413, 1522 | dpi: 300, 1523 | mmHeight: 45, 1524 | mmWidth: 35, 1525 | }, 1526 | { 1527 | id: 155, 1528 | name: "斯洛伐克签证(小二寸)", 1529 | pxHeight: 531, 1530 | pxWidth: 413, 1531 | dpi: 300, 1532 | mmHeight: 45, 1533 | mmWidth: 35, 1534 | }, 1535 | { 1536 | id: 156, 1537 | name: "伊朗签证(小二寸)", 1538 | pxHeight: 531, 1539 | pxWidth: 413, 1540 | dpi: 300, 1541 | mmHeight: 45, 1542 | mmWidth: 35, 1543 | }, 1544 | { 1545 | id: 157, 1546 | name: "卡塔尔签证(小二寸)", 1547 | pxHeight: 531, 1548 | pxWidth: 413, 1549 | dpi: 300, 1550 | mmHeight: 45, 1551 | mmWidth: 35, 1552 | }, 1553 | { 1554 | id: 158, 1555 | name: "四川行政执法证(小二寸)", 1556 | pxHeight: 531, 1557 | pxWidth: 413, 1558 | dpi: 300, 1559 | mmHeight: 45, 1560 | mmWidth: 35, 1561 | }, 1562 | { 1563 | id: 159, 1564 | name: "河北行政执法证(小二寸)", 1565 | pxHeight: 531, 1566 | pxWidth: 413, 1567 | dpi: 300, 1568 | mmHeight: 45, 1569 | mmWidth: 35, 1570 | }, 1571 | { 1572 | id: 160, 1573 | name: "二寸工作证", 1574 | pxHeight: 579, 1575 | pxWidth: 413, 1576 | dpi: 300, 1577 | mmHeight: 49, 1578 | mmWidth: 35, 1579 | }, 1580 | { 1581 | id: 161, 1582 | name: "北京导游证(小二寸)", 1583 | pxHeight: 531, 1584 | pxWidth: 413, 1585 | dpi: 300, 1586 | mmHeight: 45, 1587 | mmWidth: 35, 1588 | }, 1589 | { 1590 | id: 162, 1591 | name: "四川执业药师注册工作照(二寸)", 1592 | pxHeight: 579, 1593 | pxWidth: 413, 1594 | dpi: 300, 1595 | mmHeight: 49, 1596 | mmWidth: 35, 1597 | }, 1598 | { 1599 | id: 163, 1600 | name: "西班牙商务签证(小二寸)", 1601 | pxHeight: 531, 1602 | pxWidth: 413, 1603 | dpi: 300, 1604 | mmHeight: 45, 1605 | mmWidth: 35, 1606 | }, 1607 | { 1608 | id: 164, 1609 | name: "中华人民共和国外国人工作许可(二寸)", 1610 | pxHeight: 579, 1611 | pxWidth: 413, 1612 | dpi: 300, 1613 | mmHeight: 49, 1614 | mmWidth: 35, 1615 | }, 1616 | { 1617 | id: 165, 1618 | name: "甘肃民族师范学院学籍卡(二寸)", 1619 | pxHeight: 579, 1620 | pxWidth: 413, 1621 | dpi: 300, 1622 | mmHeight: 49, 1623 | mmWidth: 35, 1624 | }, 1625 | { 1626 | id: 166, 1627 | name: "国家公务员(小二寸)", 1628 | pxHeight: 531, 1629 | pxWidth: 413, 1630 | dpi: 300, 1631 | mmHeight: 45, 1632 | mmWidth: 35, 1633 | }, 1634 | { 1635 | id: 167, 1636 | name: "入台证(小二寸)", 1637 | pxHeight: 531, 1638 | pxWidth: 413, 1639 | dpi: 300, 1640 | mmHeight: 45, 1641 | mmWidth: 35, 1642 | }, 1643 | { 1644 | id: 168, 1645 | name: "北京党员代表大会(二寸)", 1646 | pxHeight: 579, 1647 | pxWidth: 413, 1648 | dpi: 300, 1649 | mmHeight: 49, 1650 | mmWidth: 35, 1651 | }, 1652 | { 1653 | id: 169, 1654 | name: "护士资格证考试(小二寸)", 1655 | pxHeight: 531, 1656 | pxWidth: 413, 1657 | dpi: 300, 1658 | mmHeight: 45, 1659 | mmWidth: 35, 1660 | }, 1661 | { 1662 | id: 170, 1663 | name: "执业医师资格报名(小二寸)", 1664 | pxHeight: 531, 1665 | pxWidth: 413, 1666 | dpi: 300, 1667 | mmHeight: 45, 1668 | mmWidth: 35, 1669 | }, 1670 | { 1671 | id: 171, 1672 | name: "养老护理员(二寸)", 1673 | pxHeight: 579, 1674 | pxWidth: 413, 1675 | dpi: 300, 1676 | mmHeight: 49, 1677 | mmWidth: 35, 1678 | }, 1679 | { 1680 | id: 172, 1681 | name: "医疗(二寸)", 1682 | pxHeight: 579, 1683 | pxWidth: 413, 1684 | dpi: 300, 1685 | mmHeight: 49, 1686 | mmWidth: 35, 1687 | }, 1688 | { 1689 | id: 173, 1690 | name: "育婴师考试报名(小二寸)", 1691 | pxHeight: 531, 1692 | pxWidth: 413, 1693 | dpi: 300, 1694 | mmHeight: 45, 1695 | mmWidth: 35, 1696 | }, 1697 | { 1698 | id: 174, 1699 | name: "执业药师资格考试(二寸)", 1700 | pxHeight: 579, 1701 | pxWidth: 413, 1702 | dpi: 300, 1703 | mmHeight: 49, 1704 | mmWidth: 35, 1705 | }, 1706 | { 1707 | id: 175, 1708 | name: "大学入学报名(小二寸)", 1709 | pxHeight: 531, 1710 | pxWidth: 413, 1711 | dpi: 300, 1712 | mmHeight: 45, 1713 | mmWidth: 35, 1714 | }, 1715 | { 1716 | id: 176, 1717 | name: "小二寸(33×48mm)", 1718 | pxHeight: 567, 1719 | pxWidth: 390, 1720 | dpi: 300, 1721 | mmHeight: 48, 1722 | mmWidth: 33, 1723 | }, 1724 | { 1725 | id: 177, 1726 | name: "小二寸(32×40mm)", 1727 | pxHeight: 472, 1728 | pxWidth: 378, 1729 | dpi: 300, 1730 | mmHeight: 40, 1731 | mmWidth: 32, 1732 | }, 1733 | { 1734 | id: 178, 1735 | name: "二寸半身照", 1736 | pxHeight: 579, 1737 | pxWidth: 413, 1738 | dpi: 300, 1739 | mmHeight: 49, 1740 | mmWidth: 35, 1741 | }, 1742 | { 1743 | id: 179, 1744 | name: "初级护师(小二寸)", 1745 | pxHeight: 531, 1746 | pxWidth: 413, 1747 | dpi: 300, 1748 | mmHeight: 45, 1749 | mmWidth: 35, 1750 | }, 1751 | { 1752 | id: 180, 1753 | name: "主管护师(小二寸)", 1754 | pxHeight: 531, 1755 | pxWidth: 413, 1756 | dpi: 300, 1757 | mmHeight: 45, 1758 | mmWidth: 35, 1759 | }, 1760 | { 1761 | id: 181, 1762 | name: "新西兰签证(小二寸)", 1763 | pxHeight: 531, 1764 | pxWidth: 413, 1765 | dpi: 300, 1766 | mmHeight: 45, 1767 | mmWidth: 35, 1768 | }, 1769 | { 1770 | id: 182, 1771 | name: "阿根廷签证(小二寸)", 1772 | pxHeight: 531, 1773 | pxWidth: 413, 1774 | dpi: 300, 1775 | mmHeight: 45, 1776 | mmWidth: 35, 1777 | }, 1778 | { 1779 | id: 183, 1780 | name: "入学照(小二寸)", 1781 | pxHeight: 531, 1782 | pxWidth: 413, 1783 | dpi: 300, 1784 | mmHeight: 45, 1785 | mmWidth: 35, 1786 | }, 1787 | { 1788 | id: 184, 1789 | name: "泰国签证", 1790 | pxHeight: 708, 1791 | pxWidth: 472, 1792 | dpi: 300, 1793 | mmHeight: 60, 1794 | mmWidth: 40, 1795 | }, 1796 | { 1797 | id: 185, 1798 | name: "日本签证", 1799 | pxHeight: 531, 1800 | pxWidth: 531, 1801 | dpi: 300, 1802 | mmHeight: 45, 1803 | mmWidth: 45, 1804 | }, 1805 | { 1806 | id: 186, 1807 | name: "美国护照照片", 1808 | pxHeight: 600, 1809 | pxWidth: 600, 1810 | dpi: 300, 1811 | mmHeight: 51, 1812 | mmWidth: 51, 1813 | }, 1814 | { 1815 | id: 187, 1816 | name: "加拿大签证", 1817 | pxHeight: 540, 1818 | pxWidth: 420, 1819 | dpi: 300, 1820 | mmHeight: 45, 1821 | mmWidth: 35, 1822 | }, 1823 | { 1824 | id: 188, 1825 | name: "新西兰签证", 1826 | pxHeight: 1200, 1827 | pxWidth: 900, 1828 | dpi: 300, 1829 | mmHeight: 102, 1830 | mmWidth: 76, 1831 | }, 1832 | { 1833 | id: 189, 1834 | name: "缅甸签证", 1835 | pxHeight: 531, 1836 | pxWidth: 413, 1837 | dpi: 300, 1838 | mmHeight: 45, 1839 | mmWidth: 35, 1840 | }, 1841 | { 1842 | id: 190, 1843 | name: "意大利签证(上海北京)", 1844 | pxHeight: 472, 1845 | pxWidth: 413, 1846 | dpi: 300, 1847 | mmHeight: 40, 1848 | mmWidth: 35, 1849 | }, 1850 | { 1851 | id: 191, 1852 | name: "印度签证(二英寸)", 1853 | pxHeight: 591, 1854 | pxWidth: 591, 1855 | dpi: 300, 1856 | mmHeight: 51, 1857 | mmWidth: 51, 1858 | }, 1859 | { 1860 | id: 192, 1861 | name: "阿根廷签证", 1862 | pxHeight: 472, 1863 | pxWidth: 472, 1864 | dpi: 300, 1865 | mmHeight: 40, 1866 | mmWidth: 40, 1867 | }, 1868 | { 1869 | id: 193, 1870 | name: "挪威签证(小二寸)上海&广州", 1871 | pxHeight: 531, 1872 | pxWidth: 413, 1873 | dpi: 300, 1874 | mmHeight: 45, 1875 | mmWidth: 35, 1876 | }, 1877 | { 1878 | id: 194, 1879 | name: "新加坡签证", 1880 | pxHeight: 514, 1881 | pxWidth: 400, 1882 | dpi: 300, 1883 | mmHeight: 44, 1884 | mmWidth: 34, 1885 | }, 1886 | { 1887 | id: 195, 1888 | name: "马来西亚签证(上海&广州)", 1889 | pxHeight: 590, 1890 | pxWidth: 413, 1891 | dpi: 300, 1892 | mmHeight: 50, 1893 | mmWidth: 35, 1894 | }, 1895 | { 1896 | id: 196, 1897 | name: "马来西亚签证(成都&北京)", 1898 | pxHeight: 531, 1899 | pxWidth: 413, 1900 | dpi: 300, 1901 | mmHeight: 45, 1902 | mmWidth: 35, 1903 | }, 1904 | { 1905 | id: 197, 1906 | name: "肯尼亚签证", 1907 | pxHeight: 591, 1908 | pxWidth: 591, 1909 | dpi: 300, 1910 | mmHeight: 50, 1911 | mmWidth: 50, 1912 | }, 1913 | { 1914 | id: 198, 1915 | name: "以色列签证(二英寸)上海广州", 1916 | pxHeight: 591, 1917 | pxWidth: 591, 1918 | dpi: 300, 1919 | mmHeight: 51, 1920 | mmWidth: 51, 1921 | }, 1922 | { 1923 | id: 199, 1924 | name: "越南签证", 1925 | pxHeight: 708, 1926 | pxWidth: 472, 1927 | dpi: 300, 1928 | mmHeight: 60, 1929 | mmWidth: 40, 1930 | }, 1931 | { 1932 | id: 200, 1933 | name: "墨西哥签证(非营利性访客签证)", 1934 | pxHeight: 461, 1935 | pxWidth: 366, 1936 | dpi: 300, 1937 | mmHeight: 39, 1938 | mmWidth: 31, 1939 | }, 1940 | { 1941 | id: 201, 1942 | name: "突尼斯签证", 1943 | pxHeight: 531, 1944 | pxWidth: 413, 1945 | dpi: 300, 1946 | mmHeight: 45, 1947 | mmWidth: 35, 1948 | }, 1949 | { 1950 | id: 202, 1951 | name: "马耳他签证", 1952 | pxHeight: 531, 1953 | pxWidth: 413, 1954 | dpi: 300, 1955 | mmHeight: 45, 1956 | mmWidth: 35, 1957 | }, 1958 | { 1959 | id: 203, 1960 | name: "斯里兰卡签证", 1961 | pxHeight: 531, 1962 | pxWidth: 413, 1963 | dpi: 300, 1964 | mmHeight: 45, 1965 | mmWidth: 35, 1966 | }, 1967 | { 1968 | id: 204, 1969 | name: "格鲁吉亚签证", 1970 | pxHeight: 531, 1971 | pxWidth: 413, 1972 | dpi: 300, 1973 | mmHeight: 45, 1974 | mmWidth: 35, 1975 | }, 1976 | { 1977 | id: 205, 1978 | name: "冰岛签证", 1979 | pxHeight: 590, 1980 | pxWidth: 472, 1981 | dpi: 300, 1982 | mmHeight: 50, 1983 | mmWidth: 40, 1984 | }, 1985 | { 1986 | id: 206, 1987 | name: "立陶宛签证", 1988 | pxHeight: 531, 1989 | pxWidth: 413, 1990 | dpi: 300, 1991 | mmHeight: 45, 1992 | mmWidth: 35, 1993 | }, 1994 | { 1995 | id: 207, 1996 | name: "马里签证", 1997 | pxHeight: 531, 1998 | pxWidth: 413, 1999 | dpi: 300, 2000 | mmHeight: 45, 2001 | mmWidth: 35, 2002 | }, 2003 | { 2004 | id: 208, 2005 | name: "吉尔吉斯斯坦签证", 2006 | pxHeight: 531, 2007 | pxWidth: 413, 2008 | dpi: 300, 2009 | mmHeight: 45, 2010 | mmWidth: 35, 2011 | }, 2012 | { 2013 | id: 209, 2014 | name: "喀麦隆签证", 2015 | pxHeight: 531, 2016 | pxWidth: 413, 2017 | dpi: 300, 2018 | mmHeight: 45, 2019 | mmWidth: 35, 2020 | }, 2021 | { 2022 | id: 210, 2023 | name: "巴西签证", 2024 | pxHeight: 531, 2025 | pxWidth: 413, 2026 | dpi: 300, 2027 | mmHeight: 50, 2028 | mmWidth: 40, 2029 | }, 2030 | { 2031 | id: 211, 2032 | name: "签证采集", 2033 | pxHeight: 472, 2034 | pxWidth: 354, 2035 | dpi: 300, 2036 | mmHeight: 40, 2037 | mmWidth: 30, 2038 | }, 2039 | { 2040 | id: 212, 2041 | name: "全国计算机等级考试(大一寸,144×192,25~200kb) ", 2042 | pxHeight: 192, 2043 | pxWidth: 144, 2044 | dpi: 300, 2045 | mmHeight: 48, 2046 | mmWidth: 33, 2047 | }, 2048 | { 2049 | id: 213, 2050 | name: "全国计算机等级考试(240×320)", 2051 | pxHeight: 320, 2052 | pxWidth: 240, 2053 | dpi: 300, 2054 | mmHeight: 27, 2055 | mmWidth: 20, 2056 | }, 2057 | { 2058 | id: 214, 2059 | name: "全国计算机等级考试(144×192)", 2060 | pxHeight: 192, 2061 | pxWidth: 144, 2062 | dpi: 300, 2063 | mmHeight: 16, 2064 | mmWidth: 12, 2065 | }, 2066 | { 2067 | id: 215, 2068 | name: "北京全国计算机等级考试", 2069 | pxHeight: 400, 2070 | pxWidth: 300, 2071 | dpi: 300, 2072 | mmHeight: 34, 2073 | mmWidth: 25, 2074 | }, 2075 | { 2076 | id: 216, 2077 | name: "甘肃计算机等级考试", 2078 | pxHeight: 567, 2079 | pxWidth: 425, 2080 | dpi: 300, 2081 | mmHeight: 48, 2082 | mmWidth: 36, 2083 | }, 2084 | { 2085 | id: 217, 2086 | name: "全国计算机等级考试(150×210)", 2087 | pxHeight: 210, 2088 | pxWidth: 150, 2089 | dpi: 300, 2090 | mmHeight: 18, 2091 | mmWidth: 13, 2092 | }, 2093 | { 2094 | id: 218, 2095 | name: "计算机等级考试(小二寸)", 2096 | pxHeight: 532, 2097 | pxWidth: 413, 2098 | dpi: 300, 2099 | mmHeight: 45, 2100 | mmWidth: 35, 2101 | }, 2102 | { 2103 | id: 219, 2104 | name: "英语四六级考试(144×192,0~10kb)", 2105 | pxHeight: 192, 2106 | pxWidth: 144, 2107 | dpi: 300, 2108 | mmHeight: 16, 2109 | mmWidth: 12, 2110 | }, 2111 | { 2112 | id: 220, 2113 | name: "英语四六级考试(240×320,20~30kb)", 2114 | pxHeight: 320, 2115 | pxWidth: 240, 2116 | dpi: 300, 2117 | mmHeight: 27, 2118 | mmWidth: 20, 2119 | }, 2120 | { 2121 | id: 221, 2122 | name: "英语四六级考试(150×200)", 2123 | pxHeight: 200, 2124 | pxWidth: 150, 2125 | dpi: 300, 2126 | mmHeight: 17, 2127 | mmWidth: 13, 2128 | }, 2129 | { 2130 | id: 222, 2131 | name: "英语四六级考试(144×172)", 2132 | pxHeight: 172, 2133 | pxWidth: 144, 2134 | dpi: 300, 2135 | mmHeight: 15, 2136 | mmWidth: 12, 2137 | }, 2138 | { 2139 | id: 223, 2140 | name: "英语四六级考试(76×101)", 2141 | pxHeight: 101, 2142 | pxWidth: 76, 2143 | dpi: 300, 2144 | mmHeight: 9, 2145 | mmWidth: 6, 2146 | }, 2147 | { 2148 | id: 224, 2149 | name: "商务英语考试", 2150 | pxHeight: 400, 2151 | pxWidth: 300, 2152 | dpi: 300, 2153 | mmHeight: 34, 2154 | mmWidth: 25, 2155 | }, 2156 | { 2157 | id: 225, 2158 | name: "职称英语考试", 2159 | pxHeight: 580, 2160 | pxWidth: 420, 2161 | dpi: 300, 2162 | mmHeight: 49, 2163 | mmWidth: 36, 2164 | }, 2165 | { 2166 | id: 226, 2167 | name: "学位英语", 2168 | pxHeight: 180, 2169 | pxWidth: 140, 2170 | dpi: 300, 2171 | mmHeight: 15, 2172 | mmWidth: 12, 2173 | }, 2174 | { 2175 | id: 227, 2176 | name: "英语四六级考试(144×192)", 2177 | pxHeight: 192, 2178 | pxWidth: 144, 2179 | dpi: 300, 2180 | mmHeight: 16, 2181 | mmWidth: 12, 2182 | }, 2183 | { 2184 | id: 228, 2185 | name: "英语四六级报名", 2186 | pxHeight: 160, 2187 | pxWidth: 120, 2188 | dpi: 300, 2189 | mmHeight: 13, 2190 | mmWidth: 10, 2191 | }, 2192 | { 2193 | id: 229, 2194 | name: "英语四六级考试(150×210)", 2195 | pxHeight: 210, 2196 | pxWidth: 150, 2197 | dpi: 300, 2198 | mmHeight: 18, 2199 | mmWidth: 13, 2200 | }, 2201 | { 2202 | id: 230, 2203 | name: "英语四六级考试(480×600)", 2204 | pxHeight: 600, 2205 | pxWidth: 480, 2206 | dpi: 300, 2207 | mmHeight: 51, 2208 | mmWidth: 41, 2209 | }, 2210 | { 2211 | id: 231, 2212 | name: "英语三级考试", 2213 | pxHeight: 192, 2214 | pxWidth: 144, 2215 | dpi: 300, 2216 | mmHeight: 16, 2217 | mmWidth: 12, 2218 | }, 2219 | { 2220 | id: 232, 2221 | name: "英语四六级考试(144×192)", 2222 | pxHeight: 192, 2223 | pxWidth: 144, 2224 | dpi: 300, 2225 | mmHeight: 16, 2226 | mmWidth: 12, 2227 | }, 2228 | { 2229 | id: 233, 2230 | name: "医护英语", 2231 | pxHeight: 450, 2232 | pxWidth: 300, 2233 | dpi: 300, 2234 | mmHeight: 38, 2235 | mmWidth: 25, 2236 | }, 2237 | { 2238 | id: 234, 2239 | name: "公共英语考试(二寸)", 2240 | pxHeight: 531, 2241 | pxWidth: 413, 2242 | dpi: 300, 2243 | mmHeight: 45, 2244 | mmWidth: 35, 2245 | }, 2246 | { 2247 | id: 235, 2248 | name: "英语AB级考试", 2249 | pxHeight: 240, 2250 | pxWidth: 180, 2251 | dpi: 300, 2252 | mmHeight: 20, 2253 | mmWidth: 15, 2254 | }, 2255 | { 2256 | id: 236, 2257 | name: "METS医护英语水平考试", 2258 | pxHeight: 450, 2259 | pxWidth: 300, 2260 | dpi: 300, 2261 | mmHeight: 38, 2262 | mmWidth: 35, 2263 | }, 2264 | { 2265 | id: 237, 2266 | name: "英语应用能力考试口试", 2267 | pxHeight: 420, 2268 | pxWidth: 310, 2269 | dpi: 300, 2270 | mmHeight: 36, 2271 | mmWidth: 25, 2272 | }, 2273 | { 2274 | id: 238, 2275 | name: "学位英语(390*567)", 2276 | pxHeight: 567, 2277 | pxWidth: 390, 2278 | dpi: 300, 2279 | mmHeight: 48, 2280 | mmWidth: 33, 2281 | }, 2282 | { 2283 | id: 239, 2284 | name: "全国英语等级考试", 2285 | pxHeight: 192, 2286 | pxWidth: 144, 2287 | dpi: 300, 2288 | mmHeight: 16, 2289 | mmWidth: 12, 2290 | }, 2291 | { 2292 | id: 240, 2293 | name: "全国公共英语考试", 2294 | pxHeight: 192, 2295 | pxWidth: 144, 2296 | dpi: 300, 2297 | mmHeight: 16, 2298 | mmWidth: 12, 2299 | }, 2300 | { 2301 | id: 241, 2302 | name: "英语A级医专", 2303 | pxHeight: 192, 2304 | pxWidth: 144, 2305 | dpi: 300, 2306 | mmHeight: 48, 2307 | mmWidth: 33, 2308 | }, 2309 | { 2310 | id: 242, 2311 | name: "国考(100×140)", 2312 | pxHeight: 140, 2313 | pxWidth: 100, 2314 | dpi: 300, 2315 | mmHeight: 12, 2316 | mmWidth: 8, 2317 | }, 2318 | { 2319 | id: 243, 2320 | name: "国考(99×128)", 2321 | pxHeight: 128, 2322 | pxWidth: 99, 2323 | dpi: 300, 2324 | mmHeight: 11, 2325 | mmWidth: 8, 2326 | }, 2327 | { 2328 | id: 244, 2329 | name: "国考(北京)", 2330 | pxHeight: 531, 2331 | pxWidth: 413, 2332 | dpi: 300, 2333 | mmHeight: 45, 2334 | mmWidth: 35, 2335 | }, 2336 | { 2337 | id: 245, 2338 | name: "国考(天津)", 2339 | pxHeight: 531, 2340 | pxWidth: 413, 2341 | dpi: 300, 2342 | mmHeight: 45, 2343 | mmWidth: 35, 2344 | }, 2345 | { 2346 | id: 246, 2347 | name: "国考(河北)", 2348 | pxHeight: 531, 2349 | pxWidth: 413, 2350 | dpi: 300, 2351 | mmHeight: 45, 2352 | mmWidth: 35, 2353 | }, 2354 | { 2355 | id: 247, 2356 | name: "国考(山西)", 2357 | pxHeight: 531, 2358 | pxWidth: 413, 2359 | dpi: 300, 2360 | mmHeight: 45, 2361 | mmWidth: 35, 2362 | }, 2363 | { 2364 | id: 248, 2365 | name: "国考(内蒙古)", 2366 | pxHeight: 531, 2367 | pxWidth: 413, 2368 | dpi: 300, 2369 | mmHeight: 45, 2370 | mmWidth: 35, 2371 | }, 2372 | { 2373 | id: 249, 2374 | name: "国考(辽宁)", 2375 | pxHeight: 531, 2376 | pxWidth: 413, 2377 | dpi: 300, 2378 | mmHeight: 45, 2379 | mmWidth: 35, 2380 | }, 2381 | { 2382 | id: 250, 2383 | name: "国考(吉林)", 2384 | pxHeight: 531, 2385 | pxWidth: 413, 2386 | dpi: 300, 2387 | mmHeight: 45, 2388 | mmWidth: 35, 2389 | }, 2390 | { 2391 | id: 251, 2392 | name: "国考(黑龙江)", 2393 | pxHeight: 531, 2394 | pxWidth: 413, 2395 | dpi: 300, 2396 | mmHeight: 45, 2397 | mmWidth: 35, 2398 | }, 2399 | { 2400 | id: 252, 2401 | name: "国考(上海)", 2402 | pxHeight: 300, 2403 | pxWidth: 215, 2404 | dpi: 300, 2405 | mmHeight: 25, 2406 | mmWidth: 18, 2407 | }, 2408 | { 2409 | id: 253, 2410 | name: "国考(江苏)", 2411 | pxHeight: 531, 2412 | pxWidth: 413, 2413 | dpi: 300, 2414 | mmHeight: 45, 2415 | mmWidth: 35, 2416 | }, 2417 | { 2418 | id: 254, 2419 | name: "国考(浙江)", 2420 | pxHeight: 140, 2421 | pxWidth: 100, 2422 | dpi: 300, 2423 | mmHeight: 12, 2424 | mmWidth: 8, 2425 | }, 2426 | { 2427 | id: 255, 2428 | name: "国考(安徽)", 2429 | pxHeight: 531, 2430 | pxWidth: 413, 2431 | dpi: 300, 2432 | mmHeight: 45, 2433 | mmWidth: 35, 2434 | }, 2435 | { 2436 | id: 256, 2437 | name: "国考(福建)", 2438 | pxHeight: 531, 2439 | pxWidth: 413, 2440 | dpi: 300, 2441 | mmHeight: 45, 2442 | mmWidth: 35, 2443 | }, 2444 | { 2445 | id: 257, 2446 | name: "国考(江西)", 2447 | pxHeight: 128, 2448 | pxWidth: 99, 2449 | dpi: 300, 2450 | mmHeight: 11, 2451 | mmWidth: 8, 2452 | }, 2453 | { 2454 | id: 258, 2455 | name: "国考(山东)", 2456 | pxHeight: 160, 2457 | pxWidth: 120, 2458 | dpi: 300, 2459 | mmHeight: 13, 2460 | mmWidth: 10, 2461 | }, 2462 | { 2463 | id: 259, 2464 | name: "国考(河南)", 2465 | pxHeight: 531, 2466 | pxWidth: 413, 2467 | dpi: 300, 2468 | mmHeight: 45, 2469 | mmWidth: 35, 2470 | }, 2471 | { 2472 | id: 260, 2473 | name: "国考(湖北)", 2474 | pxHeight: 531, 2475 | pxWidth: 413, 2476 | dpi: 300, 2477 | mmHeight: 45, 2478 | mmWidth: 35, 2479 | }, 2480 | { 2481 | id: 261, 2482 | name: "国考(湖南)", 2483 | pxHeight: 531, 2484 | pxWidth: 413, 2485 | dpi: 300, 2486 | mmHeight: 45, 2487 | mmWidth: 35, 2488 | }, 2489 | { 2490 | id: 262, 2491 | name: "国考(广东)", 2492 | pxHeight: 531, 2493 | pxWidth: 413, 2494 | dpi: 300, 2495 | mmHeight: 45, 2496 | mmWidth: 35, 2497 | }, 2498 | { 2499 | id: 263, 2500 | name: "国考(广西)", 2501 | pxHeight: 531, 2502 | pxWidth: 413, 2503 | dpi: 300, 2504 | mmHeight: 45, 2505 | mmWidth: 35, 2506 | }, 2507 | { 2508 | id: 264, 2509 | name: "国考(海南)", 2510 | pxHeight: 531, 2511 | pxWidth: 413, 2512 | dpi: 300, 2513 | mmHeight: 45, 2514 | mmWidth: 35, 2515 | }, 2516 | { 2517 | id: 265, 2518 | name: "国考(重庆)", 2519 | pxHeight: 531, 2520 | pxWidth: 413, 2521 | dpi: 300, 2522 | mmHeight: 45, 2523 | mmWidth: 34, 2524 | }, 2525 | { 2526 | id: 266, 2527 | name: "国考(四川)", 2528 | pxHeight: 531, 2529 | pxWidth: 413, 2530 | dpi: 300, 2531 | mmHeight: 45, 2532 | mmWidth: 34, 2533 | }, 2534 | { 2535 | id: 267, 2536 | name: "国考(贵州)", 2537 | pxHeight: 531, 2538 | pxWidth: 413, 2539 | dpi: 300, 2540 | mmHeight: 45, 2541 | mmWidth: 35, 2542 | }, 2543 | { 2544 | id: 268, 2545 | name: "国考(云南)", 2546 | pxHeight: 531, 2547 | pxWidth: 413, 2548 | dpi: 300, 2549 | mmHeight: 45, 2550 | mmWidth: 35, 2551 | }, 2552 | { 2553 | id: 269, 2554 | name: "国考(陕西)", 2555 | pxHeight: 531, 2556 | pxWidth: 413, 2557 | dpi: 300, 2558 | mmHeight: 45, 2559 | mmWidth: 35, 2560 | }, 2561 | { 2562 | id: 270, 2563 | name: "国考(甘肃)", 2564 | pxHeight: 300, 2565 | pxWidth: 215, 2566 | dpi: 300, 2567 | mmHeight: 25, 2568 | mmWidth: 18, 2569 | }, 2570 | { 2571 | id: 271, 2572 | name: "国考(青海)", 2573 | pxHeight: 180, 2574 | pxWidth: 120, 2575 | dpi: 300, 2576 | mmHeight: 15, 2577 | mmWidth: 10, 2578 | }, 2579 | { 2580 | id: 272, 2581 | name: "国考(宁夏)", 2582 | pxHeight: 300, 2583 | pxWidth: 215, 2584 | dpi: 300, 2585 | mmHeight: 25, 2586 | mmWidth: 18, 2587 | }, 2588 | { 2589 | id: 273, 2590 | name: "国考(新疆)", 2591 | pxHeight: 531, 2592 | pxWidth: 413, 2593 | dpi: 300, 2594 | mmHeight: 45, 2595 | mmWidth: 35, 2596 | }, 2597 | { 2598 | id: 274, 2599 | name: "国考(西藏)", 2600 | pxHeight: 531, 2601 | pxWidth: 413, 2602 | dpi: 300, 2603 | mmHeight: 45, 2604 | mmWidth: 35, 2605 | }, 2606 | { 2607 | id: 275, 2608 | name: "河北公务员", 2609 | pxHeight: 168, 2610 | pxWidth: 126, 2611 | dpi: 300, 2612 | mmHeight: 14, 2613 | mmWidth: 11, 2614 | }, 2615 | { 2616 | id: 276, 2617 | name: "山西公务员", 2618 | pxHeight: 413, 2619 | pxWidth: 295, 2620 | dpi: 300, 2621 | mmHeight: 35, 2622 | mmWidth: 25, 2623 | }, 2624 | { 2625 | id: 277, 2626 | name: "黑龙江公务员", 2627 | pxHeight: 170, 2628 | pxWidth: 130, 2629 | dpi: 300, 2630 | mmHeight: 45, 2631 | mmWidth: 35, 2632 | }, 2633 | { 2634 | id: 278, 2635 | name: "上海公务员", 2636 | pxHeight: 168, 2637 | pxWidth: 126, 2638 | dpi: 300, 2639 | mmHeight: 14, 2640 | mmWidth: 11, 2641 | }, 2642 | { 2643 | id: 279, 2644 | name: "江苏公务员(小二寸)", 2645 | pxHeight: 531, 2646 | pxWidth: 413, 2647 | dpi: 300, 2648 | mmHeight: 45, 2649 | mmWidth: 35, 2650 | }, 2651 | { 2652 | id: 280, 2653 | name: "江西公务员(90×120)", 2654 | pxHeight: 120, 2655 | pxWidth: 90, 2656 | dpi: 300, 2657 | mmHeight: 10, 2658 | mmWidth: 8, 2659 | }, 2660 | { 2661 | id: 281, 2662 | name: "山东公务员(小二寸)", 2663 | pxHeight: 160, 2664 | pxWidth: 120, 2665 | dpi: 300, 2666 | mmHeight: 13, 2667 | mmWidth: 10, 2668 | }, 2669 | { 2670 | id: 282, 2671 | name: "湖北公务员", 2672 | pxHeight: 300, 2673 | pxWidth: 215, 2674 | dpi: 300, 2675 | mmHeight: 25, 2676 | mmWidth: 18, 2677 | }, 2678 | { 2679 | id: 283, 2680 | name: "海南公务员", 2681 | pxHeight: 218, 2682 | pxWidth: 168, 2683 | dpi: 300, 2684 | mmHeight: 18, 2685 | mmWidth: 14, 2686 | }, 2687 | { 2688 | id: 284, 2689 | name: "青海公务员", 2690 | pxHeight: 168, 2691 | pxWidth: 126, 2692 | dpi: 300, 2693 | mmHeight: 14, 2694 | mmWidth: 11, 2695 | }, 2696 | { 2697 | id: 285, 2698 | name: "江西公务员(295×413)", 2699 | pxHeight: 413, 2700 | pxWidth: 295, 2701 | dpi: 300, 2702 | mmHeight: 11, 2703 | mmWidth: 25, 2704 | }, 2705 | { 2706 | id: 286, 2707 | name: "北京公务员", 2708 | pxHeight: 600, 2709 | pxWidth: 400, 2710 | dpi: 300, 2711 | mmHeight: 51, 2712 | mmWidth: 34, 2713 | }, 2714 | { 2715 | id: 287, 2716 | name: "成都公务员", 2717 | pxHeight: 126, 2718 | pxWidth: 102, 2719 | dpi: 300, 2720 | mmHeight: 11, 2721 | mmWidth: 9, 2722 | }, 2723 | { 2724 | id: 288, 2725 | name: "重庆公务员", 2726 | pxHeight: 373, 2727 | pxWidth: 280, 2728 | dpi: 300, 2729 | mmHeight: 35, 2730 | mmWidth: 25, 2731 | }, 2732 | { 2733 | id: 289, 2734 | name: "公务员考试", 2735 | pxHeight: 531, 2736 | pxWidth: 413, 2737 | dpi: 300, 2738 | mmHeight: 14, 2739 | mmWidth: 11, 2740 | }, 2741 | { 2742 | id: 290, 2743 | name: "江西吉安公务员照片采集", 2744 | pxHeight: 600, 2745 | pxWidth: 480, 2746 | dpi: 300, 2747 | mmHeight: 51, 2748 | mmWidth: 41, 2749 | }, 2750 | { 2751 | id: 291, 2752 | name: "深圳公务员", 2753 | pxHeight: 138, 2754 | pxWidth: 100, 2755 | dpi: 300, 2756 | mmHeight: 18, 2757 | mmWidth: 13, 2758 | }, 2759 | { 2760 | id: 292, 2761 | name: "国家司法考试", 2762 | pxHeight: 626, 2763 | pxWidth: 413, 2764 | dpi: 300, 2765 | mmHeight: 53, 2766 | mmWidth: 35, 2767 | }, 2768 | { 2769 | id: 293, 2770 | name: "初级会计职称考试(240×320)", 2771 | pxHeight: 320, 2772 | pxWidth: 240, 2773 | dpi: 300, 2774 | mmHeight: 27, 2775 | mmWidth: 20, 2776 | }, 2777 | { 2778 | id: 294, 2779 | name: "初级会计职称考试(114×156)", 2780 | pxHeight: 156, 2781 | pxWidth: 114, 2782 | dpi: 300, 2783 | mmHeight: 13, 2784 | mmWidth: 10, 2785 | }, 2786 | { 2787 | id: 295, 2788 | name: "全国高等教育自学考试", 2789 | pxHeight: 192, 2790 | pxWidth: 144, 2791 | dpi: 300, 2792 | mmHeight: 16, 2793 | mmWidth: 12, 2794 | }, 2795 | { 2796 | id: 296, 2797 | name: "护士执业资格考试(160×210)", 2798 | pxHeight: 210, 2799 | pxWidth: 160, 2800 | dpi: 300, 2801 | mmHeight: 18, 2802 | mmWidth: 14, 2803 | }, 2804 | { 2805 | id: 297, 2806 | name: "全国职称计算机考试", 2807 | pxHeight: 300, 2808 | pxWidth: 215, 2809 | dpi: 300, 2810 | mmHeight: 25, 2811 | mmWidth: 18, 2812 | }, 2813 | { 2814 | id: 298, 2815 | name: "中级会计职称考试(240×320)", 2816 | pxHeight: 320, 2817 | pxWidth: 240, 2818 | dpi: 300, 2819 | mmHeight: 27, 2820 | mmWidth: 20, 2821 | }, 2822 | { 2823 | id: 299, 2824 | name: "高级会计职称考试", 2825 | pxHeight: 156, 2826 | pxWidth: 114, 2827 | dpi: 300, 2828 | mmHeight: 13, 2829 | mmWidth: 10, 2830 | }, 2831 | { 2832 | id: 300, 2833 | name: "计算机二级考试(210×280)", 2834 | pxHeight: 280, 2835 | pxWidth: 210, 2836 | dpi: 300, 2837 | mmHeight: 24, 2838 | mmWidth: 18, 2839 | }, 2840 | { 2841 | id: 301, 2842 | name: "翻译资格等级考试", 2843 | pxHeight: 300, 2844 | pxWidth: 215, 2845 | dpi: 300, 2846 | mmHeight: 25, 2847 | mmWidth: 18, 2848 | }, 2849 | { 2850 | id: 302, 2851 | name: "护士执业资格考试(130×170)", 2852 | pxHeight: 170, 2853 | pxWidth: 130, 2854 | dpi: 300, 2855 | mmHeight: 14, 2856 | mmWidth: 11, 2857 | }, 2858 | { 2859 | id: 303, 2860 | name: "武汉大学研究生考试", 2861 | pxHeight: 200, 2862 | pxWidth: 150, 2863 | dpi: 300, 2864 | mmHeight: 17, 2865 | mmWidth: 13, 2866 | }, 2867 | { 2868 | id: 304, 2869 | name: "江苏会计考试", 2870 | pxHeight: 420, 2871 | pxWidth: 300, 2872 | dpi: 300, 2873 | mmHeight: 36, 2874 | mmWidth: 25, 2875 | }, 2876 | { 2877 | id: 305, 2878 | name: "计算机考试(350dpi)", 2879 | pxHeight: 441, 2880 | pxWidth: 358, 2881 | dpi: 350, 2882 | mmHeight: 32, 2883 | mmWidth: 26, 2884 | }, 2885 | { 2886 | id: 306, 2887 | name: "江西国画书法等级考试", 2888 | pxHeight: 551, 2889 | pxWidth: 413, 2890 | dpi: 350, 2891 | mmHeight: 40, 2892 | mmWidth: 30, 2893 | }, 2894 | { 2895 | id: 307, 2896 | name: "六级口语考试", 2897 | pxHeight: 160, 2898 | pxWidth: 130, 2899 | dpi: 300, 2900 | mmHeight: 14, 2901 | mmWidth: 11, 2902 | }, 2903 | { 2904 | id: 308, 2905 | name: "专升本考试", 2906 | pxHeight: 450, 2907 | pxWidth: 300, 2908 | dpi: 300, 2909 | mmHeight: 38, 2910 | mmWidth: 25, 2911 | }, 2912 | { 2913 | id: 309, 2914 | name: "托业考试", 2915 | pxHeight: 484, 2916 | pxWidth: 379, 2917 | dpi: 300, 2918 | mmHeight: 41, 2919 | mmWidth: 32, 2920 | }, 2921 | { 2922 | id: 310, 2923 | name: "自主招生考试", 2924 | pxHeight: 512, 2925 | pxWidth: 384, 2926 | dpi: 300, 2927 | mmHeight: 43, 2928 | mmWidth: 32, 2929 | }, 2930 | { 2931 | id: 311, 2932 | name: "计算机文化考试", 2933 | pxHeight: 160, 2934 | pxWidth: 120, 2935 | dpi: 300, 2936 | mmHeight: 13, 2937 | mmWidth: 10, 2938 | }, 2939 | { 2940 | id: 312, 2941 | name: "SAT考试报名(电子版)", 2942 | pxHeight: 640, 2943 | pxWidth: 480, 2944 | dpi: 300, 2945 | mmHeight: 54, 2946 | mmWidth: 41, 2947 | }, 2948 | { 2949 | id: 313, 2950 | name: "营销师考试报名", 2951 | pxHeight: 140, 2952 | pxWidth: 100, 2953 | dpi: 300, 2954 | mmHeight: 12, 2955 | mmWidth: 8, 2956 | }, 2957 | { 2958 | id: 314, 2959 | name: "复旦大学研究生考试", 2960 | pxHeight: 200, 2961 | pxWidth: 150, 2962 | dpi: 300, 2963 | mmHeight: 17, 2964 | mmWidth: 13, 2965 | }, 2966 | { 2967 | id: 315, 2968 | name: "计算机二级考试(300×400)", 2969 | pxHeight: 400, 2970 | pxWidth: 300, 2971 | dpi: 300, 2972 | mmHeight: 34, 2973 | mmWidth: 25, 2974 | }, 2975 | { 2976 | id: 316, 2977 | name: "注册计量师考试", 2978 | pxHeight: 300, 2979 | pxWidth: 215, 2980 | dpi: 300, 2981 | mmHeight: 25, 2982 | mmWidth: 18, 2983 | }, 2984 | { 2985 | id: 317, 2986 | name: "护士执业资格考试(120×160)", 2987 | pxHeight: 160, 2988 | pxWidth: 120, 2989 | dpi: 300, 2990 | mmHeight: 13, 2991 | mmWidth: 10, 2992 | }, 2993 | { 2994 | id: 318, 2995 | name: "护师(全国卫生专业技术资格考试)", 2996 | pxHeight: 210, 2997 | pxWidth: 160, 2998 | dpi: 300, 2999 | mmHeight: 18, 3000 | mmWidth: 14, 3001 | }, 3002 | { 3003 | id: 319, 3004 | name: "上海中级会计职称考试", 3005 | pxHeight: 300, 3006 | pxWidth: 215, 3007 | dpi: 300, 3008 | mmHeight: 25, 3009 | mmWidth: 18, 3010 | }, 3011 | { 3012 | id: 320, 3013 | name: "福建教师招聘考试", 3014 | pxHeight: 400, 3015 | pxWidth: 300, 3016 | dpi: 300, 3017 | mmHeight: 34, 3018 | mmWidth: 25, 3019 | }, 3020 | { 3021 | id: 321, 3022 | name: "中级会计职称考试(114×156)", 3023 | pxHeight: 156, 3024 | pxWidth: 114, 3025 | dpi: 300, 3026 | mmHeight: 13, 3027 | mmWidth: 10, 3028 | }, 3029 | { 3030 | id: 322, 3031 | name: "江西特岗教师考试", 3032 | pxHeight: 120, 3033 | pxWidth: 90, 3034 | dpi: 300, 3035 | mmHeight: 10, 3036 | mmWidth: 8, 3037 | }, 3038 | { 3039 | id: 323, 3040 | name: "江西国编教师考试", 3041 | pxHeight: 120, 3042 | pxWidth: 90, 3043 | dpi: 300, 3044 | mmHeight: 10, 3045 | mmWidth: 8, 3046 | }, 3047 | { 3048 | id: 324, 3049 | name: "初级会计职称考试(215×300)", 3050 | pxHeight: 300, 3051 | pxWidth: 215, 3052 | dpi: 300, 3053 | mmHeight: 25, 3054 | mmWidth: 18, 3055 | }, 3056 | { 3057 | id: 325, 3058 | name: "2019全国初级会计资格考试(295×413)", 3059 | pxHeight: 413, 3060 | pxWidth: 295, 3061 | dpi: 300, 3062 | mmHeight: 35, 3063 | mmWidth: 25, 3064 | }, 3065 | { 3066 | id: 326, 3067 | name: "BIM考试", 3068 | pxHeight: 350, 3069 | pxWidth: 250, 3070 | dpi: 300, 3071 | mmHeight: 45, 3072 | mmWidth: 35, 3073 | }, 3074 | { 3075 | id: 327, 3076 | name: "2019年初级护师考试", 3077 | pxHeight: 210, 3078 | pxWidth: 160, 3079 | dpi: 300, 3080 | mmHeight: 35, 3081 | mmWidth: 25, 3082 | }, 3083 | { 3084 | id: 328, 3085 | name: "2019执业医师考试", 3086 | pxHeight: 472, 3087 | pxWidth: 354, 3088 | dpi: 300, 3089 | mmHeight: 45, 3090 | mmWidth: 35, 3091 | }, 3092 | { 3093 | id: 329, 3094 | name: "特岗教师", 3095 | pxHeight: 441, 3096 | pxWidth: 358, 3097 | dpi: 300, 3098 | mmHeight: 32, 3099 | mmWidth: 26, 3100 | }, 3101 | { 3102 | id: 330, 3103 | name: "教师资格证(180×240)", 3104 | pxHeight: 240, 3105 | pxWidth: 180, 3106 | dpi: 300, 3107 | mmHeight: 20, 3108 | mmWidth: 15, 3109 | }, 3110 | { 3111 | id: 331, 3112 | name: "中国教师资格证报名", 3113 | pxHeight: 156, 3114 | pxWidth: 114, 3115 | dpi: 300, 3116 | mmHeight: 13, 3117 | mmWidth: 10, 3118 | }, 3119 | { 3120 | id: 332, 3121 | name: "福建教师资格证", 3122 | pxHeight: 400, 3123 | pxWidth: 300, 3124 | dpi: 300, 3125 | mmHeight: 34, 3126 | mmWidth: 25, 3127 | }, 3128 | { 3129 | id: 333, 3130 | name: "全国教师管理信息采集(129×160)", 3131 | pxHeight: 160, 3132 | pxWidth: 129, 3133 | dpi: 300, 3134 | mmHeight: 14, 3135 | mmWidth: 11, 3136 | }, 3137 | { 3138 | id: 334, 3139 | name: "全国教师管理信息采集(296×367)", 3140 | pxHeight: 367, 3141 | pxWidth: 296, 3142 | dpi: 300, 3143 | mmHeight: 32, 3144 | mmWidth: 25, 3145 | }, 3146 | { 3147 | id: 335, 3148 | name: "教师资格证(150×200)", 3149 | pxHeight: 200, 3150 | pxWidth: 150, 3151 | dpi: 300, 3152 | mmHeight: 17, 3153 | mmWidth: 13, 3154 | }, 3155 | { 3156 | id: 336, 3157 | name: "教师资格证(384×512)", 3158 | pxHeight: 512, 3159 | pxWidth: 384, 3160 | dpi: 300, 3161 | mmHeight: 43, 3162 | mmWidth: 32, 3163 | }, 3164 | { 3165 | id: 337, 3166 | name: "教师招聘报名", 3167 | pxHeight: 140, 3168 | pxWidth: 110, 3169 | dpi: 300, 3170 | mmHeight: 14, 3171 | mmWidth: 9, 3172 | }, 3173 | { 3174 | id: 338, 3175 | name: "教师资格证(360×480)", 3176 | pxHeight: 480, 3177 | pxWidth: 360, 3178 | dpi: 300, 3179 | mmHeight: 41, 3180 | mmWidth: 30, 3181 | }, 3182 | { 3183 | id: 339, 3184 | name: "江西中医药大学医保卡", 3185 | pxHeight: 238, 3186 | pxWidth: 171, 3187 | dpi: 300, 3188 | mmHeight: 20, 3189 | mmWidth: 14, 3190 | }, 3191 | { 3192 | id: 340, 3193 | name: "校园卡采集", 3194 | pxHeight: 320, 3195 | pxWidth: 240, 3196 | dpi: 300, 3197 | mmHeight: 27, 3198 | mmWidth: 20, 3199 | }, 3200 | { 3201 | id: 341, 3202 | name: "校园卡", 3203 | pxHeight: 210, 3204 | pxWidth: 150, 3205 | dpi: 300, 3206 | mmHeight: 18, 3207 | mmWidth: 13, 3208 | }, 3209 | { 3210 | id: 342, 3211 | name: "湖北经济学院校园卡", 3212 | pxHeight: 320, 3213 | pxWidth: 240, 3214 | dpi: 300, 3215 | mmHeight: 27, 3216 | mmWidth: 20, 3217 | }, 3218 | { 3219 | id: 343, 3220 | name: "上海学籍卡", 3221 | pxHeight: 354, 3222 | pxWidth: 272, 3223 | dpi: 300, 3224 | mmHeight: 30, 3225 | mmWidth: 23, 3226 | }, 3227 | { 3228 | id: 344, 3229 | name: "青岛浮山路小学学籍卡", 3230 | pxHeight: 240, 3231 | pxWidth: 195, 3232 | dpi: 300, 3233 | mmHeight: 20, 3234 | mmWidth: 17, 3235 | }, 3236 | { 3237 | id: 345, 3238 | name: "广东岭南职业技术学院学籍卡", 3239 | pxHeight: 150, 3240 | pxWidth: 120, 3241 | dpi: 300, 3242 | mmHeight: 13, 3243 | mmWidth: 10, 3244 | }, 3245 | { 3246 | id: 346, 3247 | name: "厦门医保卡", 3248 | pxHeight: 308, 3249 | pxWidth: 264, 3250 | dpi: 300, 3251 | mmHeight: 26, 3252 | mmWidth: 22, 3253 | }, 3254 | { 3255 | id: 347, 3256 | name: "江苏社保卡(无回执,358×441)", 3257 | pxHeight: 441, 3258 | pxWidth: 358, 3259 | dpi: 300, 3260 | mmHeight: 40, 3261 | mmWidth: 30, 3262 | }, 3263 | { 3264 | id: 348, 3265 | name: "一卡通", 3266 | pxHeight: 212, 3267 | pxWidth: 212, 3268 | dpi: 300, 3269 | mmHeight: 18, 3270 | mmWidth: 18, 3271 | }, 3272 | { 3273 | id: 349, 3274 | name: "工作卡", 3275 | pxHeight: 162, 3276 | pxWidth: 120, 3277 | dpi: 300, 3278 | mmHeight: 14, 3279 | mmWidth: 10, 3280 | }, 3281 | { 3282 | id: 350, 3283 | name: "江苏社保卡(无回执 252×312)", 3284 | pxHeight: 312, 3285 | pxWidth: 252, 3286 | dpi: 300, 3287 | mmHeight: 26, 3288 | mmWidth: 21, 3289 | }, 3290 | { 3291 | id: 351, 3292 | name: "工作卡(637×672px)", 3293 | pxHeight: 672, 3294 | pxWidth: 637, 3295 | dpi: 300, 3296 | mmHeight: 57, 3297 | mmWidth: 54, 3298 | }, 3299 | { 3300 | id: 352, 3301 | name: "河南理工大学校园卡电子照", 3302 | pxHeight: 400, 3303 | pxWidth: 300, 3304 | dpi: 300, 3305 | mmHeight: 34, 3306 | mmWidth: 25, 3307 | }, 3308 | { 3309 | id: 353, 3310 | name: "湖南社保卡", 3311 | pxHeight: 441, 3312 | pxWidth: 358, 3313 | dpi: 350, 3314 | mmHeight: 32, 3315 | mmWidth: 26, 3316 | }, 3317 | { 3318 | id: 354, 3319 | name: "江苏社保卡", 3320 | pxHeight: 441, 3321 | pxWidth: 358, 3322 | dpi: 300, 3323 | mmHeight: 40, 3324 | mmWidth: 30, 3325 | }, 3326 | { 3327 | id: 355, 3328 | name: "长春医保卡", 3329 | pxHeight: 441, 3330 | pxWidth: 358, 3331 | dpi: 300, 3332 | mmHeight: 32, 3333 | mmWidth: 26, 3334 | }, 3335 | { 3336 | id: 356, 3337 | name: "山西省社会保障卡照片", 3338 | pxHeight: 441, 3339 | pxWidth: 358, 3340 | dpi: 300, 3341 | mmHeight: 40, 3342 | mmWidth: 30, 3343 | }, 3344 | { 3345 | id: 357, 3346 | name: "泰安社保卡(无回执)", 3347 | pxHeight: 295, 3348 | pxWidth: 236, 3349 | dpi: 300, 3350 | mmHeight: 25, 3351 | mmWidth: 20, 3352 | }, 3353 | { 3354 | id: 358, 3355 | name: "学籍照片(390×480)", 3356 | pxHeight: 480, 3357 | pxWidth: 390, 3358 | dpi: 300, 3359 | mmHeight: 41, 3360 | mmWidth: 33, 3361 | }, 3362 | { 3363 | id: 359, 3364 | name: "学籍照片(307×378)", 3365 | pxHeight: 378, 3366 | pxWidth: 307, 3367 | dpi: 300, 3368 | mmHeight: 32, 3369 | mmWidth: 26, 3370 | }, 3371 | { 3372 | id: 360, 3373 | name: "职业鉴定照片", 3374 | pxHeight: 300, 3375 | pxWidth: 200, 3376 | dpi: 300, 3377 | mmHeight: 25, 3378 | mmWidth: 17, 3379 | }, 3380 | { 3381 | id: 361, 3382 | name: "学籍照片(150×200)", 3383 | pxHeight: 200, 3384 | pxWidth: 150, 3385 | dpi: 300, 3386 | mmHeight: 17, 3387 | mmWidth: 13, 3388 | }, 3389 | { 3390 | id: 362, 3391 | name: "电子护照人像照片", 3392 | pxHeight: 567, 3393 | pxWidth: 390, 3394 | dpi: 300, 3395 | mmHeight: 48, 3396 | mmWidth: 33, 3397 | }, 3398 | { 3399 | id: 363, 3400 | name: "海外申请护照在线预约照片", 3401 | pxHeight: 567, 3402 | pxWidth: 390, 3403 | dpi: 300, 3404 | mmHeight: 48, 3405 | mmWidth: 33, 3406 | }, 3407 | { 3408 | id: 364, 3409 | name: "毕业证照片采集(西安交大)", 3410 | pxHeight: 640, 3411 | pxWidth: 480, 3412 | dpi: 300, 3413 | mmHeight: 54, 3414 | mmWidth: 41, 3415 | }, 3416 | { 3417 | id: 365, 3418 | name: "学籍照片(90×120)", 3419 | pxHeight: 120, 3420 | pxWidth: 90, 3421 | dpi: 300, 3422 | mmHeight: 10, 3423 | mmWidth: 8, 3424 | }, 3425 | { 3426 | id: 366, 3427 | name: "会计资格证照片", 3428 | pxHeight: 700, 3429 | pxWidth: 500, 3430 | dpi: 300, 3431 | mmHeight: 59, 3432 | mmWidth: 42, 3433 | }, 3434 | { 3435 | id: 367, 3436 | name: "毕业证照片采集(西南科技大学、西南大学)", 3437 | pxHeight: 640, 3438 | pxWidth: 480, 3439 | dpi: 300, 3440 | mmHeight: 54, 3441 | mmWidth: 41, 3442 | }, 3443 | { 3444 | id: 368, 3445 | name: "湖北省中小学毕业证照片采集", 3446 | pxHeight: 800, 3447 | pxWidth: 600, 3448 | dpi: 350, 3449 | mmHeight: 58, 3450 | mmWidth: 44, 3451 | }, 3452 | { 3453 | id: 369, 3454 | name: "单位照片", 3455 | pxHeight: 259, 3456 | pxWidth: 188, 3457 | dpi: 300, 3458 | mmHeight: 22, 3459 | mmWidth: 16, 3460 | }, 3461 | { 3462 | id: 370, 3463 | name: "记者照片", 3464 | pxHeight: 480, 3465 | pxWidth: 388, 3466 | dpi: 300, 3467 | mmHeight: 41, 3468 | mmWidth: 33, 3469 | }, 3470 | { 3471 | id: 371, 3472 | name: "学籍照片(300×420)", 3473 | pxHeight: 420, 3474 | pxWidth: 300, 3475 | dpi: 300, 3476 | mmHeight: 36, 3477 | mmWidth: 25, 3478 | }, 3479 | { 3480 | id: 372, 3481 | name: "广交会照片", 3482 | pxHeight: 250, 3483 | pxWidth: 200, 3484 | dpi: 300, 3485 | mmHeight: 50, 3486 | mmWidth: 40, 3487 | }, 3488 | { 3489 | id: 373, 3490 | name: "会计从业资格证(114×156,0~10kb)", 3491 | pxHeight: 156, 3492 | pxWidth: 114, 3493 | dpi: 300, 3494 | mmHeight: 13, 3495 | mmWidth: 10, 3496 | }, 3497 | { 3498 | id: 374, 3499 | name: "湖北会计职业资格证", 3500 | pxHeight: 156, 3501 | pxWidth: 114, 3502 | dpi: 300, 3503 | mmHeight: 13, 3504 | mmWidth: 10, 3505 | }, 3506 | { 3507 | id: 375, 3508 | name: "会计从业资格证(114×156)", 3509 | pxHeight: 156, 3510 | pxWidth: 114, 3511 | dpi: 300, 3512 | mmHeight: 13, 3513 | mmWidth: 10, 3514 | }, 3515 | { 3516 | id: 376, 3517 | name: "深圳会计从业资格证", 3518 | pxHeight: 441, 3519 | pxWidth: 358, 3520 | dpi: 300, 3521 | mmHeight: 40, 3522 | mmWidth: 30, 3523 | }, 3524 | { 3525 | id: 377, 3526 | name: "黑龙江会计上岗证", 3527 | pxHeight: 160, 3528 | pxWidth: 120, 3529 | dpi: 300, 3530 | mmHeight: 13, 3531 | mmWidth: 10, 3532 | }, 3533 | { 3534 | id: 378, 3535 | name: "河北唐山初级会计助理", 3536 | pxHeight: 640, 3537 | pxWidth: 480, 3538 | dpi: 300, 3539 | mmHeight: 54, 3540 | mmWidth: 41, 3541 | }, 3542 | { 3543 | id: 379, 3544 | name: "会计征换证", 3545 | pxHeight: 192, 3546 | pxWidth: 144, 3547 | dpi: 300, 3548 | mmHeight: 16, 3549 | mmWidth: 12, 3550 | }, 3551 | { 3552 | id: 380, 3553 | name: "会计从业资格证(150×200)", 3554 | pxHeight: 200, 3555 | pxWidth: 150, 3556 | dpi: 300, 3557 | mmHeight: 17, 3558 | mmWidth: 13, 3559 | }, 3560 | { 3561 | id: 381, 3562 | name: "会计从业资格证(150×210)", 3563 | pxHeight: 210, 3564 | pxWidth: 150, 3565 | dpi: 300, 3566 | mmHeight: 18, 3567 | mmWidth: 13, 3568 | }, 3569 | { 3570 | id: 382, 3571 | name: "注册会计师证(178×220)", 3572 | pxHeight: 220, 3573 | pxWidth: 178, 3574 | dpi: 300, 3575 | mmHeight: 19, 3576 | mmWidth: 15, 3577 | }, 3578 | { 3579 | id: 383, 3580 | name: "会计从业资格证(97×130)", 3581 | pxHeight: 130, 3582 | pxWidth: 97, 3583 | dpi: 300, 3584 | mmHeight: 11, 3585 | mmWidth: 8, 3586 | }, 3587 | { 3588 | id: 384, 3589 | name: "注册会计师证(102×126)", 3590 | pxHeight: 126, 3591 | pxWidth: 102, 3592 | dpi: 300, 3593 | mmHeight: 11, 3594 | mmWidth: 9, 3595 | }, 3596 | { 3597 | id: 385, 3598 | name: "执业兽医资格证", 3599 | pxHeight: 334, 3600 | pxWidth: 230, 3601 | dpi: 300, 3602 | mmHeight: 29, 3603 | mmWidth: 20, 3604 | }, 3605 | { 3606 | id: 386, 3607 | name: "人力资源资格证报名", 3608 | pxHeight: 210, 3609 | pxWidth: 160, 3610 | dpi: 300, 3611 | mmHeight: 18, 3612 | mmWidth: 14, 3613 | }, 3614 | { 3615 | id: 387, 3616 | name: "全国房地产经济从业职业资格证", 3617 | pxHeight: 300, 3618 | pxWidth: 215, 3619 | dpi: 300, 3620 | mmHeight: 25, 3621 | mmWidth: 18, 3622 | }, 3623 | { 3624 | id: 388, 3625 | name: "保险从业资格证(210*370)", 3626 | pxHeight: 370, 3627 | pxWidth: 210, 3628 | dpi: 300, 3629 | mmHeight: 31, 3630 | mmWidth: 18, 3631 | }, 3632 | { 3633 | id: 389, 3634 | name: "保险从业资格证(210*270)", 3635 | pxHeight: 270, 3636 | pxWidth: 210, 3637 | dpi: 300, 3638 | mmHeight: 23, 3639 | mmWidth: 18, 3640 | }, 3641 | { 3642 | id: 390, 3643 | name: "成人自考(400×576)", 3644 | pxHeight: 576, 3645 | pxWidth: 400, 3646 | dpi: 300, 3647 | mmHeight: 49, 3648 | mmWidth: 34, 3649 | }, 3650 | { 3651 | id: 391, 3652 | name: "成人自考(360×480)", 3653 | pxHeight: 480, 3654 | pxWidth: 360, 3655 | dpi: 300, 3656 | mmHeight: 41, 3657 | mmWidth: 30, 3658 | }, 3659 | { 3660 | id: 392, 3661 | name: "成人学士学位外语水平联考", 3662 | pxHeight: 567, 3663 | pxWidth: 390, 3664 | dpi: 300, 3665 | mmHeight: 48, 3666 | mmWidth: 33, 3667 | }, 3668 | { 3669 | id: 393, 3670 | name: "浙江成人自考", 3671 | pxHeight: 600, 3672 | pxWidth: 400, 3673 | dpi: 300, 3674 | mmHeight: 48, 3675 | mmWidth: 33, 3676 | }, 3677 | { 3678 | id: 394, 3679 | name: "高考报名(545×763)", 3680 | pxHeight: 763, 3681 | pxWidth: 545, 3682 | dpi: 300, 3683 | mmHeight: 65, 3684 | mmWidth: 46, 3685 | }, 3686 | { 3687 | id: 395, 3688 | name: "小学登记报名", 3689 | pxHeight: 175, 3690 | pxWidth: 125, 3691 | dpi: 300, 3692 | mmHeight: 15, 3693 | mmWidth: 11, 3694 | }, 3695 | { 3696 | id: 396, 3697 | name: "高考报名(480×640)", 3698 | pxHeight: 640, 3699 | pxWidth: 480, 3700 | dpi: 300, 3701 | mmHeight: 54, 3702 | mmWidth: 41, 3703 | }, 3704 | { 3705 | id: 397, 3706 | name: "香港城市大学入学报名", 3707 | pxHeight: 475, 3708 | pxWidth: 450, 3709 | dpi: 300, 3710 | mmHeight: 40, 3711 | mmWidth: 38, 3712 | }, 3713 | { 3714 | id: 398, 3715 | name: "北京师范大学入学报名", 3716 | pxHeight: 350, 3717 | pxWidth: 250, 3718 | dpi: 300, 3719 | mmHeight: 30, 3720 | mmWidth: 21, 3721 | }, 3722 | { 3723 | id: 399, 3724 | name: "中国农业大学入学报名", 3725 | pxHeight: 564, 3726 | pxWidth: 420, 3727 | dpi: 300, 3728 | mmHeight: 48, 3729 | mmWidth: 36, 3730 | }, 3731 | { 3732 | id: 400, 3733 | name: "中南财经政法大学入学报名", 3734 | pxHeight: 240, 3735 | pxWidth: 180, 3736 | dpi: 300, 3737 | mmHeight: 20, 3738 | mmWidth: 15, 3739 | }, 3740 | { 3741 | id: 401, 3742 | name: "香港学生国内报名", 3743 | pxHeight: 240, 3744 | pxWidth: 168, 3745 | dpi: 300, 3746 | mmHeight: 20, 3747 | mmWidth: 14, 3748 | }, 3749 | { 3750 | id: 402, 3751 | name: "大数据工程师报名", 3752 | pxHeight: 441, 3753 | pxWidth: 358, 3754 | dpi: 350, 3755 | mmHeight: 32, 3756 | mmWidth: 26, 3757 | }, 3758 | { 3759 | id: 403, 3760 | name: "运城市临猗事业单位报名", 3761 | pxHeight: 300, 3762 | pxWidth: 215, 3763 | dpi: 300, 3764 | mmHeight: 25, 3765 | mmWidth: 18, 3766 | }, 3767 | { 3768 | id: 404, 3769 | name: "苏州科技大学研究生报名", 3770 | pxHeight: 200, 3771 | pxWidth: 150, 3772 | dpi: 300, 3773 | mmHeight: 17, 3774 | mmWidth: 13, 3775 | }, 3776 | { 3777 | id: 405, 3778 | name: "广西贺州高考报名", 3779 | pxHeight: 640, 3780 | pxWidth: 480, 3781 | dpi: 300, 3782 | mmHeight: 54, 3783 | mmWidth: 41, 3784 | }, 3785 | { 3786 | id: 406, 3787 | name: "广西钦州高考报名", 3788 | pxHeight: 640, 3789 | pxWidth: 480, 3790 | dpi: 300, 3791 | mmHeight: 54, 3792 | mmWidth: 41, 3793 | }, 3794 | { 3795 | id: 407, 3796 | name: "北京地区中央机构报名", 3797 | pxHeight: 620, 3798 | pxWidth: 482, 3799 | dpi: 300, 3800 | mmHeight: 45, 3801 | mmWidth: 35, 3802 | }, 3803 | { 3804 | id: 408, 3805 | name: "华师大MBA报名", 3806 | pxHeight: 200, 3807 | pxWidth: 150, 3808 | dpi: 300, 3809 | mmHeight: 17, 3810 | mmWidth: 13, 3811 | }, 3812 | { 3813 | id: 409, 3814 | name: "高考报名(420×560)", 3815 | pxHeight: 560, 3816 | pxWidth: 420, 3817 | dpi: 300, 3818 | mmHeight: 47, 3819 | mmWidth: 36, 3820 | }, 3821 | { 3822 | id: 410, 3823 | name: "高考报名(192×256)", 3824 | pxHeight: 256, 3825 | pxWidth: 192, 3826 | dpi: 300, 3827 | mmHeight: 22, 3828 | mmWidth: 16, 3829 | }, 3830 | { 3831 | id: 411, 3832 | name: "大学报名电子照", 3833 | pxHeight: 413, 3834 | pxWidth: 295, 3835 | dpi: 300, 3836 | mmHeight: 35, 3837 | mmWidth: 25, 3838 | }, 3839 | { 3840 | id: 412, 3841 | name: "幼升小报名", 3842 | pxHeight: 354, 3843 | pxWidth: 272, 3844 | dpi: 300, 3845 | mmHeight: 30, 3846 | mmWidth: 23, 3847 | }, 3848 | { 3849 | id: 413, 3850 | name: "人力资源管理师报名", 3851 | pxHeight: 567, 3852 | pxWidth: 390, 3853 | dpi: 300, 3854 | mmHeight: 48, 3855 | mmWidth: 33, 3856 | }, 3857 | { 3858 | id: 414, 3859 | name: "幼升小报名(350dpi)", 3860 | pxHeight: 354, 3861 | pxWidth: 272, 3862 | dpi: 350, 3863 | mmHeight: 30, 3864 | mmWidth: 23, 3865 | }, 3866 | { 3867 | id: 415, 3868 | name: "监理工程师(150×210)", 3869 | pxHeight: 210, 3870 | pxWidth: 150, 3871 | dpi: 300, 3872 | mmHeight: 18, 3873 | mmWidth: 13, 3874 | }, 3875 | { 3876 | id: 416, 3877 | name: "监理工程师(215×300)", 3878 | pxHeight: 300, 3879 | pxWidth: 215, 3880 | dpi: 300, 3881 | mmHeight: 25, 3882 | mmWidth: 18, 3883 | }, 3884 | { 3885 | id: 417, 3886 | name: "监理工程师(295×413)", 3887 | pxHeight: 413, 3888 | pxWidth: 295, 3889 | dpi: 300, 3890 | mmHeight: 35, 3891 | mmWidth: 25, 3892 | }, 3893 | { 3894 | id: 418, 3895 | name: "亳州人民医院报考2017", 3896 | pxHeight: 400, 3897 | pxWidth: 300, 3898 | dpi: 300, 3899 | mmHeight: 34, 3900 | mmWidth: 25, 3901 | }, 3902 | { 3903 | id: 419, 3904 | name: "学士学位报考", 3905 | pxHeight: 160, 3906 | pxWidth: 120, 3907 | dpi: 300, 3908 | mmHeight: 13, 3909 | mmWidth: 10, 3910 | }, 3911 | { 3912 | id: 420, 3913 | name: "执法证冲印版", 3914 | pxHeight: 378, 3915 | pxWidth: 307, 3916 | dpi: 300, 3917 | mmHeight: 32, 3918 | mmWidth: 26, 3919 | }, 3920 | { 3921 | id: 421, 3922 | name: "身份证(无回执)", 3923 | pxHeight: 441, 3924 | pxWidth: 358, 3925 | dpi: 350, 3926 | mmHeight: 32, 3927 | mmWidth: 26, 3928 | }, 3929 | { 3930 | id: 422, 3931 | name: "深圳行政执法证", 3932 | pxHeight: 441, 3933 | pxWidth: 358, 3934 | dpi: 350, 3935 | mmHeight: 32, 3936 | mmWidth: 26, 3937 | }, 3938 | { 3939 | id: 423, 3940 | name: "二级建造师证(215×300)", 3941 | pxHeight: 300, 3942 | pxWidth: 215, 3943 | dpi: 300, 3944 | mmHeight: 25, 3945 | mmWidth: 18, 3946 | }, 3947 | { 3948 | id: 424, 3949 | name: "二级建造师证(100×140)", 3950 | pxHeight: 140, 3951 | pxWidth: 100, 3952 | dpi: 300, 3953 | mmHeight: 12, 3954 | mmWidth: 8, 3955 | }, 3956 | { 3957 | id: 425, 3958 | name: "河南行政执法证", 3959 | pxHeight: 630, 3960 | pxWidth: 472, 3961 | dpi: 300, 3962 | mmHeight: 53, 3963 | mmWidth: 40, 3964 | }, 3965 | { 3966 | id: 426, 3967 | name: "广东行政执法证", 3968 | pxHeight: 630, 3969 | pxWidth: 472, 3970 | dpi: 300, 3971 | mmHeight: 53, 3972 | mmWidth: 40, 3973 | }, 3974 | { 3975 | id: 427, 3976 | name: "江西行政执法证", 3977 | pxHeight: 378, 3978 | pxWidth: 283, 3979 | dpi: 300, 3980 | mmHeight: 32, 3981 | mmWidth: 24, 3982 | }, 3983 | { 3984 | id: 428, 3985 | name: "全国林业执法证", 3986 | pxHeight: 390, 3987 | pxWidth: 260, 3988 | dpi: 300, 3989 | mmHeight: 33, 3990 | mmWidth: 22, 3991 | }, 3992 | { 3993 | id: 429, 3994 | name: "辽宁林业执法证", 3995 | pxHeight: 390, 3996 | pxWidth: 260, 3997 | dpi: 300, 3998 | mmHeight: 33, 3999 | mmWidth: 22, 4000 | }, 4001 | { 4002 | id: 430, 4003 | name: "导游证", 4004 | pxHeight: 385, 4005 | pxWidth: 285, 4006 | dpi: 300, 4007 | mmHeight: 33, 4008 | mmWidth: 23, 4009 | }, 4010 | { 4011 | id: 431, 4012 | name: "山东导游证", 4013 | pxHeight: 385, 4014 | pxWidth: 288, 4015 | dpi: 300, 4016 | mmHeight: 33, 4017 | mmWidth: 23, 4018 | }, 4019 | { 4020 | id: 432, 4021 | name: "厦门大学毕业证", 4022 | pxHeight: 640, 4023 | pxWidth: 480, 4024 | dpi: 300, 4025 | mmHeight: 54, 4026 | mmWidth: 41, 4027 | }, 4028 | { 4029 | id: 433, 4030 | name: "反假证", 4031 | pxHeight: 210, 4032 | pxWidth: 150, 4033 | dpi: 300, 4034 | mmHeight: 18, 4035 | mmWidth: 13, 4036 | }, 4037 | { 4038 | id: 434, 4039 | name: "医保证(300dpi)", 4040 | pxHeight: 441, 4041 | pxWidth: 358, 4042 | dpi: 300, 4043 | mmHeight: 40, 4044 | mmWidth: 30, 4045 | }, 4046 | { 4047 | id: 435, 4048 | name: "深圳社保证(小于20KB, 无回执)", 4049 | pxHeight: 441, 4050 | pxWidth: 358, 4051 | dpi: 300, 4052 | mmHeight: 32, 4053 | mmWidth: 26, 4054 | }, 4055 | { 4056 | id: 436, 4057 | name: "医保证(350dpi)", 4058 | pxHeight: 441, 4059 | pxWidth: 358, 4060 | dpi: 350, 4061 | mmHeight: 32, 4062 | mmWidth: 26, 4063 | }, 4064 | { 4065 | id: 437, 4066 | name: "金蝶认证", 4067 | pxHeight: 441, 4068 | pxWidth: 358, 4069 | dpi: 350, 4070 | mmHeight: 32, 4071 | mmWidth: 26, 4072 | }, 4073 | { 4074 | id: 438, 4075 | name: "警官证", 4076 | pxHeight: 533, 4077 | pxWidth: 400, 4078 | dpi: 300, 4079 | mmHeight: 45, 4080 | mmWidth: 34, 4081 | }, 4082 | { 4083 | id: 439, 4084 | name: "一级建造师证(电子版)", 4085 | pxHeight: 630, 4086 | pxWidth: 472, 4087 | dpi: 300, 4088 | mmHeight: 53, 4089 | mmWidth: 40, 4090 | }, 4091 | { 4092 | id: 440, 4093 | name: "一级建造师证(冲印版)", 4094 | pxHeight: 531, 4095 | pxWidth: 401, 4096 | dpi: 300, 4097 | mmHeight: 45, 4098 | mmWidth: 34, 4099 | }, 4100 | { 4101 | id: 441, 4102 | name: "二级建造师证(电子版)", 4103 | pxHeight: 168, 4104 | pxWidth: 126, 4105 | dpi: 300, 4106 | mmHeight: 14, 4107 | mmWidth: 11, 4108 | }, 4109 | { 4110 | id: 442, 4111 | name: "党员证", 4112 | pxHeight: 600, 4113 | pxWidth: 400, 4114 | dpi: 300, 4115 | mmHeight: 51, 4116 | mmWidth: 34, 4117 | }, 4118 | { 4119 | id: 443, 4120 | name: "秘书证", 4121 | pxHeight: 240, 4122 | pxWidth: 160, 4123 | dpi: 300, 4124 | mmHeight: 20, 4125 | mmWidth: 14, 4126 | }, 4127 | { 4128 | id: 444, 4129 | name: "团员证", 4130 | pxHeight: 372, 4131 | pxWidth: 254, 4132 | dpi: 300, 4133 | mmHeight: 32, 4134 | mmWidth: 22, 4135 | }, 4136 | { 4137 | id: 445, 4138 | name: "高中毕业证", 4139 | pxHeight: 354, 4140 | pxWidth: 272, 4141 | dpi: 300, 4142 | mmHeight: 30, 4143 | mmWidth: 23, 4144 | }, 4145 | { 4146 | id: 446, 4147 | name: "陕西二级建造师证", 4148 | pxHeight: 661, 4149 | pxWidth: 455, 4150 | dpi: 300, 4151 | mmHeight: 56, 4152 | mmWidth: 39, 4153 | }, 4154 | { 4155 | id: 447, 4156 | name: "社保证(350dpi, 无回执,15~35kb)", 4157 | pxHeight: 441, 4158 | pxWidth: 358, 4159 | dpi: 350, 4160 | mmHeight: 32, 4161 | mmWidth: 26, 4162 | }, 4163 | { 4164 | id: 448, 4165 | name: "计算机三级", 4166 | pxHeight: 320, 4167 | pxWidth: 240, 4168 | dpi: 300, 4169 | mmHeight: 27, 4170 | mmWidth: 20, 4171 | }, 4172 | { 4173 | id: 449, 4174 | name: "电子导游证", 4175 | pxHeight: 626, 4176 | pxWidth: 413, 4177 | dpi: 300, 4178 | mmHeight: 49, 4179 | mmWidth: 35, 4180 | }, 4181 | { 4182 | id: 450, 4183 | name: "深圳社保证(大于140KB, 无回执)", 4184 | pxHeight: 441, 4185 | pxWidth: 358, 4186 | dpi: 350, 4187 | mmHeight: 32, 4188 | mmWidth: 26, 4189 | }, 4190 | { 4191 | id: 451, 4192 | name: "湖北社保证", 4193 | pxHeight: 441, 4194 | pxWidth: 358, 4195 | dpi: 350, 4196 | mmHeight: 32, 4197 | mmWidth: 26, 4198 | }, 4199 | { 4200 | id: 452, 4201 | name: "江西社保证", 4202 | pxHeight: 441, 4203 | pxWidth: 358, 4204 | dpi: 350, 4205 | mmHeight: 32, 4206 | mmWidth: 26, 4207 | }, 4208 | { 4209 | id: 453, 4210 | name: "上海电子学生证", 4211 | pxHeight: 354, 4212 | pxWidth: 272, 4213 | dpi: 300, 4214 | mmHeight: 30, 4215 | mmWidth: 23, 4216 | }, 4217 | { 4218 | id: 454, 4219 | name: "人民警察证", 4220 | pxHeight: 533, 4221 | pxWidth: 400, 4222 | dpi: 300, 4223 | mmHeight: 45, 4224 | mmWidth: 33, 4225 | }, 4226 | { 4227 | id: 455, 4228 | name: "甘肃社保证", 4229 | pxHeight: 441, 4230 | pxWidth: 358, 4231 | dpi: 350, 4232 | mmHeight: 32, 4233 | mmWidth: 26, 4234 | }, 4235 | { 4236 | id: 456, 4237 | name: "二级建造师证(295×413)", 4238 | pxHeight: 413, 4239 | pxWidth: 295, 4240 | dpi: 300, 4241 | mmHeight: 35, 4242 | mmWidth: 25, 4243 | }, 4244 | { 4245 | id: 457, 4246 | name: "二级建造师证(220×300)", 4247 | pxHeight: 300, 4248 | pxWidth: 220, 4249 | dpi: 300, 4250 | mmHeight: 25, 4251 | mmWidth: 18, 4252 | }, 4253 | { 4254 | id: 458, 4255 | name: "义工证", 4256 | pxHeight: 567, 4257 | pxWidth: 390, 4258 | dpi: 300, 4259 | mmHeight: 48, 4260 | mmWidth: 33, 4261 | }, 4262 | { 4263 | id: 459, 4264 | name: "进博会证照", 4265 | pxHeight: 600, 4266 | pxWidth: 400, 4267 | dpi: 300, 4268 | mmHeight: 51, 4269 | mmWidth: 34, 4270 | }, 4271 | { 4272 | id: 460, 4273 | name: "居住证", 4274 | pxHeight: 441, 4275 | pxWidth: 358, 4276 | dpi: 350, 4277 | mmHeight: 32, 4278 | mmWidth: 26, 4279 | }, 4280 | { 4281 | id: 461, 4282 | name: "大学个人档案", 4283 | pxHeight: 160, 4284 | pxWidth: 160, 4285 | dpi: 300, 4286 | mmHeight: 14, 4287 | mmWidth: 14, 4288 | }, 4289 | { 4290 | id: 462, 4291 | name: "闽南师范大学", 4292 | pxHeight: 800, 4293 | pxWidth: 600, 4294 | dpi: 300, 4295 | mmHeight: 68, 4296 | mmWidth: 51, 4297 | }, 4298 | { 4299 | id: 463, 4300 | name: "云南师范大学文理学院", 4301 | pxHeight: 214, 4302 | pxWidth: 144, 4303 | dpi: 300, 4304 | mmHeight: 18, 4305 | mmWidth: 12, 4306 | }, 4307 | { 4308 | id: 464, 4309 | name: "大学生图像信息采集", 4310 | pxHeight: 640, 4311 | pxWidth: 480, 4312 | dpi: 300, 4313 | mmHeight: 54, 4314 | mmWidth: 41, 4315 | }, 4316 | { 4317 | id: 465, 4318 | name: "大学生信息采集", 4319 | pxHeight: 720, 4320 | pxWidth: 540, 4321 | dpi: 300, 4322 | mmHeight: 61, 4323 | mmWidth: 46, 4324 | }, 4325 | { 4326 | id: 466, 4327 | name: "大学生入党统计表(天津商业大学)", 4328 | pxHeight: 496, 4329 | pxWidth: 378, 4330 | dpi: 300, 4331 | mmHeight: 42, 4332 | mmWidth: 32, 4333 | }, 4334 | { 4335 | id: 467, 4336 | name: "重庆西南大学自考", 4337 | pxHeight: 640, 4338 | pxWidth: 480, 4339 | dpi: 300, 4340 | mmHeight: 54, 4341 | mmWidth: 41, 4342 | }, 4343 | { 4344 | id: 468, 4345 | name: "莱芜职业技术学院学籍照", 4346 | pxHeight: 441, 4347 | pxWidth: 358, 4348 | dpi: 300, 4349 | mmHeight: 32, 4350 | mmWidth: 26, 4351 | }, 4352 | { 4353 | id: 469, 4354 | name: "香港特別行政區護照", 4355 | pxHeight: 590, 4356 | pxWidth: 472, 4357 | dpi: 300, 4358 | mmHeight: 50, 4359 | mmWidth: 40, 4360 | }, 4361 | { 4362 | id: 470, 4363 | name: "相片采集照", 4364 | pxHeight: 640, 4365 | pxWidth: 480, 4366 | dpi: 300, 4367 | mmHeight: 54, 4368 | mmWidth: 41, 4369 | }, 4370 | { 4371 | id: 471, 4372 | name: "滕州市社保照", 4373 | pxHeight: 441, 4374 | pxWidth: 358, 4375 | dpi: 300, 4376 | mmHeight: 40, 4377 | mmWidth: 30, 4378 | }, 4379 | { 4380 | id: 472, 4381 | name: "山西省社保照", 4382 | pxHeight: 441, 4383 | pxWidth: 358, 4384 | dpi: 350, 4385 | mmHeight: 32, 4386 | mmWidth: 26, 4387 | }, 4388 | { 4389 | id: 473, 4390 | name: "河南社保照", 4391 | pxHeight: 441, 4392 | pxWidth: 358, 4393 | dpi: 300, 4394 | mmHeight: 40, 4395 | mmWidth: 30, 4396 | }, 4397 | { 4398 | id: 474, 4399 | name: "全国房地产经济从业职业资格证", 4400 | pxHeight: 300, 4401 | pxWidth: 215, 4402 | dpi: 300, 4403 | mmHeight: 25, 4404 | mmWidth: 18, 4405 | }, 4406 | { 4407 | id: 475, 4408 | name: "电子医生注册", 4409 | pxHeight: 472, 4410 | pxWidth: 354, 4411 | dpi: 300, 4412 | mmHeight: 40, 4413 | mmWidth: 30, 4414 | }, 4415 | { 4416 | id: 476, 4417 | name: "护士电子化注册", 4418 | pxHeight: 472, 4419 | pxWidth: 354, 4420 | dpi: 300, 4421 | mmHeight: 40, 4422 | mmWidth: 30, 4423 | }, 4424 | { 4425 | id: 477, 4426 | name: "康复治疗师考试(一寸) ", 4427 | pxHeight: 413, 4428 | pxWidth: 295, 4429 | dpi: 300, 4430 | mmHeight: 35, 4431 | mmWidth: 25, 4432 | }, 4433 | { 4434 | id: 478, 4435 | name: "保健按摩师", 4436 | pxHeight: 146, 4437 | pxWidth: 118, 4438 | dpi: 300, 4439 | mmHeight: 12, 4440 | mmWidth: 10, 4441 | }, 4442 | { 4443 | id: 479, 4444 | name: "摄影师", 4445 | pxHeight: 146, 4446 | pxWidth: 118, 4447 | dpi: 300, 4448 | mmHeight: 12, 4449 | mmWidth: 10, 4450 | }, 4451 | { 4452 | id: 480, 4453 | name: "二级建造师(160×180)", 4454 | pxHeight: 180, 4455 | pxWidth: 160, 4456 | dpi: 300, 4457 | mmHeight: 15, 4458 | mmWidth: 14, 4459 | }, 4460 | { 4461 | id: 481, 4462 | name: "金融服务师", 4463 | pxHeight: 140, 4464 | pxWidth: 100, 4465 | dpi: 300, 4466 | mmHeight: 12, 4467 | mmWidth: 8, 4468 | }, 4469 | { 4470 | id: 482, 4471 | name: "执业医师注册", 4472 | pxHeight: 441, 4473 | pxWidth: 385, 4474 | dpi: 300, 4475 | mmHeight: 40, 4476 | mmWidth: 33, 4477 | }, 4478 | { 4479 | id: 483, 4480 | name: "二级建造师(160×200)", 4481 | pxHeight: 200, 4482 | pxWidth: 160, 4483 | dpi: 300, 4484 | mmHeight: 18, 4485 | mmWidth: 14, 4486 | }, 4487 | { 4488 | id: 484, 4489 | name: "主管护师(160×210)", 4490 | pxHeight: 210, 4491 | pxWidth: 160, 4492 | dpi: 300, 4493 | mmHeight: 18, 4494 | mmWidth: 14, 4495 | }, 4496 | { 4497 | id: 485, 4498 | name: "陕西省二级建造师", 4499 | pxHeight: 661, 4500 | pxWidth: 455, 4501 | dpi: 300, 4502 | mmHeight: 56, 4503 | mmWidth: 39, 4504 | }, 4505 | { 4506 | id: 486, 4507 | name: "主治医师", 4508 | pxHeight: 413, 4509 | pxWidth: 295, 4510 | dpi: 300, 4511 | mmHeight: 35, 4512 | mmWidth: 25, 4513 | }, 4514 | { 4515 | id: 487, 4516 | name: "川北医学院自考本科", 4517 | pxHeight: 480, 4518 | pxWidth: 360, 4519 | dpi: 300, 4520 | mmHeight: 41, 4521 | mmWidth: 30, 4522 | }, 4523 | { 4524 | id: 488, 4525 | name: "学校自考", 4526 | pxHeight: 640, 4527 | pxWidth: 480, 4528 | dpi: 300, 4529 | mmHeight: 54, 4530 | mmWidth: 41, 4531 | }, 4532 | { 4533 | id: 489, 4534 | name: "四川自考", 4535 | pxHeight: 480, 4536 | pxWidth: 360, 4537 | dpi: 300, 4538 | mmHeight: 41, 4539 | mmWidth: 30, 4540 | }, 4541 | { 4542 | id: 490, 4543 | name: "上海自考", 4544 | pxHeight: 720, 4545 | pxWidth: 480, 4546 | dpi: 300, 4547 | mmHeight: 61, 4548 | mmWidth: 41, 4549 | }, 4550 | { 4551 | id: 491, 4552 | name: "北京自考", 4553 | pxHeight: 576, 4554 | pxWidth: 400, 4555 | dpi: 300, 4556 | mmHeight: 48, 4557 | mmWidth: 33, 4558 | }, 4559 | { 4560 | id: 492, 4561 | name: "河北自考", 4562 | pxHeight: 567, 4563 | pxWidth: 390, 4564 | dpi: 300, 4565 | mmHeight: 48, 4566 | mmWidth: 33, 4567 | }, 4568 | { 4569 | id: 493, 4570 | name: "新疆自考", 4571 | pxHeight: 400, 4572 | pxWidth: 300, 4573 | dpi: 300, 4574 | mmHeight: 34, 4575 | mmWidth: 25, 4576 | }, 4577 | { 4578 | id: 494, 4579 | name: "安徽自考", 4580 | pxHeight: 192, 4581 | pxWidth: 144, 4582 | dpi: 300, 4583 | mmHeight: 16, 4584 | mmWidth: 12, 4585 | }, 4586 | { 4587 | id: 495, 4588 | name: "山东自考", 4589 | pxHeight: 320, 4590 | pxWidth: 240, 4591 | dpi: 300, 4592 | mmHeight: 27, 4593 | mmWidth: 20, 4594 | }, 4595 | { 4596 | id: 496, 4597 | name: "广州市考", 4598 | pxHeight: 100, 4599 | pxWidth: 70, 4600 | dpi: 300, 4601 | mmHeight: 8, 4602 | mmWidth: 6, 4603 | }, 4604 | { 4605 | id: 497, 4606 | name: "福建自考", 4607 | pxHeight: 480, 4608 | pxWidth: 360, 4609 | dpi: 300, 4610 | mmHeight: 41, 4611 | mmWidth: 30, 4612 | }, 4613 | { 4614 | id: 498, 4615 | name: "软考", 4616 | pxHeight: 413, 4617 | pxWidth: 295, 4618 | dpi: 300, 4619 | mmHeight: 35, 4620 | mmWidth: 25, 4621 | }, 4622 | { 4623 | id: 499, 4624 | name: "三寸", 4625 | pxHeight: 991, 4626 | pxWidth: 649, 4627 | dpi: 300, 4628 | mmHeight: 84, 4629 | mmWidth: 55, 4630 | }, 4631 | { 4632 | id: 500, 4633 | name: "五寸", 4634 | pxHeight: 1499, 4635 | pxWidth: 1050, 4636 | dpi: 300, 4637 | mmHeight: 127, 4638 | mmWidth: 89, 4639 | }, 4640 | { 4641 | id: 501, 4642 | name: "四寸", 4643 | pxHeight: 1205, 4644 | pxWidth: 898, 4645 | dpi: 300, 4646 | mmHeight: 102, 4647 | mmWidth: 76, 4648 | }, 4649 | { 4650 | id: 502, 4651 | name: "重庆选调生", 4652 | pxHeight: 260, 4653 | pxWidth: 200, 4654 | dpi: 300, 4655 | mmHeight: 22, 4656 | mmWidth: 17, 4657 | }, 4658 | { 4659 | id: 503, 4660 | name: "小学新生学籍", 4661 | pxHeight: 420, 4662 | pxWidth: 300, 4663 | dpi: 300, 4664 | mmHeight: 36, 4665 | mmWidth: 25, 4666 | }, 4667 | { 4668 | id: 504, 4669 | name: "毕业生图像信息采集(20~40kb)", 4670 | pxHeight: 640, 4671 | pxWidth: 480, 4672 | dpi: 300, 4673 | mmHeight: 54, 4674 | mmWidth: 41, 4675 | }, 4676 | { 4677 | id: 505, 4678 | name: "毕业生图像信息采集", 4679 | pxHeight: 640, 4680 | pxWidth: 480, 4681 | dpi: 300, 4682 | mmHeight: 54, 4683 | mmWidth: 41, 4684 | }, 4685 | { 4686 | id: 506, 4687 | name: "研究生(27×36mm)", 4688 | pxHeight: 425, 4689 | pxWidth: 318, 4690 | dpi: 300, 4691 | mmHeight: 36, 4692 | mmWidth: 27, 4693 | }, 4694 | { 4695 | id: 507, 4696 | name: "普通话水平测试(144×192)", 4697 | pxHeight: 192, 4698 | pxWidth: 144, 4699 | dpi: 300, 4700 | mmHeight: 16, 4701 | mmWidth: 12, 4702 | }, 4703 | { 4704 | id: 508, 4705 | name: "普通话水平测试(144×172)", 4706 | pxHeight: 172, 4707 | pxWidth: 144, 4708 | dpi: 300, 4709 | mmHeight: 15, 4710 | mmWidth: 12, 4711 | }, 4712 | { 4713 | id: 509, 4714 | name: "结婚照", 4715 | pxHeight: 413, 4716 | pxWidth: 626, 4717 | dpi: 300, 4718 | mmHeight: 35, 4719 | mmWidth: 53, 4720 | }, 4721 | { 4722 | id: 510, 4723 | name: "三支一扶", 4724 | pxHeight: 160, 4725 | pxWidth: 130, 4726 | dpi: 300, 4727 | mmHeight: 14, 4728 | mmWidth: 11, 4729 | }, 4730 | { 4731 | id: 511, 4732 | name: "日本签证(二寸)上海&成都", 4733 | pxHeight: 531, 4734 | pxWidth: 413, 4735 | dpi: 300, 4736 | mmHeight: 45, 4737 | mmWidth: 35, 4738 | }, 4739 | { 4740 | id: 512, 4741 | name: "日本签证上海&北京&广州", 4742 | pxHeight: 531, 4743 | pxWidth: 531, 4744 | dpi: 300, 4745 | mmHeight: 45, 4746 | mmWidth: 45, 4747 | }, 4748 | { 4749 | id: 513, 4750 | name: "中高级口译", 4751 | pxHeight: 626, 4752 | pxWidth: 413, 4753 | dpi: 300, 4754 | mmHeight: 53, 4755 | mmWidth: 35, 4756 | }, 4757 | { 4758 | id: 514, 4759 | name: "社保证(无回执)", 4760 | pxHeight: 295, 4761 | pxWidth: 236, 4762 | dpi: 300, 4763 | mmHeight: 25, 4764 | mmWidth: 20, 4765 | }, 4766 | { 4767 | id: 515, 4768 | name: "全民健身操舞", 4769 | pxHeight: 295, 4770 | pxWidth: 236, 4771 | dpi: 300, 4772 | mmHeight: 25, 4773 | mmWidth: 20, 4774 | }, 4775 | { 4776 | id: 516, 4777 | name: "营养配餐员", 4778 | pxHeight: 295, 4779 | pxWidth: 236, 4780 | dpi: 300, 4781 | mmHeight: 25, 4782 | mmWidth: 20, 4783 | }, 4784 | { 4785 | id: 517, 4786 | name: "制图员(大一寸,350dpi)", 4787 | pxHeight: 661, 4788 | pxWidth: 455, 4789 | dpi: 350, 4790 | mmHeight: 661, 4791 | mmWidth: 33, 4792 | }, 4793 | { 4794 | id: 518, 4795 | name: "计算机中级操作员", 4796 | pxHeight: 661, 4797 | pxWidth: 455, 4798 | dpi: 350, 4799 | mmHeight: 48, 4800 | mmWidth: 33, 4801 | }, 4802 | { 4803 | id: 519, 4804 | name: "高速公路管理局", 4805 | pxHeight: 168, 4806 | pxWidth: 126, 4807 | dpi: 300, 4808 | mmHeight: 14, 4809 | mmWidth: 11, 4810 | }, 4811 | { 4812 | id: 520, 4813 | name: "单招", 4814 | pxHeight: 390, 4815 | pxWidth: 260, 4816 | dpi: 300, 4817 | mmHeight: 33, 4818 | mmWidth: 22, 4819 | }, 4820 | { 4821 | id: 521, 4822 | name: "事业单位招聘", 4823 | pxHeight: 160, 4824 | pxWidth: 120, 4825 | dpi: 300, 4826 | mmHeight: 13, 4827 | mmWidth: 10, 4828 | }, 4829 | { 4830 | id: 522, 4831 | name: "出入境申请表", 4832 | pxHeight: 480, 4833 | pxWidth: 360, 4834 | dpi: 300, 4835 | mmHeight: 41, 4836 | mmWidth: 30, 4837 | }, 4838 | { 4839 | id: 523, 4840 | name: "社保证(350dpi, 无回执,30~60kb)", 4841 | pxHeight: 441, 4842 | pxWidth: 358, 4843 | dpi: 300, 4844 | mmHeight: 32, 4845 | mmWidth: 26, 4846 | }, 4847 | { 4848 | id: 524, 4849 | name: "国企单位存档", 4850 | pxHeight: 120, 4851 | pxWidth: 85, 4852 | dpi: 300, 4853 | mmHeight: 10, 4854 | mmWidth: 7, 4855 | }, 4856 | { 4857 | id: 525, 4858 | name: "上海专升本", 4859 | pxHeight: 556, 4860 | pxWidth: 390, 4861 | dpi: 300, 4862 | mmHeight: 47, 4863 | mmWidth: 33, 4864 | }, 4865 | { 4866 | id: 526, 4867 | name: "缅甸签证(上海广州成都)", 4868 | pxHeight: 531, 4869 | pxWidth: 413, 4870 | dpi: 300, 4871 | mmHeight: 45, 4872 | mmWidth: 35, 4873 | }, 4874 | { 4875 | id: 527, 4876 | name: "缅甸签证(北京)", 4877 | pxHeight: 637, 4878 | pxWidth: 448, 4879 | dpi: 300, 4880 | mmHeight: 54, 4881 | mmWidth: 38, 4882 | }, 4883 | { 4884 | id: 528, 4885 | name: "墨西哥签证(北京)", 4886 | pxHeight: 460, 4887 | pxWidth: 366, 4888 | dpi: 300, 4889 | mmHeight: 39, 4890 | mmWidth: 31, 4891 | }, 4892 | { 4893 | id: 529, 4894 | name: "肯尼亚签证(北京)", 4895 | pxHeight: 531, 4896 | pxWidth: 413, 4897 | dpi: 300, 4898 | mmHeight: 45, 4899 | mmWidth: 35, 4900 | }, 4901 | { 4902 | id: 530, 4903 | name: "入台证(大一寸)", 4904 | pxHeight: 566, 4905 | pxWidth: 389, 4906 | dpi: 300, 4907 | mmHeight: 48, 4908 | mmWidth: 33, 4909 | }, 4910 | { 4911 | id: 531, 4912 | name: "冰岛签证(北京)", 4913 | pxHeight: 590, 4914 | pxWidth: 472, 4915 | dpi: 300, 4916 | mmHeight: 50, 4917 | mmWidth: 40, 4918 | }, 4919 | { 4920 | id: 532, 4921 | name: "冰岛签证(上海广州)", 4922 | pxHeight: 531, 4923 | pxWidth: 413, 4924 | dpi: 300, 4925 | mmHeight: 45, 4926 | mmWidth: 35, 4927 | }, 4928 | { 4929 | id: 533, 4930 | name: "黎巴嫩签证", 4931 | pxHeight: 531, 4932 | pxWidth: 413, 4933 | dpi: 300, 4934 | mmHeight: 45, 4935 | mmWidth: 35, 4936 | }, 4937 | { 4938 | id: 534, 4939 | name: "约旦签证", 4940 | pxHeight: 531, 4941 | pxWidth: 413, 4942 | dpi: 300, 4943 | mmHeight: 45, 4944 | mmWidth: 35, 4945 | }, 4946 | { 4947 | id: 535, 4948 | name: "阿曼签证", 4949 | pxHeight: 531, 4950 | pxWidth: 413, 4951 | dpi: 300, 4952 | mmHeight: 45, 4953 | mmWidth: 35, 4954 | }, 4955 | { 4956 | id: 536, 4957 | name: "伊拉克签证", 4958 | pxHeight: 531, 4959 | pxWidth: 413, 4960 | dpi: 300, 4961 | mmHeight: 45, 4962 | mmWidth: 35, 4963 | }, 4964 | { 4965 | id: 537, 4966 | name: "土库曼斯坦签证", 4967 | pxHeight: 531, 4968 | pxWidth: 413, 4969 | dpi: 300, 4970 | mmHeight: 45, 4971 | mmWidth: 35, 4972 | }, 4973 | { 4974 | id: 538, 4975 | name: "亚美尼亚签证", 4976 | pxHeight: 531, 4977 | pxWidth: 413, 4978 | dpi: 300, 4979 | mmHeight: 45, 4980 | mmWidth: 35, 4981 | }, 4982 | { 4983 | id: 539, 4984 | name: "阿富汗签证", 4985 | pxHeight: 531, 4986 | pxWidth: 413, 4987 | dpi: 300, 4988 | mmHeight: 45, 4989 | mmWidth: 35, 4990 | }, 4991 | { 4992 | id: 540, 4993 | name: "也门签证", 4994 | pxHeight: 531, 4995 | pxWidth: 413, 4996 | dpi: 300, 4997 | mmHeight: 45, 4998 | mmWidth: 35, 4999 | }, 5000 | { 5001 | id: 541, 5002 | name: "叙利亚签证", 5003 | pxHeight: 531, 5004 | pxWidth: 413, 5005 | dpi: 300, 5006 | mmHeight: 45, 5007 | mmWidth: 35, 5008 | }, 5009 | { 5010 | id: 542, 5011 | name: "巴布亚新几内亚签证", 5012 | pxHeight: 590, 5013 | pxWidth: 472, 5014 | dpi: 300, 5015 | mmHeight: 50, 5016 | mmWidth: 40, 5017 | }, 5018 | { 5019 | id: 543, 5020 | name: "坦桑尼亚签证", 5021 | pxHeight: 531, 5022 | pxWidth: 413, 5023 | dpi: 300, 5024 | mmHeight: 45, 5025 | mmWidth: 35, 5026 | }, 5027 | { 5028 | id: 544, 5029 | name: "加纳签证", 5030 | pxHeight: 531, 5031 | pxWidth: 413, 5032 | dpi: 300, 5033 | mmHeight: 45, 5034 | mmWidth: 35, 5035 | }, 5036 | { 5037 | id: 545, 5038 | name: "利比亚签证", 5039 | pxHeight: 531, 5040 | pxWidth: 413, 5041 | dpi: 300, 5042 | mmHeight: 45, 5043 | mmWidth: 35, 5044 | }, 5045 | { 5046 | id: 546, 5047 | name: "阿尔及利亚签证", 5048 | pxHeight: 531, 5049 | pxWidth: 413, 5050 | dpi: 300, 5051 | mmHeight: 45, 5052 | mmWidth: 35, 5053 | }, 5054 | { 5055 | id: 547, 5056 | name: "多哥签证", 5057 | pxHeight: 531, 5058 | pxWidth: 413, 5059 | dpi: 300, 5060 | mmHeight: 45, 5061 | mmWidth: 35, 5062 | }, 5063 | { 5064 | id: 548, 5065 | name: "刚果民主共和国签证", 5066 | pxHeight: 531, 5067 | pxWidth: 413, 5068 | dpi: 300, 5069 | mmHeight: 45, 5070 | mmWidth: 35, 5071 | }, 5072 | { 5073 | id: 549, 5074 | name: "莫桑比克签证", 5075 | pxHeight: 531, 5076 | pxWidth: 413, 5077 | dpi: 300, 5078 | mmHeight: 45, 5079 | mmWidth: 35, 5080 | }, 5081 | { 5082 | id: 550, 5083 | name: "津巴布韦签证", 5084 | pxHeight: 531, 5085 | pxWidth: 413, 5086 | dpi: 300, 5087 | mmHeight: 45, 5088 | mmWidth: 35, 5089 | }, 5090 | { 5091 | id: 551, 5092 | name: "科特迪瓦签证", 5093 | pxHeight: 531, 5094 | pxWidth: 413, 5095 | dpi: 300, 5096 | mmHeight: 45, 5097 | mmWidth: 35, 5098 | }, 5099 | { 5100 | id: 552, 5101 | name: "刚果共和国签证", 5102 | pxHeight: 531, 5103 | pxWidth: 413, 5104 | dpi: 300, 5105 | mmHeight: 45, 5106 | mmWidth: 35, 5107 | }, 5108 | { 5109 | id: 553, 5110 | name: "塞拉利昂签证", 5111 | pxHeight: 531, 5112 | pxWidth: 413, 5113 | dpi: 300, 5114 | mmHeight: 45, 5115 | mmWidth: 35, 5116 | }, 5117 | { 5118 | id: 554, 5119 | name: "布隆迪签证", 5120 | pxHeight: 531, 5121 | pxWidth: 413, 5122 | dpi: 300, 5123 | mmHeight: 45, 5124 | mmWidth: 35, 5125 | }, 5126 | { 5127 | id: 555, 5128 | name: "博茨瓦纳签证", 5129 | pxHeight: 531, 5130 | pxWidth: 413, 5131 | dpi: 300, 5132 | mmHeight: 45, 5133 | mmWidth: 35, 5134 | }, 5135 | { 5136 | id: 556, 5137 | name: "塞内加尔签证", 5138 | pxHeight: 531, 5139 | pxWidth: 413, 5140 | dpi: 300, 5141 | mmHeight: 45, 5142 | mmWidth: 35, 5143 | }, 5144 | { 5145 | id: 557, 5146 | name: "索马里签证", 5147 | pxHeight: 531, 5148 | pxWidth: 413, 5149 | dpi: 300, 5150 | mmHeight: 45, 5151 | mmWidth: 35, 5152 | }, 5153 | { 5154 | id: 558, 5155 | name: "厄立特里亚签证", 5156 | pxHeight: 531, 5157 | pxWidth: 413, 5158 | dpi: 300, 5159 | mmHeight: 45, 5160 | mmWidth: 35, 5161 | }, 5162 | { 5163 | id: 559, 5164 | name: "布基纳法索签证", 5165 | pxHeight: 531, 5166 | pxWidth: 413, 5167 | dpi: 300, 5168 | mmHeight: 45, 5169 | mmWidth: 35, 5170 | }, 5171 | { 5172 | id: 560, 5173 | name: "吉布提签证", 5174 | pxHeight: 531, 5175 | pxWidth: 413, 5176 | dpi: 300, 5177 | mmHeight: 45, 5178 | mmWidth: 35, 5179 | }, 5180 | { 5181 | id: 561, 5182 | name: "贝宁签证", 5183 | pxHeight: 531, 5184 | pxWidth: 413, 5185 | dpi: 300, 5186 | mmHeight: 45, 5187 | mmWidth: 35, 5188 | }, 5189 | { 5190 | id: 562, 5191 | name: "马拉维签证", 5192 | pxHeight: 531, 5193 | pxWidth: 413, 5194 | dpi: 300, 5195 | mmHeight: 45, 5196 | mmWidth: 35, 5197 | }, 5198 | { 5199 | id: 563, 5200 | name: "卢旺达签证", 5201 | pxHeight: 531, 5202 | pxWidth: 413, 5203 | dpi: 300, 5204 | mmHeight: 45, 5205 | mmWidth: 35, 5206 | }, 5207 | { 5208 | id: 564, 5209 | name: "乍得签证", 5210 | pxHeight: 531, 5211 | pxWidth: 413, 5212 | dpi: 300, 5213 | mmHeight: 45, 5214 | mmWidth: 35, 5215 | }, 5216 | { 5217 | id: 565, 5218 | name: "几内亚签证", 5219 | pxHeight: 531, 5220 | pxWidth: 413, 5221 | dpi: 300, 5222 | mmHeight: 45, 5223 | mmWidth: 35, 5224 | }, 5225 | { 5226 | id: 566, 5227 | name: "冈比亚签证", 5228 | pxHeight: 531, 5229 | pxWidth: 413, 5230 | dpi: 300, 5231 | mmHeight: 45, 5232 | mmWidth: 35, 5233 | }, 5234 | { 5235 | id: 567, 5236 | name: "尼日尔签证", 5237 | pxHeight: 531, 5238 | pxWidth: 413, 5239 | dpi: 300, 5240 | mmHeight: 45, 5241 | mmWidth: 35, 5242 | }, 5243 | { 5244 | id: 568, 5245 | name: "利比里亚签证", 5246 | pxHeight: 531, 5247 | pxWidth: 413, 5248 | dpi: 300, 5249 | mmHeight: 45, 5250 | mmWidth: 35, 5251 | }, 5252 | { 5253 | id: 569, 5254 | name: "莱索托签证", 5255 | pxHeight: 531, 5256 | pxWidth: 413, 5257 | dpi: 300, 5258 | mmHeight: 45, 5259 | mmWidth: 35, 5260 | }, 5261 | { 5262 | id: 570, 5263 | name: "中非签证", 5264 | pxHeight: 531, 5265 | pxWidth: 413, 5266 | dpi: 300, 5267 | mmHeight: 45, 5268 | mmWidth: 35, 5269 | }, 5270 | { 5271 | id: 571, 5272 | name: "佛得角签证", 5273 | pxHeight: 531, 5274 | pxWidth: 413, 5275 | dpi: 300, 5276 | mmHeight: 45, 5277 | mmWidth: 35, 5278 | }, 5279 | { 5280 | id: 572, 5281 | name: "几内亚比绍签证", 5282 | pxHeight: 531, 5283 | pxWidth: 413, 5284 | dpi: 300, 5285 | mmHeight: 45, 5286 | mmWidth: 35, 5287 | }, 5288 | { 5289 | id: 573, 5290 | name: "北苏丹签证", 5291 | pxHeight: 531, 5292 | pxWidth: 413, 5293 | dpi: 300, 5294 | mmHeight: 45, 5295 | mmWidth: 35, 5296 | }, 5297 | { 5298 | id: 574, 5299 | name: "埃塞俄比亚签证", 5300 | pxHeight: 531, 5301 | pxWidth: 413, 5302 | dpi: 300, 5303 | mmHeight: 45, 5304 | mmWidth: 35, 5305 | }, 5306 | { 5307 | id: 575, 5308 | name: "赤道几内亚签证", 5309 | pxHeight: 531, 5310 | pxWidth: 413, 5311 | dpi: 300, 5312 | mmHeight: 45, 5313 | mmWidth: 35, 5314 | }, 5315 | { 5316 | id: 576, 5317 | name: "安哥拉签证", 5318 | pxHeight: 531, 5319 | pxWidth: 413, 5320 | dpi: 300, 5321 | mmHeight: 45, 5322 | mmWidth: 35, 5323 | }, 5324 | { 5325 | id: 577, 5326 | name: "马其顿签证", 5327 | pxHeight: 531, 5328 | pxWidth: 413, 5329 | dpi: 300, 5330 | mmHeight: 45, 5331 | mmWidth: 35, 5332 | }, 5333 | { 5334 | id: 578, 5335 | name: "亚美尼亚签证", 5336 | pxHeight: 531, 5337 | pxWidth: 413, 5338 | dpi: 300, 5339 | mmHeight: 45, 5340 | mmWidth: 35, 5341 | }, 5342 | { 5343 | id: 579, 5344 | name: "摩尔多瓦签证", 5345 | pxHeight: 531, 5346 | pxWidth: 413, 5347 | dpi: 300, 5348 | mmHeight: 45, 5349 | mmWidth: 35, 5350 | }, 5351 | { 5352 | id: 580, 5353 | name: "白俄罗斯签证", 5354 | pxHeight: 531, 5355 | pxWidth: 413, 5356 | dpi: 300, 5357 | mmHeight: 45, 5358 | mmWidth: 35, 5359 | }, 5360 | { 5361 | id: 581, 5362 | name: "保加利亚签证", 5363 | pxHeight: 531, 5364 | pxWidth: 413, 5365 | dpi: 300, 5366 | mmHeight: 45, 5367 | mmWidth: 35, 5368 | }, 5369 | { 5370 | id: 582, 5371 | name: "阿塞拜疆签证", 5372 | pxHeight: 531, 5373 | pxWidth: 413, 5374 | dpi: 300, 5375 | mmHeight: 45, 5376 | mmWidth: 35, 5377 | }, 5378 | { 5379 | id: 583, 5380 | name: "塞浦路斯签证", 5381 | pxHeight: 531, 5382 | pxWidth: 413, 5383 | dpi: 300, 5384 | mmHeight: 45, 5385 | mmWidth: 35, 5386 | }, 5387 | { 5388 | id: 584, 5389 | name: "大溪地签证", 5390 | pxHeight: 531, 5391 | pxWidth: 413, 5392 | dpi: 300, 5393 | mmHeight: 45, 5394 | mmWidth: 35, 5395 | }, 5396 | { 5397 | id: 585, 5398 | name: "摩纳哥签证", 5399 | pxHeight: 531, 5400 | pxWidth: 413, 5401 | dpi: 300, 5402 | mmHeight: 45, 5403 | mmWidth: 35, 5404 | }, 5405 | { 5406 | id: 586, 5407 | name: "爱沙尼亚签证", 5408 | pxHeight: 531, 5409 | pxWidth: 413, 5410 | dpi: 300, 5411 | mmHeight: 45, 5412 | mmWidth: 35, 5413 | }, 5414 | { 5415 | id: 587, 5416 | name: "拉脱维亚签证", 5417 | pxHeight: 531, 5418 | pxWidth: 413, 5419 | dpi: 300, 5420 | mmHeight: 45, 5421 | mmWidth: 35, 5422 | }, 5423 | { 5424 | id: 588, 5425 | name: "斯洛文尼亚签证", 5426 | pxHeight: 531, 5427 | pxWidth: 413, 5428 | dpi: 300, 5429 | mmHeight: 45, 5430 | mmWidth: 35, 5431 | }, 5432 | { 5433 | id: 589, 5434 | name: "阿尔巴尼亚签证", 5435 | pxHeight: 531, 5436 | pxWidth: 413, 5437 | dpi: 300, 5438 | mmHeight: 45, 5439 | mmWidth: 35, 5440 | }, 5441 | { 5442 | id: 590, 5443 | name: "秘鲁签证", 5444 | pxHeight: 531, 5445 | pxWidth: 413, 5446 | dpi: 300, 5447 | mmHeight: 45, 5448 | mmWidth: 35, 5449 | }, 5450 | { 5451 | id: 591, 5452 | name: "哥伦比亚签证", 5453 | pxHeight: 531, 5454 | pxWidth: 413, 5455 | dpi: 300, 5456 | mmHeight: 45, 5457 | mmWidth: 35, 5458 | }, 5459 | { 5460 | id: 592, 5461 | name: "乌拉圭签证", 5462 | pxHeight: 531, 5463 | pxWidth: 413, 5464 | dpi: 300, 5465 | mmHeight: 45, 5466 | mmWidth: 35, 5467 | }, 5468 | { 5469 | id: 593, 5470 | name: "特立尼达和多巴哥签证", 5471 | pxHeight: 531, 5472 | pxWidth: 413, 5473 | dpi: 300, 5474 | mmHeight: 45, 5475 | mmWidth: 35, 5476 | }, 5477 | { 5478 | id: 594, 5479 | name: "哥斯达黎加签证", 5480 | pxHeight: 531, 5481 | pxWidth: 413, 5482 | dpi: 300, 5483 | mmHeight: 45, 5484 | mmWidth: 35, 5485 | }, 5486 | { 5487 | id: 595, 5488 | name: "圭亚那签证", 5489 | pxHeight: 531, 5490 | pxWidth: 413, 5491 | dpi: 300, 5492 | mmHeight: 45, 5493 | mmWidth: 35, 5494 | }, 5495 | { 5496 | id: 596, 5497 | name: "苏里南签证", 5498 | pxHeight: 531, 5499 | pxWidth: 413, 5500 | dpi: 300, 5501 | mmHeight: 45, 5502 | mmWidth: 35, 5503 | }, 5504 | { 5505 | id: 597, 5506 | name: "乌干达签证", 5507 | pxHeight: 531, 5508 | pxWidth: 413, 5509 | dpi: 300, 5510 | mmHeight: 45, 5511 | mmWidth: 35, 5512 | }, 5513 | { 5514 | id: 598, 5515 | name: "南苏丹签证", 5516 | pxHeight: 531, 5517 | pxWidth: 413, 5518 | dpi: 300, 5519 | mmHeight: 45, 5520 | mmWidth: 35, 5521 | }, 5522 | { 5523 | id: 599, 5524 | name: "法国签证(柏思睿)", 5525 | pxHeight: 531, 5526 | pxWidth: 413, 5527 | dpi: 300, 5528 | mmHeight: 45, 5529 | mmWidth: 35, 5530 | }, 5531 | { 5532 | id: 600, 5533 | name: "实名证件照", 5534 | pxHeight: 441, 5535 | pxWidth: 358, 5536 | dpi: 300, 5537 | mmHeight: 32, 5538 | mmWidth: 26, 5539 | }, 5540 | { 5541 | id: 601, 5542 | name: "贵州社保卡", 5543 | pxHeight: 441, 5544 | pxWidth: 358, 5545 | dpi: 300, 5546 | mmHeight: 28, 5547 | mmWidth: 23, 5548 | }, 5549 | { 5550 | id: 602, 5551 | name: "出入境证件", 5552 | pxHeight: 472, 5553 | pxWidth: 354, 5554 | dpi: 300, 5555 | mmHeight: 40, 5556 | mmWidth: 30, 5557 | }, 5558 | { 5559 | id: 603, 5560 | name: "杭州社保证", 5561 | pxHeight: 441, 5562 | pxWidth: 358, 5563 | dpi: 300, 5564 | mmHeight: 32, 5565 | mmWidth: 26, 5566 | }, 5567 | { 5568 | id: 604, 5569 | name: "贵州人和一寸正面免冠", 5570 | pxHeight: 441, 5571 | pxWidth: 358, 5572 | dpi: 300, 5573 | mmHeight: 32, 5574 | mmWidth: 26, 5575 | }, 5576 | { 5577 | id: 605, 5578 | name: "挪威签证(小二寸)北京", 5579 | pxHeight: 590, 5580 | pxWidth: 472, 5581 | dpi: 300, 5582 | mmHeight: 50, 5583 | mmWidth: 40, 5584 | }, 5585 | { 5586 | id: 606, 5587 | name: "以色列签证(二英寸)成都北京", 5588 | pxHeight: 590, 5589 | pxWidth: 590, 5590 | dpi: 300, 5591 | mmHeight: 50, 5592 | mmWidth: 50, 5593 | }, 5594 | { 5595 | id: 607, 5596 | name: "上海义务教育入学", 5597 | pxHeight: 354, 5598 | pxWidth: 272, 5599 | dpi: 350, 5600 | mmHeight: 27, 5601 | mmWidth: 20, 5602 | }, 5603 | { 5604 | id: 608, 5605 | name: "中小学生教师资格证", 5606 | pxHeight: 413, 5607 | pxWidth: 295, 5608 | dpi: 300, 5609 | mmHeight: 35, 5610 | mmWidth: 25, 5611 | }, 5612 | { 5613 | id: 609, 5614 | name: "个别奖学金申请", 5615 | pxHeight: 160, 5616 | pxWidth: 126, 5617 | dpi: 300, 5618 | mmHeight: 14, 5619 | mmWidth: 11, 5620 | }, 5621 | { 5622 | id: 610, 5623 | name: "微信头像", 5624 | pxHeight: 300, 5625 | pxWidth: 300, 5626 | dpi: 300, 5627 | mmHeight: 25, 5628 | mmWidth: 25, 5629 | }, 5630 | { 5631 | id: 611, 5632 | name: "中药调剂员", 5633 | pxHeight: 146, 5634 | pxWidth: 118, 5635 | dpi: 300, 5636 | mmHeight: 12, 5637 | mmWidth: 10, 5638 | }, 5639 | { 5640 | id: 612, 5641 | name: "微商注册", 5642 | pxHeight: 140, 5643 | pxWidth: 140, 5644 | dpi: 300, 5645 | mmHeight: 12, 5646 | mmWidth: 12, 5647 | }, 5648 | { 5649 | id: 613, 5650 | name: "湖南离婚证", 5651 | pxHeight: 531, 5652 | pxWidth: 413, 5653 | dpi: 300, 5654 | mmHeight: 45, 5655 | mmWidth: 35, 5656 | }, 5657 | { 5658 | id: 614, 5659 | name: "湖南流动人口婚育证", 5660 | pxHeight: 413, 5661 | pxWidth: 295, 5662 | dpi: 300, 5663 | mmHeight: 35, 5664 | mmWidth: 25, 5665 | }, 5666 | { 5667 | id: 615, 5668 | name: "湖南生育证", 5669 | pxHeight: 579, 5670 | pxWidth: 413, 5671 | dpi: 300, 5672 | mmHeight: 49, 5673 | mmWidth: 35, 5674 | }, 5675 | { 5676 | id: 616, 5677 | name: "湖南老年人优待证", 5678 | pxHeight: 413, 5679 | pxWidth: 295, 5680 | dpi: 300, 5681 | mmHeight: 35, 5682 | mmWidth: 25, 5683 | }, 5684 | { 5685 | id: 617, 5686 | name: "湖南二级建造师", 5687 | pxHeight: 579, 5688 | pxWidth: 413, 5689 | dpi: 300, 5690 | mmHeight: 49, 5691 | mmWidth: 35, 5692 | }, 5693 | { 5694 | id: 618, 5695 | name: "湖南一级建造师", 5696 | pxHeight: 413, 5697 | pxWidth: 295, 5698 | dpi: 300, 5699 | mmHeight: 35, 5700 | mmWidth: 25, 5701 | }, 5702 | { 5703 | id: 619, 5704 | name: "湖南导游证", 5705 | pxHeight: 413, 5706 | pxWidth: 295, 5707 | dpi: 300, 5708 | mmHeight: 35, 5709 | mmWidth: 25, 5710 | }, 5711 | { 5712 | id: 620, 5713 | name: "湖南教师资格证", 5714 | pxHeight: 472, 5715 | pxWidth: 354, 5716 | dpi: 300, 5717 | mmHeight: 40, 5718 | mmWidth: 30, 5719 | }, 5720 | { 5721 | id: 621, 5722 | name: "湖南研究生考试", 5723 | pxHeight: 567, 5724 | pxWidth: 425, 5725 | dpi: 300, 5726 | mmHeight: 48, 5727 | mmWidth: 36, 5728 | }, 5729 | { 5730 | id: 622, 5731 | name: "广东驾驶证", 5732 | pxHeight: 579, 5733 | pxWidth: 413, 5734 | dpi: 500, 5735 | mmHeight: 49, 5736 | mmWidth: 35, 5737 | }, 5738 | { 5739 | id: 623, 5740 | name: "内初版考试", 5741 | pxHeight: 186, 5742 | pxWidth: 140, 5743 | dpi: 300, 5744 | mmHeight: 15, 5745 | mmWidth: 12, 5746 | }, 5747 | { 5748 | id: 624, 5749 | name: "港澳通行证", 5750 | pxHeight: 567, 5751 | pxWidth: 390, 5752 | dpi: 300, 5753 | mmHeight: 48, 5754 | mmWidth: 33, 5755 | }, 5756 | { 5757 | id: 625, 5758 | name: "贵州省身份证", 5759 | pxHeight: 441, 5760 | pxWidth: 358, 5761 | dpi: 350, 5762 | mmHeight: 32, 5763 | mmWidth: 26, 5764 | }, 5765 | { 5766 | id: 626, 5767 | name: "贵阳市社保证", 5768 | pxHeight: 441, 5769 | pxWidth: 358, 5770 | dpi: 300, 5771 | mmHeight: 32, 5772 | mmWidth: 26, 5773 | }, 5774 | { 5775 | id: 627, 5776 | name: "广州市保安证", 5777 | pxHeight: 441, 5778 | pxWidth: 358, 5779 | dpi: 300, 5780 | mmHeight: 32, 5781 | mmWidth: 26, 5782 | }, 5783 | { 5784 | id: 628, 5785 | name: "深圳市保安证", 5786 | pxHeight: 441, 5787 | pxWidth: 358, 5788 | dpi: 300, 5789 | mmHeight: 32, 5790 | mmWidth: 26, 5791 | }, 5792 | { 5793 | id: 629, 5794 | name: "东莞市保安证", 5795 | pxHeight: 441, 5796 | pxWidth: 358, 5797 | dpi: 300, 5798 | mmHeight: 32, 5799 | mmWidth: 26, 5800 | }, 5801 | { 5802 | id: 630, 5803 | name: "珠海市保安证", 5804 | pxHeight: 441, 5805 | pxWidth: 358, 5806 | dpi: 300, 5807 | mmHeight: 32, 5808 | mmWidth: 26, 5809 | }, 5810 | { 5811 | id: 631, 5812 | name: "汕头市保安证", 5813 | pxHeight: 441, 5814 | pxWidth: 358, 5815 | dpi: 300, 5816 | mmHeight: 32, 5817 | mmWidth: 26, 5818 | }, 5819 | { 5820 | id: 632, 5821 | name: "佛山市保安证", 5822 | pxHeight: 441, 5823 | pxWidth: 358, 5824 | dpi: 300, 5825 | mmHeight: 32, 5826 | mmWidth: 26, 5827 | }, 5828 | { 5829 | id: 633, 5830 | name: "江门市保安证", 5831 | pxHeight: 441, 5832 | pxWidth: 358, 5833 | dpi: 300, 5834 | mmHeight: 32, 5835 | mmWidth: 26, 5836 | }, 5837 | { 5838 | id: 634, 5839 | name: "湛江市保安证", 5840 | pxHeight: 441, 5841 | pxWidth: 358, 5842 | dpi: 300, 5843 | mmHeight: 32, 5844 | mmWidth: 26, 5845 | }, 5846 | { 5847 | id: 635, 5848 | name: "茂名市保安证", 5849 | pxHeight: 441, 5850 | pxWidth: 358, 5851 | dpi: 300, 5852 | mmHeight: 32, 5853 | mmWidth: 26, 5854 | }, 5855 | { 5856 | id: 636, 5857 | name: "肇庆市保安证", 5858 | pxHeight: 441, 5859 | pxWidth: 358, 5860 | dpi: 300, 5861 | mmHeight: 32, 5862 | mmWidth: 26, 5863 | }, 5864 | { 5865 | id: 637, 5866 | name: "惠州市保安证", 5867 | pxHeight: 441, 5868 | pxWidth: 358, 5869 | dpi: 300, 5870 | mmHeight: 32, 5871 | mmWidth: 26, 5872 | }, 5873 | { 5874 | id: 638, 5875 | name: "梅州市保安证", 5876 | pxHeight: 441, 5877 | pxWidth: 358, 5878 | dpi: 300, 5879 | mmHeight: 32, 5880 | mmWidth: 26, 5881 | }, 5882 | { 5883 | id: 639, 5884 | name: "汕尾市保安证", 5885 | pxHeight: 441, 5886 | pxWidth: 358, 5887 | dpi: 300, 5888 | mmHeight: 32, 5889 | mmWidth: 26, 5890 | }, 5891 | { 5892 | id: 640, 5893 | name: "河源市保安证", 5894 | pxHeight: 441, 5895 | pxWidth: 358, 5896 | dpi: 300, 5897 | mmHeight: 32, 5898 | mmWidth: 26, 5899 | }, 5900 | { 5901 | id: 641, 5902 | name: "阳江市保安证", 5903 | pxHeight: 441, 5904 | pxWidth: 358, 5905 | dpi: 300, 5906 | mmHeight: 32, 5907 | mmWidth: 26, 5908 | }, 5909 | { 5910 | id: 642, 5911 | name: "清远市保安证", 5912 | pxHeight: 441, 5913 | pxWidth: 358, 5914 | dpi: 300, 5915 | mmHeight: 32, 5916 | mmWidth: 26, 5917 | }, 5918 | { 5919 | id: 643, 5920 | name: "韶关市保安证", 5921 | pxHeight: 441, 5922 | pxWidth: 358, 5923 | dpi: 300, 5924 | mmHeight: 32, 5925 | mmWidth: 26, 5926 | }, 5927 | { 5928 | id: 644, 5929 | name: "中山市保安证", 5930 | pxHeight: 441, 5931 | pxWidth: 358, 5932 | dpi: 300, 5933 | mmHeight: 32, 5934 | mmWidth: 26, 5935 | }, 5936 | { 5937 | id: 645, 5938 | name: "潮州市保安证", 5939 | pxHeight: 441, 5940 | pxWidth: 358, 5941 | dpi: 300, 5942 | mmHeight: 32, 5943 | mmWidth: 26, 5944 | }, 5945 | { 5946 | id: 646, 5947 | name: "揭阳市保安证", 5948 | pxHeight: 441, 5949 | pxWidth: 358, 5950 | dpi: 300, 5951 | mmHeight: 32, 5952 | mmWidth: 26, 5953 | }, 5954 | { 5955 | id: 647, 5956 | name: "云浮市保安证", 5957 | pxHeight: 441, 5958 | pxWidth: 358, 5959 | dpi: 300, 5960 | mmHeight: 32, 5961 | mmWidth: 26, 5962 | }, 5963 | { 5964 | id: 648, 5965 | name: "广州市社保证", 5966 | pxHeight: 441, 5967 | pxWidth: 358, 5968 | dpi: 300, 5969 | mmHeight: 32, 5970 | mmWidth: 26, 5971 | }, 5972 | { 5973 | id: 649, 5974 | name: "深圳市社保证", 5975 | pxHeight: 441, 5976 | pxWidth: 358, 5977 | dpi: 300, 5978 | mmHeight: 32, 5979 | mmWidth: 26, 5980 | }, 5981 | { 5982 | id: 650, 5983 | name: "东莞市社保证", 5984 | pxHeight: 441, 5985 | pxWidth: 358, 5986 | dpi: 300, 5987 | mmHeight: 32, 5988 | mmWidth: 26, 5989 | }, 5990 | { 5991 | id: 651, 5992 | name: "珠海市社保证", 5993 | pxHeight: 441, 5994 | pxWidth: 358, 5995 | dpi: 300, 5996 | mmHeight: 32, 5997 | mmWidth: 26, 5998 | }, 5999 | { 6000 | id: 652, 6001 | name: "汕头市社保证", 6002 | pxHeight: 441, 6003 | pxWidth: 358, 6004 | dpi: 300, 6005 | mmHeight: 32, 6006 | mmWidth: 26, 6007 | }, 6008 | { 6009 | id: 653, 6010 | name: "佛山市社保证", 6011 | pxHeight: 441, 6012 | pxWidth: 358, 6013 | dpi: 300, 6014 | mmHeight: 32, 6015 | mmWidth: 26, 6016 | }, 6017 | { 6018 | id: 654, 6019 | name: "江门市社保证", 6020 | pxHeight: 441, 6021 | pxWidth: 358, 6022 | dpi: 300, 6023 | mmHeight: 32, 6024 | mmWidth: 26, 6025 | }, 6026 | { 6027 | id: 655, 6028 | name: "湛江市社保证", 6029 | pxHeight: 441, 6030 | pxWidth: 358, 6031 | dpi: 300, 6032 | mmHeight: 32, 6033 | mmWidth: 26, 6034 | }, 6035 | { 6036 | id: 656, 6037 | name: "茂名市社保证", 6038 | pxHeight: 441, 6039 | pxWidth: 358, 6040 | dpi: 300, 6041 | mmHeight: 32, 6042 | mmWidth: 26, 6043 | }, 6044 | { 6045 | id: 657, 6046 | name: "肇庆市社保证", 6047 | pxHeight: 441, 6048 | pxWidth: 358, 6049 | dpi: 300, 6050 | mmHeight: 32, 6051 | mmWidth: 26, 6052 | }, 6053 | { 6054 | id: 658, 6055 | name: "惠州市社保证", 6056 | pxHeight: 441, 6057 | pxWidth: 358, 6058 | dpi: 300, 6059 | mmHeight: 32, 6060 | mmWidth: 26, 6061 | }, 6062 | { 6063 | id: 659, 6064 | name: "梅州市社保证", 6065 | pxHeight: 441, 6066 | pxWidth: 358, 6067 | dpi: 300, 6068 | mmHeight: 32, 6069 | mmWidth: 26, 6070 | }, 6071 | { 6072 | id: 660, 6073 | name: "汕尾市社保证", 6074 | pxHeight: 441, 6075 | pxWidth: 358, 6076 | dpi: 300, 6077 | mmHeight: 32, 6078 | mmWidth: 26, 6079 | }, 6080 | { 6081 | id: 661, 6082 | name: "河源市社保证", 6083 | pxHeight: 441, 6084 | pxWidth: 358, 6085 | dpi: 300, 6086 | mmHeight: 32, 6087 | mmWidth: 26, 6088 | }, 6089 | { 6090 | id: 662, 6091 | name: "阳江市社保证", 6092 | pxHeight: 441, 6093 | pxWidth: 358, 6094 | dpi: 300, 6095 | mmHeight: 32, 6096 | mmWidth: 26, 6097 | }, 6098 | { 6099 | id: 663, 6100 | name: "清远市社保证", 6101 | pxHeight: 441, 6102 | pxWidth: 358, 6103 | dpi: 300, 6104 | mmHeight: 32, 6105 | mmWidth: 26, 6106 | }, 6107 | { 6108 | id: 664, 6109 | name: "韶关市社保证", 6110 | pxHeight: 441, 6111 | pxWidth: 358, 6112 | dpi: 300, 6113 | mmHeight: 32, 6114 | mmWidth: 26, 6115 | }, 6116 | { 6117 | id: 665, 6118 | name: "中山市社保证", 6119 | pxHeight: 441, 6120 | pxWidth: 358, 6121 | dpi: 300, 6122 | mmHeight: 32, 6123 | mmWidth: 26, 6124 | }, 6125 | { 6126 | id: 666, 6127 | name: "潮州市社保证", 6128 | pxHeight: 441, 6129 | pxWidth: 358, 6130 | dpi: 300, 6131 | mmHeight: 32, 6132 | mmWidth: 26, 6133 | }, 6134 | { 6135 | id: 667, 6136 | name: "揭阳市社保证", 6137 | pxHeight: 441, 6138 | pxWidth: 358, 6139 | dpi: 300, 6140 | mmHeight: 32, 6141 | mmWidth: 26, 6142 | }, 6143 | { 6144 | id: 668, 6145 | name: "云浮市社保证", 6146 | pxHeight: 441, 6147 | pxWidth: 358, 6148 | dpi: 300, 6149 | mmHeight: 32, 6150 | mmWidth: 26, 6151 | }, 6152 | { 6153 | id: 669, 6154 | name: "广州市身份证", 6155 | pxHeight: 441, 6156 | pxWidth: 358, 6157 | dpi: 300, 6158 | mmHeight: 32, 6159 | mmWidth: 26, 6160 | }, 6161 | { 6162 | id: 670, 6163 | name: "深圳市身份证", 6164 | pxHeight: 441, 6165 | pxWidth: 358, 6166 | dpi: 300, 6167 | mmHeight: 32, 6168 | mmWidth: 26, 6169 | }, 6170 | { 6171 | id: 671, 6172 | name: "东莞市身份证", 6173 | pxHeight: 441, 6174 | pxWidth: 358, 6175 | dpi: 300, 6176 | mmHeight: 32, 6177 | mmWidth: 26, 6178 | }, 6179 | { 6180 | id: 672, 6181 | name: "珠海市身份证", 6182 | pxHeight: 441, 6183 | pxWidth: 358, 6184 | dpi: 300, 6185 | mmHeight: 32, 6186 | mmWidth: 26, 6187 | }, 6188 | { 6189 | id: 673, 6190 | name: "汕头市身份证", 6191 | pxHeight: 441, 6192 | pxWidth: 358, 6193 | dpi: 300, 6194 | mmHeight: 32, 6195 | mmWidth: 26, 6196 | }, 6197 | { 6198 | id: 674, 6199 | name: "佛山市身份证", 6200 | pxHeight: 441, 6201 | pxWidth: 358, 6202 | dpi: 300, 6203 | mmHeight: 32, 6204 | mmWidth: 26, 6205 | }, 6206 | { 6207 | id: 675, 6208 | name: "江门市身份证", 6209 | pxHeight: 441, 6210 | pxWidth: 358, 6211 | dpi: 300, 6212 | mmHeight: 32, 6213 | mmWidth: 26, 6214 | }, 6215 | { 6216 | id: 676, 6217 | name: "湛江市身份证", 6218 | pxHeight: 441, 6219 | pxWidth: 358, 6220 | dpi: 300, 6221 | mmHeight: 32, 6222 | mmWidth: 26, 6223 | }, 6224 | { 6225 | id: 677, 6226 | name: "茂名市身份证", 6227 | pxHeight: 441, 6228 | pxWidth: 358, 6229 | dpi: 300, 6230 | mmHeight: 32, 6231 | mmWidth: 26, 6232 | }, 6233 | { 6234 | id: 678, 6235 | name: "肇庆市身份证", 6236 | pxHeight: 441, 6237 | pxWidth: 358, 6238 | dpi: 300, 6239 | mmHeight: 32, 6240 | mmWidth: 26, 6241 | }, 6242 | { 6243 | id: 679, 6244 | name: "惠州市身份证", 6245 | pxHeight: 441, 6246 | pxWidth: 358, 6247 | dpi: 300, 6248 | mmHeight: 32, 6249 | mmWidth: 26, 6250 | }, 6251 | { 6252 | id: 680, 6253 | name: "梅州市身份证", 6254 | pxHeight: 441, 6255 | pxWidth: 358, 6256 | dpi: 300, 6257 | mmHeight: 32, 6258 | mmWidth: 26, 6259 | }, 6260 | { 6261 | id: 681, 6262 | name: "汕尾市身份证", 6263 | pxHeight: 441, 6264 | pxWidth: 358, 6265 | dpi: 300, 6266 | mmHeight: 32, 6267 | mmWidth: 26, 6268 | }, 6269 | { 6270 | id: 682, 6271 | name: "河源市身份证", 6272 | pxHeight: 441, 6273 | pxWidth: 358, 6274 | dpi: 300, 6275 | mmHeight: 32, 6276 | mmWidth: 26, 6277 | }, 6278 | { 6279 | id: 683, 6280 | name: "阳江市身份证", 6281 | pxHeight: 441, 6282 | pxWidth: 358, 6283 | dpi: 300, 6284 | mmHeight: 32, 6285 | mmWidth: 26, 6286 | }, 6287 | { 6288 | id: 684, 6289 | name: "清远市身份证", 6290 | pxHeight: 441, 6291 | pxWidth: 358, 6292 | dpi: 300, 6293 | mmHeight: 32, 6294 | mmWidth: 26, 6295 | }, 6296 | { 6297 | id: 685, 6298 | name: "韶关市身份证", 6299 | pxHeight: 441, 6300 | pxWidth: 358, 6301 | dpi: 300, 6302 | mmHeight: 32, 6303 | mmWidth: 26, 6304 | }, 6305 | { 6306 | id: 686, 6307 | name: "中山市身份证", 6308 | pxHeight: 441, 6309 | pxWidth: 358, 6310 | dpi: 300, 6311 | mmHeight: 32, 6312 | mmWidth: 26, 6313 | }, 6314 | { 6315 | id: 687, 6316 | name: "潮州市身份证", 6317 | pxHeight: 441, 6318 | pxWidth: 358, 6319 | dpi: 300, 6320 | mmHeight: 32, 6321 | mmWidth: 26, 6322 | }, 6323 | { 6324 | id: 688, 6325 | name: "揭阳市身份证", 6326 | pxHeight: 441, 6327 | pxWidth: 358, 6328 | dpi: 300, 6329 | mmHeight: 32, 6330 | mmWidth: 26, 6331 | }, 6332 | { 6333 | id: 689, 6334 | name: "云浮市身份证", 6335 | pxHeight: 441, 6336 | pxWidth: 358, 6337 | dpi: 300, 6338 | mmHeight: 32, 6339 | mmWidth: 26, 6340 | }, 6341 | { 6342 | id: 690, 6343 | name: "广州市居住证", 6344 | pxHeight: 441, 6345 | pxWidth: 358, 6346 | dpi: 300, 6347 | mmHeight: 32, 6348 | mmWidth: 26, 6349 | }, 6350 | { 6351 | id: 691, 6352 | name: "深圳市居住证", 6353 | pxHeight: 441, 6354 | pxWidth: 358, 6355 | dpi: 300, 6356 | mmHeight: 32, 6357 | mmWidth: 26, 6358 | }, 6359 | { 6360 | id: 692, 6361 | name: "东莞市居住证", 6362 | pxHeight: 441, 6363 | pxWidth: 358, 6364 | dpi: 300, 6365 | mmHeight: 32, 6366 | mmWidth: 26, 6367 | }, 6368 | { 6369 | id: 693, 6370 | name: "珠海市居住证", 6371 | pxHeight: 441, 6372 | pxWidth: 358, 6373 | dpi: 300, 6374 | mmHeight: 32, 6375 | mmWidth: 26, 6376 | }, 6377 | { 6378 | id: 694, 6379 | name: "汕头市居住证", 6380 | pxHeight: 441, 6381 | pxWidth: 358, 6382 | dpi: 300, 6383 | mmHeight: 32, 6384 | mmWidth: 26, 6385 | }, 6386 | { 6387 | id: 695, 6388 | name: "佛山市居住证", 6389 | pxHeight: 441, 6390 | pxWidth: 358, 6391 | dpi: 300, 6392 | mmHeight: 32, 6393 | mmWidth: 26, 6394 | }, 6395 | { 6396 | id: 696, 6397 | name: "江门市居住证", 6398 | pxHeight: 441, 6399 | pxWidth: 358, 6400 | dpi: 300, 6401 | mmHeight: 32, 6402 | mmWidth: 26, 6403 | }, 6404 | { 6405 | id: 697, 6406 | name: "湛江市居住证", 6407 | pxHeight: 441, 6408 | pxWidth: 358, 6409 | dpi: 300, 6410 | mmHeight: 32, 6411 | mmWidth: 26, 6412 | }, 6413 | { 6414 | id: 698, 6415 | name: "茂名市居住证", 6416 | pxHeight: 441, 6417 | pxWidth: 358, 6418 | dpi: 300, 6419 | mmHeight: 32, 6420 | mmWidth: 26, 6421 | }, 6422 | { 6423 | id: 699, 6424 | name: "肇庆市居住证", 6425 | pxHeight: 441, 6426 | pxWidth: 358, 6427 | dpi: 300, 6428 | mmHeight: 32, 6429 | mmWidth: 26, 6430 | }, 6431 | { 6432 | id: 700, 6433 | name: "惠州市居住证", 6434 | pxHeight: 441, 6435 | pxWidth: 358, 6436 | dpi: 300, 6437 | mmHeight: 32, 6438 | mmWidth: 26, 6439 | }, 6440 | { 6441 | id: 701, 6442 | name: "汕尾市居住证", 6443 | pxHeight: 441, 6444 | pxWidth: 358, 6445 | dpi: 300, 6446 | mmHeight: 32, 6447 | mmWidth: 26, 6448 | }, 6449 | { 6450 | id: 702, 6451 | name: "河源市居住证", 6452 | pxHeight: 441, 6453 | pxWidth: 358, 6454 | dpi: 300, 6455 | mmHeight: 32, 6456 | mmWidth: 26, 6457 | }, 6458 | { 6459 | id: 703, 6460 | name: "阳江市居住证", 6461 | pxHeight: 441, 6462 | pxWidth: 358, 6463 | dpi: 300, 6464 | mmHeight: 32, 6465 | mmWidth: 26, 6466 | }, 6467 | { 6468 | id: 704, 6469 | name: "清远市居住证", 6470 | pxHeight: 441, 6471 | pxWidth: 358, 6472 | dpi: 300, 6473 | mmHeight: 32, 6474 | mmWidth: 26, 6475 | }, 6476 | { 6477 | id: 705, 6478 | name: "韶关市居住证", 6479 | pxHeight: 441, 6480 | pxWidth: 358, 6481 | dpi: 300, 6482 | mmHeight: 32, 6483 | mmWidth: 26, 6484 | }, 6485 | { 6486 | id: 706, 6487 | name: "中山市居住证", 6488 | pxHeight: 441, 6489 | pxWidth: 358, 6490 | dpi: 300, 6491 | mmHeight: 32, 6492 | mmWidth: 26, 6493 | }, 6494 | { 6495 | id: 707, 6496 | name: "潮州市居住证", 6497 | pxHeight: 441, 6498 | pxWidth: 358, 6499 | dpi: 300, 6500 | mmHeight: 32, 6501 | mmWidth: 26, 6502 | }, 6503 | { 6504 | id: 708, 6505 | name: "揭阳市居住证", 6506 | pxHeight: 441, 6507 | pxWidth: 358, 6508 | dpi: 300, 6509 | mmHeight: 32, 6510 | mmWidth: 26, 6511 | }, 6512 | { 6513 | id: 709, 6514 | name: "云浮市居住证", 6515 | pxHeight: 441, 6516 | pxWidth: 358, 6517 | dpi: 300, 6518 | mmHeight: 32, 6519 | mmWidth: 26, 6520 | }, 6521 | { 6522 | id: 710, 6523 | name: "梅州市居住证", 6524 | pxHeight: 441, 6525 | pxWidth: 358, 6526 | dpi: 300, 6527 | mmHeight: 32, 6528 | mmWidth: 26, 6529 | }, 6530 | { 6531 | id: 711, 6532 | name: "广东保安证", 6533 | pxHeight: 441, 6534 | pxWidth: 358, 6535 | dpi: 300, 6536 | mmHeight: 32, 6537 | mmWidth: 26, 6538 | }, 6539 | { 6540 | id: 712, 6541 | name: "广东社保证", 6542 | pxHeight: 441, 6543 | pxWidth: 358, 6544 | dpi: 300, 6545 | mmHeight: 32, 6546 | mmWidth: 26, 6547 | }, 6548 | { 6549 | id: 713, 6550 | name: "广东身份证", 6551 | pxHeight: 441, 6552 | pxWidth: 358, 6553 | dpi: 300, 6554 | mmHeight: 32, 6555 | mmWidth: 26, 6556 | }, 6557 | { 6558 | id: 714, 6559 | name: "广东居住证", 6560 | pxHeight: 441, 6561 | pxWidth: 358, 6562 | dpi: 300, 6563 | mmHeight: 32, 6564 | mmWidth: 26, 6565 | }, 6566 | { 6567 | id: 715, 6568 | name: "广州市驾驶证", 6569 | pxHeight: 579, 6570 | pxWidth: 413, 6571 | dpi: 500, 6572 | mmHeight: 49, 6573 | mmWidth: 35, 6574 | }, 6575 | { 6576 | id: 716, 6577 | name: "深圳市驾驶证", 6578 | pxHeight: 579, 6579 | pxWidth: 413, 6580 | dpi: 500, 6581 | mmHeight: 49, 6582 | mmWidth: 35, 6583 | }, 6584 | { 6585 | id: 717, 6586 | name: "东莞市驾驶证", 6587 | pxHeight: 579, 6588 | pxWidth: 413, 6589 | dpi: 500, 6590 | mmHeight: 49, 6591 | mmWidth: 35, 6592 | }, 6593 | { 6594 | id: 718, 6595 | name: "珠海市驾驶证", 6596 | pxHeight: 579, 6597 | pxWidth: 413, 6598 | dpi: 500, 6599 | mmHeight: 49, 6600 | mmWidth: 35, 6601 | }, 6602 | { 6603 | id: 719, 6604 | name: "汕头市驾驶证", 6605 | pxHeight: 579, 6606 | pxWidth: 413, 6607 | dpi: 500, 6608 | mmHeight: 49, 6609 | mmWidth: 35, 6610 | }, 6611 | { 6612 | id: 720, 6613 | name: "佛山市驾驶证", 6614 | pxHeight: 579, 6615 | pxWidth: 413, 6616 | dpi: 500, 6617 | mmHeight: 49, 6618 | mmWidth: 35, 6619 | }, 6620 | { 6621 | id: 721, 6622 | name: "江门市驾驶证", 6623 | pxHeight: 579, 6624 | pxWidth: 413, 6625 | dpi: 500, 6626 | mmHeight: 49, 6627 | mmWidth: 35, 6628 | }, 6629 | { 6630 | id: 722, 6631 | name: "湛江市驾驶证", 6632 | pxHeight: 579, 6633 | pxWidth: 413, 6634 | dpi: 500, 6635 | mmHeight: 49, 6636 | mmWidth: 35, 6637 | }, 6638 | { 6639 | id: 723, 6640 | name: "茂名市驾驶证", 6641 | pxHeight: 579, 6642 | pxWidth: 413, 6643 | dpi: 500, 6644 | mmHeight: 49, 6645 | mmWidth: 35, 6646 | }, 6647 | { 6648 | id: 724, 6649 | name: "肇庆市驾驶证", 6650 | pxHeight: 579, 6651 | pxWidth: 413, 6652 | dpi: 500, 6653 | mmHeight: 49, 6654 | mmWidth: 35, 6655 | }, 6656 | { 6657 | id: 725, 6658 | name: "惠州市驾驶证", 6659 | pxHeight: 579, 6660 | pxWidth: 413, 6661 | dpi: 500, 6662 | mmHeight: 49, 6663 | mmWidth: 35, 6664 | }, 6665 | { 6666 | id: 726, 6667 | name: "梅州市驾驶证", 6668 | pxHeight: 579, 6669 | pxWidth: 413, 6670 | dpi: 500, 6671 | mmHeight: 49, 6672 | mmWidth: 35, 6673 | }, 6674 | { 6675 | id: 727, 6676 | name: "汕尾市驾驶证", 6677 | pxHeight: 579, 6678 | pxWidth: 413, 6679 | dpi: 500, 6680 | mmHeight: 49, 6681 | mmWidth: 35, 6682 | }, 6683 | { 6684 | id: 728, 6685 | name: "河源市驾驶证", 6686 | pxHeight: 579, 6687 | pxWidth: 413, 6688 | dpi: 500, 6689 | mmHeight: 49, 6690 | mmWidth: 35, 6691 | }, 6692 | { 6693 | id: 729, 6694 | name: "阳江市驾驶证", 6695 | pxHeight: 579, 6696 | pxWidth: 413, 6697 | dpi: 500, 6698 | mmHeight: 49, 6699 | mmWidth: 35, 6700 | }, 6701 | { 6702 | id: 730, 6703 | name: "清远市驾驶证", 6704 | pxHeight: 579, 6705 | pxWidth: 413, 6706 | dpi: 500, 6707 | mmHeight: 49, 6708 | mmWidth: 35, 6709 | }, 6710 | { 6711 | id: 731, 6712 | name: "韶关市驾驶证", 6713 | pxHeight: 579, 6714 | pxWidth: 413, 6715 | dpi: 500, 6716 | mmHeight: 49, 6717 | mmWidth: 35, 6718 | }, 6719 | { 6720 | id: 732, 6721 | name: "中山市驾驶证", 6722 | pxHeight: 579, 6723 | pxWidth: 413, 6724 | dpi: 500, 6725 | mmHeight: 49, 6726 | mmWidth: 35, 6727 | }, 6728 | { 6729 | id: 733, 6730 | name: "潮州市驾驶证", 6731 | pxHeight: 579, 6732 | pxWidth: 413, 6733 | dpi: 500, 6734 | mmHeight: 49, 6735 | mmWidth: 35, 6736 | }, 6737 | { 6738 | id: 734, 6739 | name: "揭阳市驾驶证", 6740 | pxHeight: 579, 6741 | pxWidth: 413, 6742 | dpi: 500, 6743 | mmHeight: 49, 6744 | mmWidth: 35, 6745 | }, 6746 | { 6747 | id: 735, 6748 | name: "云浮市驾驶证", 6749 | pxHeight: 579, 6750 | pxWidth: 413, 6751 | dpi: 500, 6752 | mmHeight: 49, 6753 | mmWidth: 35, 6754 | }, 6755 | { 6756 | id: 736, 6757 | name: "贵州驾驶证", 6758 | pxHeight: 579, 6759 | pxWidth: 413, 6760 | dpi: 500, 6761 | mmHeight: 49, 6762 | mmWidth: 35, 6763 | }, 6764 | { 6765 | id: 737, 6766 | name: "贵州小学生学籍照", 6767 | pxHeight: 441, 6768 | pxWidth: 358, 6769 | dpi: 300, 6770 | mmHeight: 32, 6771 | mmWidth: 26, 6772 | }, 6773 | { 6774 | id: 738, 6775 | name: "湖北行政执法证", 6776 | pxHeight: 460, 6777 | pxWidth: 400, 6778 | dpi: 300, 6779 | mmHeight: 39, 6780 | mmWidth: 34, 6781 | }, 6782 | { 6783 | id: 739, 6784 | name: "退役军人优待证", 6785 | pxHeight: 440, 6786 | pxWidth: 352, 6787 | dpi: 300, 6788 | mmHeight: 37, 6789 | mmWidth: 30, 6790 | }, 6791 | { 6792 | id: 740, 6793 | name: "12123电子驾驶证、驾照图像采集", 6794 | pxHeight: 756, 6795 | pxWidth: 520, 6796 | dpi: 300, 6797 | mmHeight: 64, 6798 | mmWidth: 44, 6799 | }, 6800 | { 6801 | id: 741, 6802 | name: "残疾人证", 6803 | pxHeight: 441, 6804 | pxWidth: 358, 6805 | dpi: 350, 6806 | mmHeight: 32, 6807 | mmWidth: 26, 6808 | }, 6809 | { 6810 | id: 742, 6811 | name: "志愿者证", 6812 | pxHeight: 440, 6813 | pxWidth: 358, 6814 | dpi: 350, 6815 | mmHeight: 32, 6816 | mmWidth: 26, 6817 | }, 6818 | { 6819 | id: 743, 6820 | name: "成都驾驶证", 6821 | pxHeight: 378, 6822 | pxWidth: 260, 6823 | dpi: 300, 6824 | mmHeight: 32, 6825 | mmWidth: 22, 6826 | }, 6827 | { 6828 | id: 744, 6829 | name: "深圳市会计人员相片采集", 6830 | pxHeight: 441, 6831 | pxWidth: 358, 6832 | dpi: 300, 6833 | mmHeight: 32, 6834 | mmWidth: 26, 6835 | }, 6836 | { 6837 | id: 745, 6838 | name: "深圳市网约车驾驶员数码照片", 6839 | pxHeight: 661, 6840 | pxWidth: 455, 6841 | dpi: 350, 6842 | mmHeight: 48, 6843 | mmWidth: 33, 6844 | }, 6845 | { 6846 | id: 746, 6847 | name: "行政执法证", 6848 | pxHeight: 537, 6849 | pxWidth: 469, 6850 | dpi: 350, 6851 | mmHeight: 39, 6852 | mmWidth: 34, 6853 | }, 6854 | { 6855 | id: 747, 6856 | name: "职业形象照一寸", 6857 | pxHeight: 413, 6858 | pxWidth: 295, 6859 | dpi: 300, 6860 | mmHeight: 35, 6861 | mmWidth: 25, 6862 | }, 6863 | { 6864 | id: 748, 6865 | name: "职业形象照二寸", 6866 | pxHeight: 579, 6867 | pxWidth: 413, 6868 | dpi: 300, 6869 | mmHeight: 49, 6870 | mmWidth: 35, 6871 | }, 6872 | { 6873 | id: 749, 6874 | name: "职业形象照三寸", 6875 | pxHeight: 991, 6876 | pxWidth: 649, 6877 | dpi: 300, 6878 | mmHeight: 84, 6879 | mmWidth: 55, 6880 | }, 6881 | { 6882 | id: 750, 6883 | name: "职业形象照五寸", 6884 | pxHeight: 1499, 6885 | pxWidth: 1050, 6886 | dpi: 300, 6887 | mmHeight: 127, 6888 | mmWidth: 89, 6889 | }, 6890 | { 6891 | id: 751, 6892 | name: "职业形象照六寸", 6893 | pxHeight: 1795, 6894 | pxWidth: 1205, 6895 | dpi: 300, 6896 | mmHeight: 152, 6897 | mmWidth: 102, 6898 | }, 6899 | { 6900 | id: 752, 6901 | name: "湖南成人高考报名", 6902 | pxHeight: 640, 6903 | pxWidth: 480, 6904 | dpi: 300, 6905 | mmHeight: 54, 6906 | mmWidth: 41, 6907 | }, 6908 | { 6909 | id: 753, 6910 | name: "湖南成人高考报名(240×320)", 6911 | pxHeight: 320, 6912 | pxWidth: 240, 6913 | dpi: 300, 6914 | mmHeight: 27, 6915 | mmWidth: 20, 6916 | }, 6917 | { 6918 | id: 754, 6919 | name: "海南身份证", 6920 | pxHeight: 441, 6921 | pxWidth: 358, 6922 | dpi: 300, 6923 | mmHeight: 32, 6924 | mmWidth: 26, 6925 | }, 6926 | { 6927 | id: 755, 6928 | name: "安徽身份证", 6929 | pxHeight: 441, 6930 | pxWidth: 358, 6931 | dpi: 300, 6932 | mmHeight: 32, 6933 | mmWidth: 26, 6934 | }, 6935 | { 6936 | id: 756, 6937 | name: "深圳港澳通行证", 6938 | pxHeight: 567, 6939 | pxWidth: 390, 6940 | dpi: 300, 6941 | mmHeight: 48, 6942 | mmWidth: 33, 6943 | }, 6944 | { 6945 | id: 757, 6946 | name: "湖南教师资格证", 6947 | pxHeight: 437, 6948 | pxWidth: 307, 6949 | dpi: 300, 6950 | mmHeight: 37, 6951 | mmWidth: 26, 6952 | }, 6953 | { 6954 | id: 758, 6955 | name: "海员证", 6956 | pxHeight: 472, 6957 | pxWidth: 354, 6958 | dpi: 300, 6959 | mmHeight: 40, 6960 | mmWidth: 30, 6961 | }, 6962 | ]; 6963 | --------------------------------------------------------------------------------