代码拉取完成,页面将自动刷新
/*
Copyright 2018 The pdfcpu Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package model
import (
"gitee.com/deeao/golang-pdfcpu/pkg/log"
"gitee.com/deeao/golang-pdfcpu/pkg/pdfcpu/types"
)
// The PDF root object fields.
const (
RootVersion = iota
RootExtensions
RootPageLabels
RootNames
RootDests
RootViewerPrefs
RootPageLayout
RootPageMode
RootOutlines
RootThreads
RootOpenAction
RootAA
RootURI
RootAcroForm
RootMetadata
RootStructTreeRoot
RootMarkInfo
RootLang
RootSpiderInfo
RootOutputIntents
RootPieceInfo
RootOCProperties
RootPerms
RootLegal
RootRequirements
RootCollection
RootNeedsRendering
)
// The PDF page object fields.
const (
PageLastModified = iota
PageResources
PageMediaBox
PageCropBox
PageBleedBox
PageTrimBox
PageArtBox
PageBoxColorInfo
PageContents
PageRotate
PageGroup
PageThumb
PageB
PageDur
PageTrans
PageAnnots
PageAA
PageMetadata
PagePieceInfo
PageStructParents
PageID
PagePZ
PageSeparationInfo
PageTabs
PageTemplateInstantiated
PagePresSteps
PageUserUnit
PageVP
)
// PDFStats is a container for stats.
type PDFStats struct {
// Used root attributes
rootAttrs types.IntSet
// Used page attributes
pageAttrs types.IntSet
}
// NewPDFStats returns a new PDFStats object.
func NewPDFStats() PDFStats {
return PDFStats{rootAttrs: types.IntSet{}, pageAttrs: types.IntSet{}}
}
// AddRootAttr adds the occurrence of a field with given name to the rootAttrs set.
func (stats PDFStats) AddRootAttr(name int) {
stats.rootAttrs[name] = true
}
// UsesRootAttr returns true if a field with given name is contained in the rootAttrs set.
func (stats PDFStats) UsesRootAttr(name int) bool {
return stats.rootAttrs[name]
}
// AddPageAttr adds the occurrence of a field with given name to the pageAttrs set.
func (stats PDFStats) AddPageAttr(name int) {
stats.pageAttrs[name] = true
}
// UsesPageAttr returns true if a field with given name is contained in the pageAttrs set.
func (stats PDFStats) UsesPageAttr(name int) bool {
return stats.pageAttrs[name]
}
// ValidationTimingStats prints processing time stats for validation.
func ValidationTimingStats(dur1, dur2, dur float64) {
if !log.StatsEnabled() {
return
}
log.Stats.Println("Timing:")
log.Stats.Printf("read : %6.3fs %4.1f%%\n", dur1, dur1/dur*100)
log.Stats.Printf("validate : %6.3fs %4.1f%%\n", dur2, dur2/dur*100)
log.Stats.Printf("total processing time: %6.3fs\n\n", dur)
}
// TimingStats prints processing time stats for an operation.
func TimingStats(op string, durRead, durVal, durOpt, durWrite, durTotal float64) {
if !log.StatsEnabled() {
return
}
log.Stats.Println("Timing:")
log.Stats.Printf("read : %6.3fs %4.1f%%\n", durRead, durRead/durTotal*100)
log.Stats.Printf("validate : %6.3fs %4.1f%%\n", durVal, durVal/durTotal*100)
log.Stats.Printf("optimize : %6.3fs %4.1f%%\n", durOpt, durOpt/durTotal*100)
log.Stats.Printf("%-21s: %6.3fs %4.1f%%\n", op, durWrite, durWrite/durTotal*100)
log.Stats.Printf("total processing time: %6.3fs\n\n", durTotal)
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。