如何把照片分割成九张
发布网友
发布时间:2022-02-22 07:11
我来回答
共3个回答
热心网友
时间:2022-02-22 08:40
你好,可以使用ps软件进行分割。就可以分割为9张。
热心网友
时间:2022-02-22 09:58
用美图九宫格可以吧
热心网友
时间:2022-02-22 11:33
以下代码复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的图片文件放一起双击运行
/*&cls
@echo off
rem 将一个指定jpg图片文件按照九宫格方式分割成多个小图片
set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%@% %z%
cd /d "%~dp0"
set "file=xxx.jpg"
set "exefile=xconvert.exe"
set "u=wIXUNLNwhmpySk1ncOWPbY1#s#moc+udiab+nap##:sptth"
set "u=%u:#=/%"
set "u=%u:+=.%"
>"%tmp%\j.j" echo;WSH.echo(WSH.Arguments(0).split('').reverse().join(''));
if not exist "%exefile%" (
echo;"%exefile%" not found
for /f "delims=" %%a in ('cscript -nologo -e:jscript "%tmp%\j.j" "%u%"') do (
echo;download from: %%a 提取码:ncti, then unpack the zipfile and put *.jpg/*.exe/*.bat together
)
pause&exit
)
if not exist "%file%" (echo;"%file%" not found&pause&exit)
for /f "tokens=1-3 delims=|" %%a in ('cscript -nologo -e:jscript "%~f0" "%file%"') do (
echo;"%%a"
if not exist "%%~na" md "%%~na"
"%exefile%" -crop %%c "%%a" "%%~na\%%~nxa"
)
pause
exit
*/
var fso=new ActiveXObject('Scripting.FileSystemObject');
var img=new ActiveXObject('WIA.ImageFile');
var f=WSH.Arguments(0),file=fso.GetFile(f);
img.LoadFile(file.Path);
var w=Math.ceil(img.Width/3);
var h=Math.ceil(img.Height/3);
WSH.echo(f+'|'+img.Width+'x'+img.Height+'|'+w+'x'+h);