[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
回复 14# Batcher


    老师能不能把图片浓度提升和对比度增加10%~!

TOP

回复 16# luckcsz


你可以先看一下详细帮助手册:
  1. nconvert -help > nchelp.txt
复制代码
我不是专业搞图像处理的,不知道你说的浓度是哪个参数。
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 17# Batcher


    好的,谢谢~!

TOP

回复 17# Batcher

老师请问下批处理命令有没有校正倾斜图片的命令~!

TOP

用photoshop批处理就行了,不用这么复杂~

TOP

回复 20# rockjean


    几万张图片,那个好像只能一张一张来吧~!

TOP

处理后感觉是拉伸效果而不是缩放效果

TOP

Lightroom 了解一下。

TOP

poweeshell 按比例处理的
  1. Function Script:Imagefile
  2. {
  3. param([String]$ph=$env:TEMP,[Int]$lity=90,[String]$str = "A2 文件`n")
  4.     Begin {
  5.         $ph +=  "\new_files\"
  6.         $ph
  7.         if (![System.IO.Directory]::Exists($ph)) {$null = New-Item $ph  -type directory}
  8.         Add-Type -AssemblyName "System.Drawing"
  9.         $ima = [System.Drawing.Imaging.Encoder]::Quality
  10.         $enc = New-Object System.Drawing.Imaging.EncoderParameters(1)
  11.         $enc.Param[0] = New-Object System.Drawing.Imaging.EncoderParameter($ima, $lity)
  12.         $Code = [System.Drawing.Imaging.ImageCodecInfo]::GetImageEncoders() | Where {$_.MimeType -eq 'image/jpeg'}
  13.     }
  14.     process
  15.     {
  16.      $saveFile = Join-Path -Path $ph -ChildPath ($_.BaseName + '_' + $(Get-Date -Format "yyyyMMddHHmmssfff") + $_.Extension)
  17.      $img = [System.Drawing.Image]::FromFile($_)
  18.      $width = $img.Width
  19.      $height = $img.Height
  20.      if ($width -gt 3900 -or $height -gt 3900) {
  21.         if ($width -gt 5300 -or $height -gt 5300) {
  22.             $str =  $str +  "$_" +  "`n"
  23.         }else {$m = 4960 / [Math]::Max($width,$height)}
  24.      }else {$m = 3507 / [Math]::Max($width,$height)}
  25.      $w =[int] ($width * $m)
  26.      $h =[int] ($height * $m)
  27.      $size = New-Object System.Drawing.Bitmap($w, $h)
  28.      $tmp = [System.Drawing.Graphics]::FromImage($size)
  29.      $tmp.InterpolationMode = [System.Drawing.Drawing2D.InterpolationMode]::HighQualityBicubic
  30.      $tmp.Clear([System.Drawing.Color]::White)
  31.      $tmp.DrawImage($img, 0, 0, $w, $h)
  32.      $size.Save($saveFile, $Code, $($enc))
  33.      $img.Dispose()
  34.      $size.Dispose()
  35.      $tmp.Dispose()
  36.     }
  37.     end
  38.     {
  39.        $str
  40.        start "$ph"
  41.     }
  42. }
  43. $ph = $pwd.Path
  44. Get-ChildItem .\ *.jpg|?{!$_.PsIsContainer}| Imagefile -ph $ph -lity 60 -str "A2"
复制代码

TOP

本帖最后由 luckcsz 于 2019-9-9 18:23 编辑

回复 24# terse


    老师您好,请问下这个也是保存BAT直接运行吗?
图片格式有两种格式: jpg和tif都可运行吗?

TOP

回复 25# luckcsz
cmd 里也可以运行
还是保存为ps1文件 右键运行吧
至于不同后缀的图像文件应该可以处理 先试一下呢
对了 你什么系统

TOP

win7 64位系统~!
老师保存bat格式点击闪退,SP1格式后缀是什么,还请老师不吝赐教~谢谢!
这个要放在哪个文件夹中运行,图片需要放哪个文件夹中它才会批量处理~?“

TOP

回复 27# luckcsz


不是 sp1 而是 ps1

怎样执行 PowerShell 代码?
http://bbs.bathome.net/thread-31071-1-1.html
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

就是不知道图片要放在哪里给它处理

TOP

回复 29# luckcsz
可以放在图片目录运行
几种后缀可以把代码的44行开始换为下面的运行
当然 你也可以修改 ”$pwd.Path“ 这个是当前目录 你换为图片目录试呢
”$li = 60“ 这里的数值也可以修改
后面不加 -lity $li 参数的话 默认是90
运行前 请备份
  1. $ph = $pwd.Path
  2. $extlist = @('.tif','.jpg')
  3. $li = 60
  4. Get-ChildItem -path $ph |? { $extlist -eq $_.Extension }| ?{!$_.PsIsContainer} | Imagefile -ph $ph -lity $li -str "A2"
复制代码

TOP

返回列表