Use initial bytes to check if byte[] is WmfImage #41
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In the code below two methods are shown to add a WMF image to the document. The first method creates the WmfImage from a filepath, the second from a byte array from the same file. Both should work, but the second throws a NullpointerException.
The cause of this Exception is the constructor accepting a byte array in the
iText.Kernel.Pdf.Canvas.Wmf.WmfImageData
class. It tries to check whether the argument is a proper WMF image, but does so by trying to load bytes from an URL which does not exist. It should instead read the first few bytes from the array.