代码拉取完成,页面将自动刷新
同步操作将从 Kevin2li/PDF-Guru 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package main
import "fmt"
func (a *App) CutPDFByGrid(inFile string, outFile string, row int, col int, pages string) error {
logger.Printf("inFile: %s, outFile: %s, row: %d, col: %d, pages: %s\n", inFile, outFile, row, col, pages)
args := []string{"cut", "--method", "grid"}
args = append(args, "--nrow", fmt.Sprintf("%d", row))
args = append(args, "--ncol", fmt.Sprintf("%d", col))
if pages != "" {
args = append(args, "--page_range", pages)
}
if outFile != "" {
args = append(args, "-o", outFile)
}
args = append(args, inFile)
logger.Println(args)
return a.cmdRunner(args, "pdf")
}
func (a *App) CutPDFByBreakpoints(inFile string, outFile string, HBreakpoints []float32, VBreakpoints []float32, pages string) error {
logger.Printf("inFile: %s, outFile: %s, HBreakpoints: %v, VBreakpoints: %v, pages: %s\n", inFile, outFile, HBreakpoints, VBreakpoints, pages)
args := []string{"cut", "--method", "breakpoints"}
args = append(args, inFile)
if len(HBreakpoints) > 0 {
args = append(args, "--h_breakpoints")
for _, v := range HBreakpoints {
args = append(args, fmt.Sprintf("%f", v))
}
}
if len(VBreakpoints) > 0 {
args = append(args, "--v_breakpoints")
for _, v := range VBreakpoints {
args = append(args, fmt.Sprintf("%f", v))
}
}
if pages != "" {
args = append(args, "--page_range", pages)
}
if outFile != "" {
args = append(args, "-o", outFile)
}
logger.Println(args)
return a.cmdRunner(args, "pdf")
}
func (a *App) CombinePDFByGrid(inFile string, outFile string, row int, col int, pages string, paperSize string, orientation string) error {
logger.Printf("inFile: %s, outFile: %s, row: %d, col: %d, pages: %s, paperSize: %s, orientation: %s\n", inFile, outFile, row, col, pages, paperSize, orientation)
args := []string{"combine"}
args = append(args, "--nrow", fmt.Sprintf("%d", row))
args = append(args, "--ncol", fmt.Sprintf("%d", col))
if paperSize != "" {
args = append(args, "--paper_size", paperSize)
}
if orientation != "" {
args = append(args, "--orientation", orientation)
}
if pages != "" {
args = append(args, "--page_range", pages)
}
if outFile != "" {
args = append(args, "-o", outFile)
}
args = append(args, inFile)
logger.Println(args)
return a.cmdRunner(args, "pdf")
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。