Skip to content

Commit

Permalink
PDFium version v102.0.4955.0 chromium/4955
Browse files Browse the repository at this point in the history
  • Loading branch information
DJGosnell committed Mar 22, 2022
1 parent e4e3ef6 commit 9a60b34
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion download_package.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dotnet build src/PDFiumCoreBindingsGenerator/PDFiumCoreBindingsGenerator.csproj -c Release
dotnet ./src/PDFiumCoreBindingsGenerator/bin/Release/net6.0/PDFiumCoreBindingsGenerator.dll 61726909 false
dotnet ./src/PDFiumCoreBindingsGenerator/bin/Release/net6.0/PDFiumCoreBindingsGenerator.dll 62294549 false
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>101.0.4943.0</Version>
<Version>102.0.4955.0</Version>
</PropertyGroup>
</Project>
20 changes: 11 additions & 9 deletions src/PDFiumCore/PDFiumCore.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Built from precompiled binaries at https://github.com/bblanchon/pdfium-binaries/releases/tag/chromium/4943
// Github release api https://api.github.com/repos/bblanchon/pdfium-binaries/releases/61726909
// PDFium version v101.0.4943.0 chromium/4943 [master]
// Built on: Mon, 14 Mar 2022 14:01:08 GMT
// Built from precompiled binaries at https://github.com/bblanchon/pdfium-binaries/releases/tag/chromium/4955
// Github release api https://api.github.com/repos/bblanchon/pdfium-binaries/releases/62294549
// PDFium version v102.0.4955.0 chromium/4955 [master]
// Built on: Tue, 22 Mar 2022 14:18:20 GMT
// ----------------------------------------------------------------------------
// <auto-generated>
// This is autogenerated code by CppSharp.
Expand Down Expand Up @@ -13749,14 +13749,16 @@ public static int FPDFTextGetText(global::PDFiumCore.FpdfTextpageT text_page, in

/// <summary>
/// <para>Function: FPDFText_CountRects</para>
/// <para>Count number of rectangular areas occupied by a segment of texts.</para>
/// <para>Counts number of rectangular areas occupied by a segment of text,</para>
/// <para>and caches the result for subsequent FPDFText_GetRect() calls.</para>
/// <para>Parameters:</para>
/// <para>text_page - Handle to a text page information structure. Returned by FPDFText_LoadPage function.</para>
/// <para>start_index - Index for the start characters.</para>
/// <para>count - Number of characters.</para>
/// <para>start_index - Index for the start character.</para>
/// <para>count - Number of characters, or -1 for all remaining.</para>
/// <para>Return value:</para>
/// <para>Number of rectangles. Zero for error.</para>
/// <para>Comments: This function, along with FPDFText_GetRect can be used by applications to detect the position on the page for a text segment, so proper areas can be highlighted. FPDFTEXT will automatically merge small character boxes into bigger one if those characters are on the same line and use same font settings.</para>
/// <para>Number of rectangles, 0 if text_page is null, or -1 on bad</para>
/// <para>start_index.</para>
/// <para>Comments: This function, along with FPDFText_GetRect can be used by applications to detect the position on the page for a text segment, so proper areas can be highlighted. The FPDFText_* functions will automatically merge small character boxes into bigger one if those characters are on the same line and use same font settings.</para>
/// </summary>
public static int FPDFTextCountRects(global::PDFiumCore.FpdfTextpageT text_page, int start_index, int count)
{
Expand Down

0 comments on commit 9a60b34

Please sign in to comment.