Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KenPanCS
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QCD
Tools
KenPanCS
Commits
ebee9ee5
Commit
ebee9ee5
authored
Dec 24, 2021
by
tsuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RIP処理時間の計測とその結果出力の機能を追加
parent
2b86d82f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
MainWindow.xaml.cs
Code/CSRender/CSRender/MainWindow.xaml.cs
+10
-1
No files found.
Code/CSRender/CSRender/MainWindow.xaml.cs
View file @
ebee9ee5
...
...
@@ -163,13 +163,17 @@ namespace CSRender
reportBox
.
Text
=
""
;
//referenceErrorFlag = true;
}
//検版パラメータの取得
string
shiftPixel
=
PositionBox
.
Text
;
string
colorMargin
=
GradationBox
.
Text
;
string
removePoint
=
SmallDiffBox
.
Text
;
string
shadingOff
=
VisualBox
.
Text
;
//RIP処理時間の計測
var
ripTime
=
new
System
.
Diagnostics
.
Stopwatch
();
ripTime
.
Start
();
//計測開始
//必要に応じてページ引数を指定
bool
pageFlag
=
false
;
string
selectedPage
=
""
;
...
...
@@ -241,6 +245,11 @@ namespace CSRender
//referenceErrorFlag = true;
}
ripTime
.
Stop
();
//RIP時間の計測終了
TimeSpan
timeResult
=
ripTime
.
Elapsed
;
var
allRipTime
=
$"
{
timeResult
}
"
.
Substring
(
0
,
8
);
ResultConsole
.
Text
+=
" [RIP処理時間 "
+
allRipTime
+
"]\r\n"
;
ResultConsole
.
Text
+=
"<TIFF変換完了>\r\n\r\n"
;
ResultConsole
.
ScrollToEnd
();
DoEvents
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment