Skip to content

Commit

Permalink
allow public access to PDFStreamEngine.processTilingPattern()
Browse files Browse the repository at this point in the history
  • Loading branch information
ediweissmann committed Jan 9, 2025
1 parent eb3dca3 commit aeefb77
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ protected void processAnnotation(PDAnnotation annotation, PDAppearanceStream app
* @param color color to use, if this is an uncoloured pattern, otherwise null.
* @param colorSpace color space to use, if this is an uncoloured pattern, otherwise null.
*/
protected final void processTilingPattern(PDTilingPattern tilingPattern, PDColor color,
public final void processTilingPattern(PDTilingPattern tilingPattern, PDColor color,
PDColorSpace colorSpace) throws IOException
{
processTilingPattern(tilingPattern, color, colorSpace, tilingPattern.getMatrix());
Expand All @@ -397,7 +397,7 @@ protected final void processTilingPattern(PDTilingPattern tilingPattern, PDColor
* @param colorSpace color space to use, if this is an uncoloured pattern, otherwise null.
* @param patternMatrix the pattern matrix, may be overridden for custom rendering.
*/
protected final void processTilingPattern(PDTilingPattern tilingPattern, PDColor color,
public final void processTilingPattern(PDTilingPattern tilingPattern, PDColor color,
PDColorSpace colorSpace, Matrix patternMatrix) throws IOException
{
PDResources parent = pushResources(tilingPattern);
Expand Down

0 comments on commit aeefb77

Please sign in to comment.