網(wǎng)站首頁 編程語言 正文
‘’’
Author: zzx
Date: 2022-07-30 15:52:15
LastEditors: zdl
LastEditTime: 2022-07-30 16:03:20
FilePath: \matlabcodef:\BaiduNetdiskWorkspace\markdown寫雜談\python導(dǎo)出drawio文件
Description:
Copyright ? 2022 by zdl, All Rights Reserved.
‘’’
vscode一體化導(dǎo)出drawio
需要的工具:vscode, draw.io擴(kuò)展,draw.io桌面版 、python
提示:這個(gè)方法并沒有簡化流程,只是能夠減少打開窗口,在vscode中直接查看原始文件,導(dǎo)出文件,效率并沒有顯著提升。
啰嗦的部分:
drawio流程圖繪制軟件比visio好用。而且vscode有插件。vs插件的優(yōu)點(diǎn)在于支持mermaid流程圖,缺點(diǎn)非常明顯不支持指定分辨率圖像導(dǎo)出。
網(wǎng)上檢索發(fā)現(xiàn)drawio的桌面版可以在命令行操作。在drawio安裝目錄下運(yùn)行cmd,然后通過draw.io -help 命令可以查看全部命令。
查看命令發(fā)現(xiàn)沒有針對性的dpi設(shè)置。我就想到給圖片輸入寬度和高度的方式。根據(jù)我猜測這個(gè)寬度和高度應(yīng)該對應(yīng)的就是像素點(diǎn)數(shù)量,所以我就按照實(shí)際尺寸,以及dpi的定義
寫了一個(gè)命令, 發(fā)現(xiàn)可用。但是每次都要計(jì)算寬度、高度、調(diào)用cmd命令窗口,太麻煩。功能強(qiáng)大的python加上插件齊全的vscode能不能全部實(shí)現(xiàn)呢?
折騰了幾個(gè)小時(shí),終于搞定了。
進(jìn)入正題:
1、安裝draw.io插件,和桌面版,記住桌面版的路徑
2、繪制好的圖片有一個(gè)實(shí)際的尺寸,記住實(shí)際尺寸的寬和高
3、python轉(zhuǎn)換 寬度
dpivalue=600#dpi
realwidth=89.4#mm
realheight=81.2#mm
width=round(dpivalue*realwidth/25.4)
height=round(dpivalue*realheight/25.4)
4、 構(gòu)造命令行,不嫌麻煩可以自己寫完整目錄
inputfilepath=r'F:\BaiduNetdiskWorkspace\00typora\大論文\drawio\算法流程圖.drawio'
outputfilepath=r'F:\BaiduNetdiskWorkspace\00typora\大論文\drawio\test.png'
starttext=r'draw.io -x '
midletext=r" -f png -t --width "+str(width)+r" --height " +str(height)+r" -o "
commandtext1=starttext+inputfilepath+midletext+outputfilepath
5、 改變python文件工作目錄并執(zhí)行命令
path="D:/draw.io/"#安裝文件夾
os.chdir( path )# 修改當(dāng)前工作目錄
v2=os.system(commandtext1)
完整的代碼
代碼量并不大,非常簡單
'''
Author: zzx
Date: 2022-07-27 10:12:38
LastEditors: zdl
LastEditTime: 2022-07-30 16:10:22
FilePath: \matlabcodef:\BaiduNetdiskWorkspace\00typora\大論文\drawio\output.py
Description:
Copyright (c) 2022 by zdl, All Rights Reserved.
'''
import os
dpivalue=600#dpi
realwidth=89.4#mm
realheight=81.2#mm
width=round(dpivalue*realwidth/25.4)
height=round(dpivalue*realheight/25.4)
inputfilepath=r'F:\BaiduNetdiskWorkspace\00typora\大論文\drawio\算法流程圖.drawio'
outputfilepath=r'F:\BaiduNetdiskWorkspace\00typora\大論文\drawio\test.png'
starttext=r'draw.io -x '
midletext=r" -f png -t --width "+str(width)+r" --height " +str(height)+r" -o "
commandtext1=starttext+inputfilepath+midletext+outputfilepath
path="D:/draw.io/"#安裝文件夾
os.chdir( path )# 修改當(dāng)前工作目錄
v2=os.system(commandtext1)
# 快速運(yùn)行F5
# print(v2)
#關(guān)于python權(quán)限的問題
# https://blog.csdn.net/qq_33731081/article/details/103812749
# 如何在python中運(yùn)行命令行命令
# https://blog.csdn.net/qq_34769162/article/details/119037908
#報(bào)錯為空值的問題
# https://blog.csdn.net/xiaoxiaogh/article/details/88320102
#關(guān)于drawio導(dǎo)出命令,靈感來源https://j2r2b.github.io/2019/08/06/drawio-cli.html
'''
Options:
-V, --version output the version number
-c, --create creates a new empty file if no file is
passed
-k, --check does not overwrite existing files
-x, --export export the input file/folder based on the
given options
-r, --recursive for a folder input, recursively convert
all files in sub-folders also
-o, --output <output file/folder> specify the output file/folder. If
omitted, the input file name is used for
output with the specified format as
extension
-f, --format <format> if output file name extension is
specified, this option is ignored (file
type is determined from output extension,
possible export formats are pdf, png, jpg,
svg, vsdx, and xml) (default: "pdf")
-q, --quality <quality> output image quality for JPEG (default:
90)
-t, --transparent set transparent background for PNG
-e, --embed-diagram includes a copy of the diagram (for PNG,
SVG and PDF formats only)
--embed-svg-images Embed Images in SVG file (for SVG format
only)
-b, --border <border> sets the border width around the diagram
(default: 0)
-s, --scale <scale> scales the diagram size
--width <width> fits the generated image/pdf into the
specified width, preserves aspect ratio.
--height <height> fits the generated image/pdf into the
specified height, preserves aspect ratio.
--crop crops PDF to diagram size
-a, --all-pages export all pages (for PDF format only)
-p, --page-index <pageIndex> selects a specific page, if not specified
and the format is an image, the first page
is selected
-g, --page-range <from>..<to> selects a page range (for PDF format only)
-u, --uncompressed Uncompressed XML output (for XML format
only)
--enable-plugins Enable Plugins
-h, --help display help for command
'''
原文鏈接:https://blog.csdn.net/weixin_39361931/article/details/126073760
相關(guān)推薦
- 2022-06-30 C語言從基礎(chǔ)到進(jìn)階全面講解數(shù)組_C 語言
- 2022-06-21 C語言詳解如何實(shí)現(xiàn)帶頭雙向循環(huán)鏈表_C 語言
- 2022-06-15 GO文件創(chuàng)建及讀寫操作示例詳解_Golang
- 2022-03-14 Spring mvc解決跨域請求:Response to preflight request doe
- 2022-11-24 Linux實(shí)現(xiàn)文件定期本地備份/異地備份/刪除備份的腳本_linux shell
- 2022-10-08 C#中Timer實(shí)現(xiàn)Tick使用精度的問題_C#教程
- 2022-08-18 Linux阿里云服務(wù)器中安裝Nginx命令的詳細(xì)過程_服務(wù)器其它
- 2022-10-15 C#集合本質(zhì)之隊(duì)列的用法詳解_C#教程
- 最近更新
-
- window11 系統(tǒng)安裝 yarn
- 超詳細(xì)win安裝深度學(xué)習(xí)環(huán)境2025年最新版(
- Linux 中運(yùn)行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎(chǔ)操作-- 運(yùn)算符,流程控制 Flo
- 1. Int 和Integer 的區(qū)別,Jav
- spring @retryable不生效的一種
- Spring Security之認(rèn)證信息的處理
- Spring Security之認(rèn)證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權(quán)
- redisson分布式鎖中waittime的設(shè)
- maven:解決release錯誤:Artif
- restTemplate使用總結(jié)
- Spring Security之安全異常處理
- MybatisPlus優(yōu)雅實(shí)現(xiàn)加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務(wù)發(fā)現(xiàn)-Nac
- Spring Security之基于HttpR
- Redis 底層數(shù)據(jù)結(jié)構(gòu)-簡單動態(tài)字符串(SD
- arthas操作spring被代理目標(biāo)對象命令
- Spring中的單例模式應(yīng)用詳解
- 聊聊消息隊(duì)列,發(fā)送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠(yuǎn)程分支