개정판 c33fbd9b
dev issue #569 : fix file name
Change-Id: I89e8d8fa4ca875d1ea5e4898fe321d952ff3a115
DTI_PID/PDF_TO_IMAGE/ConvertImage.cs | ||
---|---|---|
259 | 259 |
|
260 | 260 |
using (Bitmap bitmap = pdp.CreateBitmap(i + 1, (int)dMax)) |
261 | 261 |
{ |
262 |
bitmap.Save(sPathNonExtension + "_Page" + (i + 1) + ".png"); |
|
262 |
if (pdp.Document.Pages.Count != 1) |
|
263 |
bitmap.Save(sPathNonExtension + "_Page" + (i + 1) + ".png"); |
|
264 |
else |
|
265 |
bitmap.Save(sPathNonExtension + ".png"); |
|
263 | 266 |
} |
264 | 267 |
|
265 | 268 |
iPercent = (i + 1) * 100 / iPage; |
내보내기 Unified diff