转换公式:毫米转英寸,英寸乘以DPI(每英寸点数)
1英寸 = 2.54 厘米 = 25.4 毫米
例子(600dpi):mm: 210x297 = px: 4961(210/25.4*600)x7016(297/25.4*600)
 

A4 Paper Size in Pixels Because the size of paper varies depending on the Pixels Per Inch of the setting in Photoshop, there is no defined size for A4 paper in Photoshop or MS Paint. Instead, The table below displays the dimensions of A4 paper in pixels at different Pixels Per Inch (PPI or Dots Per Inch). Each pixel count is in 8 bits of colour. You can change the color mode in Photoshop when creating a new project.
 
Paper Size Type Paper Width Paper Height
A4 Dimensions @ 72 DPI 595 Pixels 842 Pixels
A4 Dimensions @ 200 DPI 1654 Pixels 2339 Pixels
A4 Dimensions @ 300 DPI 2480 Pixels 3508 Pixels
A4 Dimensions @ 400 DPI 3307 Pixels 4677 Pixels
A4 Dimensions @ 600 DPI 4961 Pixels 7016 Pixels
A4 Dimensions @ 1200 DPI 9921 Pixels 14031 Pixels
Letter Size @ 72 DPI 612 Pixels 792 Pixels
Letter Size @ 200 DPI 1700 Pixels 2200 Pixels
Letter Size @ 300 DPI 2550 Pixels 3300 Pixels
Letter Size @ 400 DPI 3400 Pixels 4400 Pixels
Letter Size @ 600 DPI 5100 Pixels 6600 Pixels
Letter Size @ 1200 DPI 10200 Pixels 13200 Pixels
Letter size: Canada and the United States of America.A4 size in mm: United Kingdom, Australia, Germany, Singapore, India, United Arab Emirates, Philippines, New Zealand and nearly ever other country in the world.
MM Inches CM Pixels
 
 
 
 
What are Pixels?
 
Pixels are not used for measuring size. One pixel is a small dot of illumination on a display screen. Multiple pixel dots compose an image. This is why Dots Per Inch or Pixels Per Inch is used as a standard. Pixels are most standardised as 8bit in colour in 24bit displays. Each pixel can achieve over 16 million colours in this case.
 
How many Pixels of Bleed for Photoshop?Adding a bleed to Photoshop is as easy as increasing how many pixels surround the space you want to work with. The area surrounding your workspace in Photoshop should always have a bleed of at least 3 millimeters to adjust for printing errors with it goes on paper. But we, and many others, recommend 5 millimeters to adjust for a wider variety of printers.
 

扫描仪扫描文件处理-A4分辨率的更多相关文章

  1. 扫描仪扫描文件处理-ABBYY对扫描版PDF文字加黑加粗、去除背景漂白

    1. 设置ABBYY自动歪斜矫正: 2. 设置导出PDF参数: 3. PDF文字加黑加粗.去除背景漂白步骤:3.1 ABBYY - 打开扫描版PDF文档3.2 ABBYY - 编辑图像3.3 等级 - ...

  2. 扫描仪扫描文件处理-Photoshop批处理无响应问题

    问题描述:Photoshop批处理时候卡死.卡住.无响应问题(出现在处理60M及以上TIFF文件的时候) 解决办法: 调整系统虚拟内存见<扫描-Photoshop批处理内存不足问题解决> ...

  3. 扫描仪扫描文件处理-图像扫描加工到生成PDF步骤简述[JAVA版]

    另参见:https://www.cnblogs.com/whycnblogs/p/8034276.html 详细见:https://github.com/barrer/scan-helper 用途: ...

  4. 扫描仪扫描文件处理-Photoshop批处理弹出色阶设置框解决

    为什么我录制动作明明设置的有色阶,最后批处理的时候仍然弹出了色阶设置框?   出现问题原因可能是你在录入设置色阶动作的时候,是彩色图片或者灰阶中的一种,而批处理的时候遇到了另外一种色彩模式.所以动作中 ...

  5. 扫描仪扫描文件处理-Photoshop批处理内存不足问题解决

    一次批处理上千张扫描图片,如果提示内存不足,这时候需要修改操作系统虚拟内存.最小值:512(512M),最大值建议51200(50G). 同时设置让Photoshop使用100%. 

  6. 扫描仪扫描文件处理-Python批量处理

    多进程处理扫描出来的图片,参见: https://github.com/barrer/scan-helper bug问题反馈github提Issues

  7. 扫描仪扫描文件处理-ABBYY生成小体积黑白二值化PDF

    禁止所有预处理选项: PDF保存选项: 保存提示(选择"保存为仅图像PDF"):

  8. 扫描仪扫描文件处理-imagemagick常用参数

    -resize 宽x高(缩放,不变形) -extent 宽x高(放大,不变形)之前设置:-gravity center(重心居中) -brightness-contrast 亮度x对比度(设置亮度对比 ...

  9. 扫描仪扫描文件处理-ABBYY自动矫正图像歪斜

    修改界面语言: 设置为不识别图片文字(因为我们只需要把图片歪斜校正): 保存无损彩色格式:

随机推荐

  1. C#托管堆和非托管堆

  2. JAVA热部署,通过agent进行代码增量热替换!!!

    在前说明:好久没有更新博客了,这一年在公司做了好多事情,包括代码分析和热部署替换等黑科技,一直没有时间来进行落地写出一些一文章来,甚是可惜,趁着中午睡觉的时间补一篇介绍性的文章吧. 首先热部署的场景是 ...

  3. [LeetCode]Mysql小本本

    常用方法 累加型题目,可以考虑使用笛卡尔积进行自表连接,连接后的表进行where条件进行筛选.group by分组操作. union:需要把两列作一列可以用union,union的两张表查询的字段不一 ...

  4. [剑指Offer]33-根据后序序列判断是否能组成BST

    题目 如题. 题解 从序列第一个大于根节点的值往后都是右子树,判断右子树是否都大于根节点. 然后递归判断左右子树是否是BST 代码 class TreeNode { int val = 0; Tree ...

  5. spring boot 源码之SpringApplicationRunListeners

    SpringApplicationRunListeners SpringApplicationRunListener的集合,内部存储了SpringApplicationRunListener的集合,提 ...

  6. element-ui upload上传文件并携带参数 使用formData对象

    需求:上传文件的时候,需要携带其他的参数 问题:使用upload上传文件时,必须使用formData对象,而其他的参数通过data获取的到的,formData和data是不能同时传输的 解决:获取到的 ...

  7. 【JAVA】HashMap源码阅读

    目录 1.关键的几个static参数 2.内部类定义Node节点 3.成员变量 4.静态方法 5.HashMap的四个构造方法 6.put方法 7.扩容resize方法 8.get方法 9.remov ...

  8. 机器学习-线性规划(LP)

    线性规划问题 首先引入如下的问题: 假设食物的各种营养成分.价格如下表: Food Energy(能量) Protein(蛋白质) Calcium(钙) Price Oatmeal(燕麦) 110 4 ...

  9. Processing 网格纹理制作(棋盘格)

    写在前面的话 很久没有写博文了.最近在整理Processing有关文档,看到之前做的一些例子,想着分享在互联网上,当然和以前一样,目前也仅为了给初学者有个学习参考,笔者能力有限.废话不多说,干就完事了 ...

  10. 新手学习Python第三方包库pip安装失败总结

    这篇文章纯原创,是之前自己学习使用pyhton时遇到的问题,故在此记录一下. 问题与需求:用python下载第三方库或包的时候出错怎么办? 方法有一下三种,可以解决大部分的问题. 1.在cmd命令控制 ...