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
18b2c72c
Commit
18b2c72c
authored
Nov 29, 2021
by
tsuji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
作業フォルダに前回作業時に作成した同名のTIFFファイルが存在すると、ページ指定外でも検版に含んでしまう誤動作を修正
parent
07a7d082
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
CompareTIFF.cs
Code/CSRender/CSRender/CompareTIFF.cs
+1
-1
MainWindow.xaml.cs
Code/CSRender/CSRender/MainWindow.xaml.cs
+6
-4
No files found.
Code/CSRender/CSRender/CompareTIFF.cs
View file @
18b2c72c
...
...
@@ -43,7 +43,7 @@ namespace CSRender
processStartInfo
.
Arguments
+=
referenceDir
;
//EquiosCenterの場所
string
EquiosCenter
=
System
.
IO
.
Path
.
Combine
(
stCurrentDir
,
"PureVerify.Data"
,
"EquiosCenter
_small
"
);
string
EquiosCenter
=
System
.
IO
.
Path
.
Combine
(
stCurrentDir
,
"PureVerify.Data"
,
"EquiosCenter"
);
processStartInfo
.
Arguments
+=
" /equios "
;
processStartInfo
.
Arguments
+=
EquiosCenter
;
...
...
Code/CSRender/CSRender/MainWindow.xaml.cs
View file @
18b2c72c
...
...
@@ -164,10 +164,11 @@ namespace CSRender
//対象フォルダ
string
targetTIFFPath
=
System
.
IO
.
Path
.
Combine
(
workBox
.
Text
,
"work"
,
"targetTIFF"
);
if
(
!
Directory
.
Exists
(
targetTIFFPath
))
//指定先にTIFF用フォルダがあるか
if
(
Directory
.
Exists
(
targetTIFFPath
))
//指定先にTIFF用フォルダがあるか
{
Directory
.
CreateDirectory
(
targetTIFFPath
);
//なければ新規でTIFF用フォルダを作成
Directory
.
Delete
(
targetTIFFPath
,
true
);
//あれば古いTIFF用フォルダを削除(前回作業時の生成物との混同防止)
}
Directory
.
CreateDirectory
(
targetTIFFPath
);
//新規でTIFF用フォルダを作成
//CSRenderの実行
string
targetTIFFResult
=
...
...
@@ -177,10 +178,11 @@ namespace CSRender
//リファレンスフォルダ
string
referenceTIFFPath
=
System
.
IO
.
Path
.
Combine
(
workBox
.
Text
,
"work"
,
"referenceTIFF"
);
if
(
!
Directory
.
Exists
(
referenceTIFFPath
))
//指定先にTIFF用フォルダがあるか
if
(
Directory
.
Exists
(
referenceTIFFPath
))
//指定先にTIFF用フォルダがあるか
{
Directory
.
CreateDirectory
(
referenceTIFFPath
);
//なければ新規でTIFF用フォルダを作成
Directory
.
Delete
(
referenceTIFFPath
,
true
);
//あれば古いTIFF用フォルダを削除(前回作業時の生成物との混同防止)
}
Directory
.
CreateDirectory
(
referenceTIFFPath
);
//新規でTIFF用フォルダを作成
//CSRenderの実行
string
referenceTIFFResult
=
...
...
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