remove mandarin comment
Some checks are pending
CI / Julia 1.6 - ubuntu-latest - x64 (push) Waiting to run
CI / Julia 1.7 - ubuntu-latest - x64 (push) Waiting to run
CI / Julia pre - ubuntu-latest - x64 (push) Waiting to run

This commit is contained in:
Tan, Kian-ting 2025-01-27 16:50:11 +08:00
parent 739c8b4095
commit 52d4b1b3cb

View file

@ -68,7 +68,7 @@ function put_text(page, text, font, size, x, y)
#declare putting text
@ccall libhpdf.HPDF_Page_BeginText(
page::Ptr{Cvoid})::Ptr{Cvoid}; #宣告加入文字
page::Ptr{Cvoid})::Ptr{Cvoid}
# put the text on
@ccall libhpdf.HPDF_Page_TextOut(
@ -79,7 +79,7 @@ function put_text(page, text, font, size, x, y)
# end of putting text
@ccall libhpdf.HPDF_Page_EndText(
page::Ptr{Cvoid})::Ptr{Cvoid}; #宣告完成加入文字
page::Ptr{Cvoid})::Ptr{Cvoid}
end