개정판 9774d01e
dev issue #569 : PDF 변환 각도 계산 추가
Change-Id: I58e4ea3e35ebc8c613a344ffb70bdedd1d89b6f8
DTI_PID/PDF_TO_IMAGE/ConvertImage.Designer.cs | ||
---|---|---|
160 | 160 |
this.label4.TabIndex = 13; |
161 | 161 |
this.label4.Text = "Pixels"; |
162 | 162 |
// |
163 |
// splashScreenManager |
|
163 |
// splashScreenManager1
|
|
164 | 164 |
// |
165 | 165 |
this.splashScreenManager1.ClosingDelay = 500; |
166 | 166 |
// |
DTI_PID/PDF_TO_IMAGE/ConvertImage.cs | ||
---|---|---|
218 | 218 |
double dWidth = page.CropBox.Width; |
219 | 219 |
double dHeight = page.CropBox.Height; |
220 | 220 |
|
221 |
if (page.Rotate == 90 || page.Rotate == 270) |
|
222 |
{ |
|
223 |
double tempValue = dWidth; |
|
224 |
dWidth = dHeight; |
|
225 |
dHeight = tempValue; |
|
226 |
} |
|
227 |
|
|
221 | 228 |
if (Chk_Scale.Checked) |
222 | 229 |
{ |
223 | 230 |
dWidth = dWidth * iScale; |
내보내기 Unified diff