-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #136 from payotte/tiff-extra-sample
Add support to TIFF extra sample.
- Loading branch information
Showing
3 changed files
with
97 additions
and
4 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
src/iTextSharp.LGPLv2.Core.FunctionalTests/TiffImageTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
using System.IO; | ||
using iTextSharp.text.pdf; | ||
using iTextSharp.text.pdf.codec; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Document = iTextSharp.text.Document; | ||
|
||
namespace iTextSharp.LGPLv2.Core.FunctionalTests; | ||
|
||
[TestClass] | ||
public class TiffImageTests | ||
{ | ||
private RandomAccessFileOrArray _s; | ||
|
||
[TestInitialize] | ||
public void TIFF_extra_samples() | ||
{ | ||
var filename = Path.Combine(TestUtils.GetBaseDir(), "iTextExamples", "resources", "img", "sampleRGBA.tif"); | ||
_s = new RandomAccessFileOrArray(filename); | ||
} | ||
|
||
[TestMethod] | ||
public void Verify_TIFF_extra_samples_CanBeRead() | ||
{ | ||
var numberOfPages = TiffImage.GetNumberOfPages(_s); | ||
Assert.AreEqual(1, numberOfPages); | ||
|
||
var image = TiffImage.GetTiffImage(_s, 1); | ||
Assert.IsNotNull(image); | ||
} | ||
|
||
[TestMethod] | ||
public void Verify_TIFF_extra_samples_CanBeAddedToPdfDocument() | ||
{ | ||
var pdfFilePath = TestUtils.GetOutputFileName(); | ||
using (var stream = new FileStream(pdfFilePath, FileMode.Create)) | ||
{ | ||
var margin = 50f; | ||
using (var document = new Document()) | ||
{ | ||
var pageWidth = document.PageSize.Width - margin; | ||
var pageHeight = document.PageSize.Height - margin; | ||
var image = TiffImage.GetTiffImage(_s, 1); | ||
image.ScaleToFit(pageWidth, pageHeight); | ||
|
||
PdfWriter.GetInstance(document, stream); | ||
document.Open(); | ||
document.AddAuthor(TestUtils.Author); | ||
document.Add(image); | ||
} | ||
} | ||
|
||
TestUtils.VerifyPdfFileIsReadable(pdfFilePath); | ||
} | ||
} |
Binary file added
BIN
+1.38 KB
src/iTextSharp.LGPLv2.Core.FunctionalTests/iTextExamples/resources/img/sampleRGBA.tif
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters