| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434 |
- R"""
- Auto-generated by:
- ctypesgen -l pdfium --rt-libpaths './{prefix}{name}.{suffix}' --no-system-libsearch --no-load-library --no-macro-guards --no-symbol-guards --symbol-rules 'if_needed=\w+_$|\w+_t$|_\w+' --headers fpdf_annot.h fpdf_attachment.h fpdf_catalog.h fpdf_dataavail.h fpdf_doc.h fpdf_edit.h fpdf_ext.h fpdf_flatten.h fpdf_formfill.h fpdf_fwlevent.h fpdf_javascript.h fpdf_ppo.h fpdf_progressive.h fpdf_save.h fpdf_searchex.h fpdf_signature.h fpdf_structtree.h fpdf_sysfontinfo.h fpdf_text.h fpdf_thumbnail.h fpdf_transformpage.h fpdfview.h -o '~/work/pypdfium2/pypdfium2/data/bindings/bindings.py'
- """
- import ctypes
- from ctypes import *
- # -- Begin library loader --
- import sys
- import ctypes
- import ctypes.util
- import os.path
- import pathlib
- if sys.platform.startswith(("win32", "cygwin", "msys")):
- _LIB_PREFIX, _LIB_SUFFIX = "", "dll"
- elif sys.platform.startswith(("darwin", "ios")):
- _LIB_PREFIX, _LIB_SUFFIX = "lib", "dylib"
- else: # assume unix-like naming pattern
- _LIB_PREFIX, _LIB_SUFFIX = "lib", "so"
- def _get_library(name, dllclass, libpaths, search_sys):
-
- for lpath in libpaths:
- if os.path.dirname(lpath):
- lpath = pathlib.Path(lpath)
- if not lpath.is_absolute():
- lpath = (pathlib.Path(__file__).parent / lpath).resolve(strict=False)
- lpath = lpath.parent / lpath.name.format(prefix=_LIB_PREFIX, name=name, suffix=_LIB_SUFFIX)
- if lpath.exists():
- return dllclass(str(lpath))
- else:
- try:
- return dllclass(lpath)
- except OSError:
- pass
-
- lpath = ctypes.util.find_library(name) if search_sys else None
- if not lpath:
- raise ImportError(f"Could not find library {name!r} (libpaths={libpaths}, search_sys={search_sys})")
-
- return dllclass(lpath)
- _libs = {}
- # -- End library loader --
- # -- Begin templates --
- # AOTW, ctypes does not support non-primitive result types in callbacks,
- # so we remap custom pointer types to unchecked c_void_p.
- def UNCHECKED(t):
- if hasattr(t, "_type_") and not isinstance(t._type_, str):
- return ctypes.c_void_p
- else:
- return t
- # -- End templates --
- # Load library 'pdfium'
- _libs['pdfium'] = _get_library(
- name = 'pdfium',
- dllclass = ctypes.CDLL,
- libpaths = ('./{prefix}{name}.{suffix}',),
- search_sys = False,
- )
- # -- Begin header members --
- # ./fpdfview.h: 59
- enum_anon_2 = c_int
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_UNKNOWN = (-1)
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_FILL = 0
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_STROKE = 1
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_FILL_STROKE = 2
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_INVISIBLE = 3
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_FILL_CLIP = 4
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_STROKE_CLIP = 5
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_FILL_STROKE_CLIP = 6
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_CLIP = 7
- # ./fpdfview.h: 59
- FPDF_TEXTRENDERMODE_LAST = FPDF_TEXTRENDERMODE_CLIP
- # ./fpdfview.h: 59
- FPDF_TEXT_RENDERMODE = enum_anon_2
- # ./fpdfview.h: 62
- class struct_fpdf_action_t__ (Structure):
- pass
- # ./fpdfview.h: 62
- FPDF_ACTION = POINTER(struct_fpdf_action_t__)
- # ./fpdfview.h: 63
- class struct_fpdf_annotation_t__ (Structure):
- pass
- # ./fpdfview.h: 63
- FPDF_ANNOTATION = POINTER(struct_fpdf_annotation_t__)
- # ./fpdfview.h: 64
- class struct_fpdf_attachment_t__ (Structure):
- pass
- # ./fpdfview.h: 64
- FPDF_ATTACHMENT = POINTER(struct_fpdf_attachment_t__)
- # ./fpdfview.h: 65
- class struct_fpdf_avail_t__ (Structure):
- pass
- # ./fpdfview.h: 65
- FPDF_AVAIL = POINTER(struct_fpdf_avail_t__)
- # ./fpdfview.h: 66
- class struct_fpdf_bitmap_t__ (Structure):
- pass
- # ./fpdfview.h: 66
- FPDF_BITMAP = POINTER(struct_fpdf_bitmap_t__)
- # ./fpdfview.h: 67
- class struct_fpdf_bookmark_t__ (Structure):
- pass
- # ./fpdfview.h: 67
- FPDF_BOOKMARK = POINTER(struct_fpdf_bookmark_t__)
- # ./fpdfview.h: 68
- class struct_fpdf_clippath_t__ (Structure):
- pass
- # ./fpdfview.h: 68
- FPDF_CLIPPATH = POINTER(struct_fpdf_clippath_t__)
- # ./fpdfview.h: 69
- class struct_fpdf_dest_t__ (Structure):
- pass
- # ./fpdfview.h: 69
- FPDF_DEST = POINTER(struct_fpdf_dest_t__)
- # ./fpdfview.h: 70
- class struct_fpdf_document_t__ (Structure):
- pass
- # ./fpdfview.h: 70
- FPDF_DOCUMENT = POINTER(struct_fpdf_document_t__)
- # ./fpdfview.h: 71
- class struct_fpdf_font_t__ (Structure):
- pass
- # ./fpdfview.h: 71
- FPDF_FONT = POINTER(struct_fpdf_font_t__)
- # ./fpdfview.h: 72
- class struct_fpdf_form_handle_t__ (Structure):
- pass
- # ./fpdfview.h: 72
- FPDF_FORMHANDLE = POINTER(struct_fpdf_form_handle_t__)
- # ./fpdfview.h: 73
- class struct_fpdf_glyphpath_t__ (Structure):
- pass
- # ./fpdfview.h: 73
- FPDF_GLYPHPATH = POINTER(struct_fpdf_glyphpath_t__)
- # ./fpdfview.h: 74
- class struct_fpdf_javascript_action_t (Structure):
- pass
- # ./fpdfview.h: 74
- FPDF_JAVASCRIPT_ACTION = POINTER(struct_fpdf_javascript_action_t)
- # ./fpdfview.h: 75
- class struct_fpdf_link_t__ (Structure):
- pass
- # ./fpdfview.h: 75
- FPDF_LINK = POINTER(struct_fpdf_link_t__)
- # ./fpdfview.h: 76
- class struct_fpdf_page_t__ (Structure):
- pass
- # ./fpdfview.h: 76
- FPDF_PAGE = POINTER(struct_fpdf_page_t__)
- # ./fpdfview.h: 77
- class struct_fpdf_pagelink_t__ (Structure):
- pass
- # ./fpdfview.h: 77
- FPDF_PAGELINK = POINTER(struct_fpdf_pagelink_t__)
- # ./fpdfview.h: 78
- class struct_fpdf_pageobject_t__ (Structure):
- pass
- # ./fpdfview.h: 78
- FPDF_PAGEOBJECT = POINTER(struct_fpdf_pageobject_t__)
- # ./fpdfview.h: 79
- class struct_fpdf_pageobjectmark_t__ (Structure):
- pass
- # ./fpdfview.h: 79
- FPDF_PAGEOBJECTMARK = POINTER(struct_fpdf_pageobjectmark_t__)
- # ./fpdfview.h: 80
- class struct_fpdf_pagerange_t__ (Structure):
- pass
- # ./fpdfview.h: 80
- FPDF_PAGERANGE = POINTER(struct_fpdf_pagerange_t__)
- # ./fpdfview.h: 81
- class struct_fpdf_pathsegment_t (Structure):
- pass
- # ./fpdfview.h: 81
- FPDF_PATHSEGMENT = POINTER(struct_fpdf_pathsegment_t)
- # ./fpdfview.h: 82
- class struct_fpdf_schhandle_t__ (Structure):
- pass
- # ./fpdfview.h: 82
- FPDF_SCHHANDLE = POINTER(struct_fpdf_schhandle_t__)
- # ./fpdfview.h: 83
- class struct_fpdf_signature_t__ (Structure):
- pass
- # ./fpdfview.h: 83
- FPDF_SIGNATURE = POINTER(struct_fpdf_signature_t__)
- # ./fpdfview.h: 84
- FPDF_SKIA_CANVAS = POINTER(None)
- # ./fpdfview.h: 85
- class struct_fpdf_structelement_t__ (Structure):
- pass
- # ./fpdfview.h: 85
- FPDF_STRUCTELEMENT = POINTER(struct_fpdf_structelement_t__)
- # ./fpdfview.h: 86
- class struct_fpdf_structelement_attr_t__ (Structure):
- pass
- # ./fpdfview.h: 86
- FPDF_STRUCTELEMENT_ATTR = POINTER(struct_fpdf_structelement_attr_t__)
- # ./fpdfview.h: 87
- class struct_fpdf_structelement_attr_value_t__ (Structure):
- pass
- # ./fpdfview.h: 87
- FPDF_STRUCTELEMENT_ATTR_VALUE = POINTER(struct_fpdf_structelement_attr_value_t__)
- # ./fpdfview.h: 89
- class struct_fpdf_structtree_t__ (Structure):
- pass
- # ./fpdfview.h: 89
- FPDF_STRUCTTREE = POINTER(struct_fpdf_structtree_t__)
- # ./fpdfview.h: 90
- class struct_fpdf_textpage_t__ (Structure):
- pass
- # ./fpdfview.h: 90
- FPDF_TEXTPAGE = POINTER(struct_fpdf_textpage_t__)
- # ./fpdfview.h: 91
- class struct_fpdf_widget_t__ (Structure):
- pass
- # ./fpdfview.h: 91
- FPDF_WIDGET = POINTER(struct_fpdf_widget_t__)
- # ./fpdfview.h: 92
- class struct_fpdf_xobject_t__ (Structure):
- pass
- # ./fpdfview.h: 92
- FPDF_XOBJECT = POINTER(struct_fpdf_xobject_t__)
- # ./fpdfview.h: 95
- FPDF_BOOL = c_int
- # ./fpdfview.h: 96
- FPDF_RESULT = c_int
- # ./fpdfview.h: 97
- FPDF_DWORD = c_ulong
- # ./fpdfview.h: 98
- FS_FLOAT = c_float
- # ./fpdfview.h: 106
- enum__FPDF_DUPLEXTYPE_ = c_int
- # ./fpdfview.h: 106
- DuplexUndefined = 0
- # ./fpdfview.h: 106
- Simplex = (DuplexUndefined + 1)
- # ./fpdfview.h: 106
- DuplexFlipShortEdge = (Simplex + 1)
- # ./fpdfview.h: 106
- DuplexFlipLongEdge = (DuplexFlipShortEdge + 1)
- # ./fpdfview.h: 106
- FPDF_DUPLEXTYPE = enum__FPDF_DUPLEXTYPE_
- # ./fpdfview.h: 109
- FPDF_WCHAR = c_ushort
- # ./fpdfview.h: 115
- FPDF_BYTESTRING = POINTER(c_char)
- # ./fpdfview.h: 119
- FPDF_WIDESTRING = POINTER(FPDF_WCHAR)
- # ./fpdfview.h: 127
- class struct_FPDF_BSTR_ (Structure):
- __slots__ = ('str', 'len')
- struct_FPDF_BSTR_._fields_ = (
- ('str', POINTER(c_char)),
- ('len', c_int),
- )
- # ./fpdfview.h: 127
- FPDF_BSTR = struct_FPDF_BSTR_
- # ./fpdfview.h: 136
- FPDF_STRING = POINTER(c_char)
- # ./fpdfview.h: 153
- class struct__FS_MATRIX_ (Structure):
- __slots__ = ('a', 'b', 'c', 'd', 'e', 'f')
- struct__FS_MATRIX_._fields_ = (
- ('a', c_float),
- ('b', c_float),
- ('c', c_float),
- ('d', c_float),
- ('e', c_float),
- ('f', c_float),
- )
- # ./fpdfview.h: 153
- FS_MATRIX = struct__FS_MATRIX_
- # ./fpdfview.h: 156
- class struct__FS_RECTF_ (Structure):
- __slots__ = ('left', 'top', 'right', 'bottom')
- struct__FS_RECTF_._fields_ = (
- ('left', c_float),
- ('top', c_float),
- ('right', c_float),
- ('bottom', c_float),
- )
- # ./fpdfview.h: 165
- FS_LPRECTF = POINTER(struct__FS_RECTF_)
- # ./fpdfview.h: 165
- FS_RECTF = struct__FS_RECTF_
- # ./fpdfview.h: 168
- FS_LPCRECTF = POINTER(FS_RECTF)
- # ./fpdfview.h: 171
- class struct_FS_SIZEF_ (Structure):
- __slots__ = ('width', 'height')
- struct_FS_SIZEF_._fields_ = (
- ('width', c_float),
- ('height', c_float),
- )
- # ./fpdfview.h: 174
- FS_LPSIZEF = POINTER(struct_FS_SIZEF_)
- # ./fpdfview.h: 174
- FS_SIZEF = struct_FS_SIZEF_
- # ./fpdfview.h: 177
- FS_LPCSIZEF = POINTER(FS_SIZEF)
- # ./fpdfview.h: 180
- class struct_FS_POINTF_ (Structure):
- __slots__ = ('x', 'y')
- struct_FS_POINTF_._fields_ = (
- ('x', c_float),
- ('y', c_float),
- )
- # ./fpdfview.h: 183
- FS_LPPOINTF = POINTER(struct_FS_POINTF_)
- # ./fpdfview.h: 183
- FS_POINTF = struct_FS_POINTF_
- # ./fpdfview.h: 186
- FS_LPCPOINTF = POINTER(FS_POINTF)
- # ./fpdfview.h: 197
- class struct__FS_QUADPOINTSF (Structure):
- __slots__ = ('x1', 'y1', 'x2', 'y2', 'x3', 'y3', 'x4', 'y4')
- struct__FS_QUADPOINTSF._fields_ = (
- ('x1', FS_FLOAT),
- ('y1', FS_FLOAT),
- ('x2', FS_FLOAT),
- ('y2', FS_FLOAT),
- ('x3', FS_FLOAT),
- ('y3', FS_FLOAT),
- ('x4', FS_FLOAT),
- ('y4', FS_FLOAT),
- )
- # ./fpdfview.h: 197
- FS_QUADPOINTSF = struct__FS_QUADPOINTSF
- # ./fpdfview.h: 200
- FPDF_ANNOTATION_SUBTYPE = c_int
- # ./fpdfview.h: 201
- FPDF_ANNOT_APPEARANCEMODE = c_int
- # ./fpdfview.h: 204
- FPDF_OBJECT_TYPE = c_int
- # ./fpdfview.h: 244
- enum_anon_3 = c_int
- # ./fpdfview.h: 244
- FPDF_RENDERERTYPE_AGG = 0
- # ./fpdfview.h: 244
- FPDF_RENDERERTYPE_SKIA = 1
- # ./fpdfview.h: 244
- FPDF_RENDERER_TYPE = enum_anon_3
- # ./fpdfview.h: 283
- class struct_FPDF_LIBRARY_CONFIG_ (Structure):
- __slots__ = ('version', 'm_pUserFontPaths', 'm_pIsolate', 'm_v8EmbedderSlot', 'm_pPlatform', 'm_RendererType')
- struct_FPDF_LIBRARY_CONFIG_._fields_ = (
- ('version', c_int),
- ('m_pUserFontPaths', POINTER(POINTER(c_char))),
- ('m_pIsolate', POINTER(None)),
- ('m_v8EmbedderSlot', c_uint),
- ('m_pPlatform', POINTER(None)),
- ('m_RendererType', FPDF_RENDERER_TYPE),
- )
- # ./fpdfview.h: 283
- FPDF_LIBRARY_CONFIG = struct_FPDF_LIBRARY_CONFIG_
- # ./fpdfview.h: 295
- FPDF_InitLibraryWithConfig = _libs['pdfium']['FPDF_InitLibraryWithConfig']
- FPDF_InitLibraryWithConfig.argtypes = (POINTER(FPDF_LIBRARY_CONFIG), )
- FPDF_InitLibraryWithConfig.restype = None
- # ./fpdfview.h: 308
- FPDF_InitLibrary = _libs['pdfium']['FPDF_InitLibrary']
- FPDF_InitLibrary.argtypes = ()
- FPDF_InitLibrary.restype = None
- # ./fpdfview.h: 324
- FPDF_DestroyLibrary = _libs['pdfium']['FPDF_DestroyLibrary']
- FPDF_DestroyLibrary.argtypes = ()
- FPDF_DestroyLibrary.restype = None
- # ./fpdfview.h: 337
- FPDF_SetSandBoxPolicy = _libs['pdfium']['FPDF_SetSandBoxPolicy']
- FPDF_SetSandBoxPolicy.argtypes = (FPDF_DWORD, FPDF_BOOL)
- FPDF_SetSandBoxPolicy.restype = None
- # ./fpdfview.h: 391
- FPDF_LoadDocument = _libs['pdfium']['FPDF_LoadDocument']
- FPDF_LoadDocument.argtypes = (FPDF_STRING, FPDF_BYTESTRING)
- FPDF_LoadDocument.restype = FPDF_DOCUMENT
- # ./fpdfview.h: 415
- FPDF_LoadMemDocument = _libs['pdfium']['FPDF_LoadMemDocument']
- FPDF_LoadMemDocument.argtypes = (POINTER(None), c_int, FPDF_BYTESTRING)
- FPDF_LoadMemDocument.restype = FPDF_DOCUMENT
- # ./fpdfview.h: 440
- FPDF_LoadMemDocument64 = _libs['pdfium']['FPDF_LoadMemDocument64']
- FPDF_LoadMemDocument64.argtypes = (POINTER(None), c_size_t, FPDF_BYTESTRING)
- FPDF_LoadMemDocument64.restype = FPDF_DOCUMENT
- # ./fpdfview.h: 464
- class struct_anon_4 (Structure):
- __slots__ = ('m_FileLen', 'm_GetBlock', 'm_Param')
- struct_anon_4._fields_ = (
- ('m_FileLen', c_ulong),
- ('m_GetBlock', CFUNCTYPE(UNCHECKED(c_int), POINTER(None), c_ulong, POINTER(c_ubyte), c_ulong)),
- ('m_Param', POINTER(None)),
- )
- # ./fpdfview.h: 464
- FPDF_FILEACCESS = struct_anon_4
- # ./fpdfview.h: 544
- class struct_FPDF_FILEHANDLER_ (Structure):
- __slots__ = ('clientData', 'Release', 'GetSize', 'ReadBlock', 'WriteBlock', 'Flush', 'Truncate')
- struct_FPDF_FILEHANDLER_._fields_ = (
- ('clientData', POINTER(None)),
- ('Release', CFUNCTYPE(UNCHECKED(None), POINTER(None))),
- ('GetSize', CFUNCTYPE(UNCHECKED(FPDF_DWORD), POINTER(None))),
- ('ReadBlock', CFUNCTYPE(UNCHECKED(FPDF_RESULT), POINTER(None), FPDF_DWORD, POINTER(None), FPDF_DWORD)),
- ('WriteBlock', CFUNCTYPE(UNCHECKED(FPDF_RESULT), POINTER(None), FPDF_DWORD, POINTER(None), FPDF_DWORD)),
- ('Flush', CFUNCTYPE(UNCHECKED(FPDF_RESULT), POINTER(None))),
- ('Truncate', CFUNCTYPE(UNCHECKED(FPDF_RESULT), POINTER(None), FPDF_DWORD)),
- )
- # ./fpdfview.h: 544
- FPDF_FILEHANDLER = struct_FPDF_FILEHANDLER_
- # ./fpdfview.h: 567
- FPDF_LoadCustomDocument = _libs['pdfium']['FPDF_LoadCustomDocument']
- FPDF_LoadCustomDocument.argtypes = (POINTER(FPDF_FILEACCESS), FPDF_BYTESTRING)
- FPDF_LoadCustomDocument.restype = FPDF_DOCUMENT
- # ./fpdfview.h: 580
- FPDF_GetFileVersion = _libs['pdfium']['FPDF_GetFileVersion']
- FPDF_GetFileVersion.argtypes = (FPDF_DOCUMENT, POINTER(c_int))
- FPDF_GetFileVersion.restype = FPDF_BOOL
- # ./fpdfview.h: 605
- FPDF_GetLastError = _libs['pdfium']['FPDF_GetLastError']
- FPDF_GetLastError.argtypes = ()
- FPDF_GetLastError.restype = c_ulong
- # ./fpdfview.h: 620
- FPDF_DocumentHasValidCrossReferenceTable = _libs['pdfium']['FPDF_DocumentHasValidCrossReferenceTable']
- FPDF_DocumentHasValidCrossReferenceTable.argtypes = (FPDF_DOCUMENT, )
- FPDF_DocumentHasValidCrossReferenceTable.restype = FPDF_BOOL
- # ./fpdfview.h: 637
- FPDF_GetTrailerEnds = _libs['pdfium']['FPDF_GetTrailerEnds']
- FPDF_GetTrailerEnds.argtypes = (FPDF_DOCUMENT, POINTER(c_uint), c_ulong)
- FPDF_GetTrailerEnds.restype = c_ulong
- # ./fpdfview.h: 650
- FPDF_GetDocPermissions = _libs['pdfium']['FPDF_GetDocPermissions']
- FPDF_GetDocPermissions.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetDocPermissions.restype = c_ulong
- # ./fpdfview.h: 662
- FPDF_GetDocUserPermissions = _libs['pdfium']['FPDF_GetDocUserPermissions']
- FPDF_GetDocUserPermissions.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetDocUserPermissions.restype = c_ulong
- # ./fpdfview.h: 673
- FPDF_GetSecurityHandlerRevision = _libs['pdfium']['FPDF_GetSecurityHandlerRevision']
- FPDF_GetSecurityHandlerRevision.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetSecurityHandlerRevision.restype = c_int
- # ./fpdfview.h: 681
- FPDF_GetPageCount = _libs['pdfium']['FPDF_GetPageCount']
- FPDF_GetPageCount.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetPageCount.restype = c_int
- # ./fpdfview.h: 693
- FPDF_LoadPage = _libs['pdfium']['FPDF_LoadPage']
- FPDF_LoadPage.argtypes = (FPDF_DOCUMENT, c_int)
- FPDF_LoadPage.restype = FPDF_PAGE
- # ./fpdfview.h: 706
- FPDF_GetPageWidthF = _libs['pdfium']['FPDF_GetPageWidthF']
- FPDF_GetPageWidthF.argtypes = (FPDF_PAGE, )
- FPDF_GetPageWidthF.restype = c_float
- # ./fpdfview.h: 720
- FPDF_GetPageWidth = _libs['pdfium']['FPDF_GetPageWidth']
- FPDF_GetPageWidth.argtypes = (FPDF_PAGE, )
- FPDF_GetPageWidth.restype = c_double
- # ./fpdfview.h: 732
- FPDF_GetPageHeightF = _libs['pdfium']['FPDF_GetPageHeightF']
- FPDF_GetPageHeightF.argtypes = (FPDF_PAGE, )
- FPDF_GetPageHeightF.restype = c_float
- # ./fpdfview.h: 746
- FPDF_GetPageHeight = _libs['pdfium']['FPDF_GetPageHeight']
- FPDF_GetPageHeight.argtypes = (FPDF_PAGE, )
- FPDF_GetPageHeight.restype = c_double
- # ./fpdfview.h: 758
- FPDF_GetPageBoundingBox = _libs['pdfium']['FPDF_GetPageBoundingBox']
- FPDF_GetPageBoundingBox.argtypes = (FPDF_PAGE, POINTER(FS_RECTF))
- FPDF_GetPageBoundingBox.restype = FPDF_BOOL
- # ./fpdfview.h: 772
- FPDF_GetPageSizeByIndexF = _libs['pdfium']['FPDF_GetPageSizeByIndexF']
- FPDF_GetPageSizeByIndexF.argtypes = (FPDF_DOCUMENT, c_int, POINTER(FS_SIZEF))
- FPDF_GetPageSizeByIndexF.restype = FPDF_BOOL
- # ./fpdfview.h: 790
- FPDF_GetPageSizeByIndex = _libs['pdfium']['FPDF_GetPageSizeByIndex']
- FPDF_GetPageSizeByIndex.argtypes = (FPDF_DOCUMENT, c_int, POINTER(c_double), POINTER(c_double))
- FPDF_GetPageSizeByIndex.restype = c_int
- # ./fpdfview.h: 824
- class struct_FPDF_COLORSCHEME_ (Structure):
- __slots__ = ('path_fill_color', 'path_stroke_color', 'text_fill_color', 'text_stroke_color')
- struct_FPDF_COLORSCHEME_._fields_ = (
- ('path_fill_color', FPDF_DWORD),
- ('path_stroke_color', FPDF_DWORD),
- ('text_fill_color', FPDF_DWORD),
- ('text_stroke_color', FPDF_DWORD),
- )
- # ./fpdfview.h: 824
- FPDF_COLORSCHEME = struct_FPDF_COLORSCHEME_
- # ./fpdfview.h: 899
- FPDF_RenderPageBitmap = _libs['pdfium']['FPDF_RenderPageBitmap']
- FPDF_RenderPageBitmap.argtypes = (FPDF_BITMAP, FPDF_PAGE, c_int, c_int, c_int, c_int, c_int, c_int)
- FPDF_RenderPageBitmap.restype = None
- # ./fpdfview.h: 927
- FPDF_RenderPageBitmapWithMatrix = _libs['pdfium']['FPDF_RenderPageBitmapWithMatrix']
- FPDF_RenderPageBitmapWithMatrix.argtypes = (FPDF_BITMAP, FPDF_PAGE, POINTER(FS_MATRIX), POINTER(FS_RECTF), c_int)
- FPDF_RenderPageBitmapWithMatrix.restype = None
- # ./fpdfview.h: 956
- FPDF_ClosePage = _libs['pdfium']['FPDF_ClosePage']
- FPDF_ClosePage.argtypes = (FPDF_PAGE, )
- FPDF_ClosePage.restype = None
- # ./fpdfview.h: 964
- FPDF_CloseDocument = _libs['pdfium']['FPDF_CloseDocument']
- FPDF_CloseDocument.argtypes = (FPDF_DOCUMENT, )
- FPDF_CloseDocument.restype = None
- # ./fpdfview.h: 1007
- FPDF_DeviceToPage = _libs['pdfium']['FPDF_DeviceToPage']
- FPDF_DeviceToPage.argtypes = (FPDF_PAGE, c_int, c_int, c_int, c_int, c_int, c_int, c_int, POINTER(c_double), POINTER(c_double))
- FPDF_DeviceToPage.restype = FPDF_BOOL
- # ./fpdfview.h: 1044
- FPDF_PageToDevice = _libs['pdfium']['FPDF_PageToDevice']
- FPDF_PageToDevice.argtypes = (FPDF_PAGE, c_int, c_int, c_int, c_int, c_int, c_double, c_double, POINTER(c_int), POINTER(c_int))
- FPDF_PageToDevice.restype = FPDF_BOOL
- # ./fpdfview.h: 1085
- FPDFBitmap_Create = _libs['pdfium']['FPDFBitmap_Create']
- FPDFBitmap_Create.argtypes = (c_int, c_int, c_int)
- FPDFBitmap_Create.restype = FPDF_BITMAP
- # ./fpdfview.h: 1140
- FPDFBitmap_CreateEx = _libs['pdfium']['FPDFBitmap_CreateEx']
- FPDFBitmap_CreateEx.argtypes = (c_int, c_int, c_int, POINTER(None), c_int)
- FPDFBitmap_CreateEx.restype = FPDF_BITMAP
- # ./fpdfview.h: 1156
- FPDFBitmap_GetFormat = _libs['pdfium']['FPDFBitmap_GetFormat']
- FPDFBitmap_GetFormat.argtypes = (FPDF_BITMAP, )
- FPDFBitmap_GetFormat.restype = c_int
- # ./fpdfview.h: 1182
- FPDFBitmap_FillRect = _libs['pdfium']['FPDFBitmap_FillRect']
- FPDFBitmap_FillRect.argtypes = (FPDF_BITMAP, c_int, c_int, c_int, c_int, FPDF_DWORD)
- FPDFBitmap_FillRect.restype = FPDF_BOOL
- # ./fpdfview.h: 1204
- FPDFBitmap_GetBuffer = _libs['pdfium']['FPDFBitmap_GetBuffer']
- FPDFBitmap_GetBuffer.argtypes = (FPDF_BITMAP, )
- FPDFBitmap_GetBuffer.restype = POINTER(None)
- # ./fpdfview.h: 1213
- FPDFBitmap_GetWidth = _libs['pdfium']['FPDFBitmap_GetWidth']
- FPDFBitmap_GetWidth.argtypes = (FPDF_BITMAP, )
- FPDFBitmap_GetWidth.restype = c_int
- # ./fpdfview.h: 1222
- FPDFBitmap_GetHeight = _libs['pdfium']['FPDFBitmap_GetHeight']
- FPDFBitmap_GetHeight.argtypes = (FPDF_BITMAP, )
- FPDFBitmap_GetHeight.restype = c_int
- # ./fpdfview.h: 1233
- FPDFBitmap_GetStride = _libs['pdfium']['FPDFBitmap_GetStride']
- FPDFBitmap_GetStride.argtypes = (FPDF_BITMAP, )
- FPDFBitmap_GetStride.restype = c_int
- # ./fpdfview.h: 1245
- FPDFBitmap_Destroy = _libs['pdfium']['FPDFBitmap_Destroy']
- FPDFBitmap_Destroy.argtypes = (FPDF_BITMAP, )
- FPDFBitmap_Destroy.restype = None
- # ./fpdfview.h: 1254
- FPDF_VIEWERREF_GetPrintScaling = _libs['pdfium']['FPDF_VIEWERREF_GetPrintScaling']
- FPDF_VIEWERREF_GetPrintScaling.argtypes = (FPDF_DOCUMENT, )
- FPDF_VIEWERREF_GetPrintScaling.restype = FPDF_BOOL
- # ./fpdfview.h: 1263
- FPDF_VIEWERREF_GetNumCopies = _libs['pdfium']['FPDF_VIEWERREF_GetNumCopies']
- FPDF_VIEWERREF_GetNumCopies.argtypes = (FPDF_DOCUMENT, )
- FPDF_VIEWERREF_GetNumCopies.restype = c_int
- # ./fpdfview.h: 1272
- FPDF_VIEWERREF_GetPrintPageRange = _libs['pdfium']['FPDF_VIEWERREF_GetPrintPageRange']
- FPDF_VIEWERREF_GetPrintPageRange.argtypes = (FPDF_DOCUMENT, )
- FPDF_VIEWERREF_GetPrintPageRange.restype = FPDF_PAGERANGE
- # ./fpdfview.h: 1282
- FPDF_VIEWERREF_GetPrintPageRangeCount = _libs['pdfium']['FPDF_VIEWERREF_GetPrintPageRangeCount']
- FPDF_VIEWERREF_GetPrintPageRangeCount.argtypes = (FPDF_PAGERANGE, )
- FPDF_VIEWERREF_GetPrintPageRangeCount.restype = c_size_t
- # ./fpdfview.h: 1294
- FPDF_VIEWERREF_GetPrintPageRangeElement = _libs['pdfium']['FPDF_VIEWERREF_GetPrintPageRangeElement']
- FPDF_VIEWERREF_GetPrintPageRangeElement.argtypes = (FPDF_PAGERANGE, c_size_t)
- FPDF_VIEWERREF_GetPrintPageRangeElement.restype = c_int
- # ./fpdfview.h: 1304
- FPDF_VIEWERREF_GetDuplex = _libs['pdfium']['FPDF_VIEWERREF_GetDuplex']
- FPDF_VIEWERREF_GetDuplex.argtypes = (FPDF_DOCUMENT, )
- FPDF_VIEWERREF_GetDuplex.restype = FPDF_DUPLEXTYPE
- # ./fpdfview.h: 1322
- FPDF_VIEWERREF_GetName = _libs['pdfium']['FPDF_VIEWERREF_GetName']
- FPDF_VIEWERREF_GetName.argtypes = (FPDF_DOCUMENT, FPDF_BYTESTRING, POINTER(c_char), c_ulong)
- FPDF_VIEWERREF_GetName.restype = c_ulong
- # ./fpdfview.h: 1334
- FPDF_CountNamedDests = _libs['pdfium']['FPDF_CountNamedDests']
- FPDF_CountNamedDests.argtypes = (FPDF_DOCUMENT, )
- FPDF_CountNamedDests.restype = FPDF_DWORD
- # ./fpdfview.h: 1344
- FPDF_GetNamedDestByName = _libs['pdfium']['FPDF_GetNamedDestByName']
- FPDF_GetNamedDestByName.argtypes = (FPDF_DOCUMENT, FPDF_BYTESTRING)
- FPDF_GetNamedDestByName.restype = FPDF_DEST
- # ./fpdfview.h: 1367
- FPDF_GetNamedDest = _libs['pdfium']['FPDF_GetNamedDest']
- FPDF_GetNamedDest.argtypes = (FPDF_DOCUMENT, c_int, POINTER(None), POINTER(c_long))
- FPDF_GetNamedDest.restype = FPDF_DEST
- # ./fpdfview.h: 1379
- FPDF_GetXFAPacketCount = _libs['pdfium']['FPDF_GetXFAPacketCount']
- FPDF_GetXFAPacketCount.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetXFAPacketCount.restype = c_int
- # ./fpdfview.h: 1397
- FPDF_GetXFAPacketName = _libs['pdfium']['FPDF_GetXFAPacketName']
- FPDF_GetXFAPacketName.argtypes = (FPDF_DOCUMENT, c_int, POINTER(None), c_ulong)
- FPDF_GetXFAPacketName.restype = c_ulong
- # ./fpdfview.h: 1424
- FPDF_GetXFAPacketContent = _libs['pdfium']['FPDF_GetXFAPacketContent']
- FPDF_GetXFAPacketContent.argtypes = (FPDF_DOCUMENT, c_int, POINTER(None), c_ulong, POINTER(c_ulong))
- FPDF_GetXFAPacketContent.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 26
- class struct__IPDF_JsPlatform (Structure):
- __slots__ = ('version', 'app_alert', 'app_beep', 'app_response', 'Doc_getFilePath', 'Doc_mail', 'Doc_print', 'Doc_submitForm', 'Doc_gotoPage', 'Field_browse', 'm_pFormfillinfo', 'm_isolate', 'm_v8EmbedderSlot')
- struct__IPDF_JsPlatform._fields_ = (
- ('version', c_int),
- ('app_alert', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__IPDF_JsPlatform), FPDF_WIDESTRING, FPDF_WIDESTRING, c_int, c_int)),
- ('app_beep', CFUNCTYPE(UNCHECKED(None), POINTER(struct__IPDF_JsPlatform), c_int)),
- ('app_response', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__IPDF_JsPlatform), FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_BOOL, POINTER(None), c_int)),
- ('Doc_getFilePath', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__IPDF_JsPlatform), POINTER(None), c_int)),
- ('Doc_mail', CFUNCTYPE(UNCHECKED(None), POINTER(struct__IPDF_JsPlatform), POINTER(None), c_int, FPDF_BOOL, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING)),
- ('Doc_print', CFUNCTYPE(UNCHECKED(None), POINTER(struct__IPDF_JsPlatform), FPDF_BOOL, c_int, c_int, FPDF_BOOL, FPDF_BOOL, FPDF_BOOL, FPDF_BOOL, FPDF_BOOL)),
- ('Doc_submitForm', CFUNCTYPE(UNCHECKED(None), POINTER(struct__IPDF_JsPlatform), POINTER(None), c_int, FPDF_WIDESTRING)),
- ('Doc_gotoPage', CFUNCTYPE(UNCHECKED(None), POINTER(struct__IPDF_JsPlatform), c_int)),
- ('Field_browse', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__IPDF_JsPlatform), POINTER(None), c_int)),
- ('m_pFormfillinfo', POINTER(None)),
- ('m_isolate', POINTER(None)),
- ('m_v8EmbedderSlot', c_uint),
- )
- # ./fpdf_formfill.h: 300
- IPDF_JSPLATFORM = struct__IPDF_JsPlatform
- # ./fpdf_formfill.h: 310
- TimerCallback = CFUNCTYPE(UNCHECKED(None), c_int)
- # ./fpdf_formfill.h: 322
- class struct__FPDF_SYSTEMTIME (Structure):
- __slots__ = ('wYear', 'wMonth', 'wDayOfWeek', 'wDay', 'wHour', 'wMinute', 'wSecond', 'wMilliseconds')
- struct__FPDF_SYSTEMTIME._fields_ = (
- ('wYear', c_ushort),
- ('wMonth', c_ushort),
- ('wDayOfWeek', c_ushort),
- ('wDay', c_ushort),
- ('wHour', c_ushort),
- ('wMinute', c_ushort),
- ('wSecond', c_ushort),
- ('wMilliseconds', c_ushort),
- )
- # ./fpdf_formfill.h: 322
- FPDF_SYSTEMTIME = struct__FPDF_SYSTEMTIME
- # ./fpdf_formfill.h: 350
- class struct__FPDF_FORMFILLINFO (Structure):
- __slots__ = ('version', 'Release', 'FFI_Invalidate', 'FFI_OutputSelectedRect', 'FFI_SetCursor', 'FFI_SetTimer', 'FFI_KillTimer', 'FFI_GetLocalTime', 'FFI_OnChange', 'FFI_GetPage', 'FFI_GetCurrentPage', 'FFI_GetRotation', 'FFI_ExecuteNamedAction', 'FFI_SetTextFieldFocus', 'FFI_DoURIAction', 'FFI_DoGoToAction', 'm_pJsPlatform', 'xfa_disabled', 'FFI_DisplayCaret', 'FFI_GetCurrentPageIndex', 'FFI_SetCurrentPage', 'FFI_GotoURL', 'FFI_GetPageViewRect', 'FFI_PageEvent', 'FFI_PopupMenu', 'FFI_OpenFile', 'FFI_EmailTo', 'FFI_UploadTo', 'FFI_GetPlatform', 'FFI_GetLanguage', 'FFI_DownloadFromURL', 'FFI_PostRequestURL', 'FFI_PutRequestURL', 'FFI_OnFocusChange', 'FFI_DoURIActionWithKeyboardModifier')
- struct__FPDF_FORMFILLINFO._fields_ = (
- ('version', c_int),
- ('Release', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO))),
- ('FFI_Invalidate', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_PAGE, c_double, c_double, c_double, c_double)),
- ('FFI_OutputSelectedRect', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_PAGE, c_double, c_double, c_double, c_double)),
- ('FFI_SetCursor', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), c_int)),
- ('FFI_SetTimer', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__FPDF_FORMFILLINFO), c_int, TimerCallback)),
- ('FFI_KillTimer', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), c_int)),
- ('FFI_GetLocalTime', CFUNCTYPE(UNCHECKED(FPDF_SYSTEMTIME), POINTER(struct__FPDF_FORMFILLINFO))),
- ('FFI_OnChange', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO))),
- ('FFI_GetPage', CFUNCTYPE(UNCHECKED(FPDF_PAGE), POINTER(struct__FPDF_FORMFILLINFO), FPDF_DOCUMENT, c_int)),
- ('FFI_GetCurrentPage', CFUNCTYPE(UNCHECKED(FPDF_PAGE), POINTER(struct__FPDF_FORMFILLINFO), FPDF_DOCUMENT)),
- ('FFI_GetRotation', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__FPDF_FORMFILLINFO), FPDF_PAGE)),
- ('FFI_ExecuteNamedAction', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_BYTESTRING)),
- ('FFI_SetTextFieldFocus', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_WIDESTRING, FPDF_DWORD, FPDF_BOOL)),
- ('FFI_DoURIAction', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_BYTESTRING)),
- ('FFI_DoGoToAction', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), c_int, c_int, POINTER(c_float), c_int)),
- ('m_pJsPlatform', POINTER(IPDF_JSPLATFORM)),
- ('xfa_disabled', FPDF_BOOL),
- ('FFI_DisplayCaret', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_PAGE, FPDF_BOOL, c_double, c_double, c_double, c_double)),
- ('FFI_GetCurrentPageIndex', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__FPDF_FORMFILLINFO), FPDF_DOCUMENT)),
- ('FFI_SetCurrentPage', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_DOCUMENT, c_int)),
- ('FFI_GotoURL', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_DOCUMENT, FPDF_WIDESTRING)),
- ('FFI_GetPageViewRect', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_PAGE, POINTER(c_double), POINTER(c_double), POINTER(c_double), POINTER(c_double))),
- ('FFI_PageEvent', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), c_int, FPDF_DWORD)),
- ('FFI_PopupMenu', CFUNCTYPE(UNCHECKED(FPDF_BOOL), POINTER(struct__FPDF_FORMFILLINFO), FPDF_PAGE, FPDF_WIDGET, c_int, c_float, c_float)),
- ('FFI_OpenFile', CFUNCTYPE(UNCHECKED(POINTER(FPDF_FILEHANDLER)), POINTER(struct__FPDF_FORMFILLINFO), c_int, FPDF_WIDESTRING, POINTER(c_char))),
- ('FFI_EmailTo', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), POINTER(FPDF_FILEHANDLER), FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING)),
- ('FFI_UploadTo', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), POINTER(FPDF_FILEHANDLER), c_int, FPDF_WIDESTRING)),
- ('FFI_GetPlatform', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__FPDF_FORMFILLINFO), POINTER(None), c_int)),
- ('FFI_GetLanguage', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__FPDF_FORMFILLINFO), POINTER(None), c_int)),
- ('FFI_DownloadFromURL', CFUNCTYPE(UNCHECKED(POINTER(FPDF_FILEHANDLER)), POINTER(struct__FPDF_FORMFILLINFO), FPDF_WIDESTRING)),
- ('FFI_PostRequestURL', CFUNCTYPE(UNCHECKED(FPDF_BOOL), POINTER(struct__FPDF_FORMFILLINFO), FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING, POINTER(FPDF_BSTR))),
- ('FFI_PutRequestURL', CFUNCTYPE(UNCHECKED(FPDF_BOOL), POINTER(struct__FPDF_FORMFILLINFO), FPDF_WIDESTRING, FPDF_WIDESTRING, FPDF_WIDESTRING)),
- ('FFI_OnFocusChange', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_ANNOTATION, c_int)),
- ('FFI_DoURIActionWithKeyboardModifier', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_FORMFILLINFO), FPDF_BYTESTRING, c_int)),
- )
- # ./fpdf_formfill.h: 1044
- FPDF_FORMFILLINFO = struct__FPDF_FORMFILLINFO
- # ./fpdf_formfill.h: 1058
- FPDFDOC_InitFormFillEnvironment = _libs['pdfium']['FPDFDOC_InitFormFillEnvironment']
- FPDFDOC_InitFormFillEnvironment.argtypes = (FPDF_DOCUMENT, POINTER(FPDF_FORMFILLINFO))
- FPDFDOC_InitFormFillEnvironment.restype = FPDF_FORMHANDLE
- # ./fpdf_formfill.h: 1071
- FPDFDOC_ExitFormFillEnvironment = _libs['pdfium']['FPDFDOC_ExitFormFillEnvironment']
- FPDFDOC_ExitFormFillEnvironment.argtypes = (FPDF_FORMHANDLE, )
- FPDFDOC_ExitFormFillEnvironment.restype = None
- # ./fpdf_formfill.h: 1082
- FORM_OnAfterLoadPage = _libs['pdfium']['FORM_OnAfterLoadPage']
- FORM_OnAfterLoadPage.argtypes = (FPDF_PAGE, FPDF_FORMHANDLE)
- FORM_OnAfterLoadPage.restype = None
- # ./fpdf_formfill.h: 1094
- FORM_OnBeforeClosePage = _libs['pdfium']['FORM_OnBeforeClosePage']
- FORM_OnBeforeClosePage.argtypes = (FPDF_PAGE, FPDF_FORMHANDLE)
- FORM_OnBeforeClosePage.restype = None
- # ./fpdf_formfill.h: 1110
- FORM_DoDocumentJSAction = _libs['pdfium']['FORM_DoDocumentJSAction']
- FORM_DoDocumentJSAction.argtypes = (FPDF_FORMHANDLE, )
- FORM_DoDocumentJSAction.restype = None
- # ./fpdf_formfill.h: 1124
- FORM_DoDocumentOpenAction = _libs['pdfium']['FORM_DoDocumentOpenAction']
- FORM_DoDocumentOpenAction.argtypes = (FPDF_FORMHANDLE, )
- FORM_DoDocumentOpenAction.restype = None
- # ./fpdf_formfill.h: 1151
- FORM_DoDocumentAAction = _libs['pdfium']['FORM_DoDocumentAAction']
- FORM_DoDocumentAAction.argtypes = (FPDF_FORMHANDLE, c_int)
- FORM_DoDocumentAAction.restype = None
- # ./fpdf_formfill.h: 1174
- FORM_DoPageAAction = _libs['pdfium']['FORM_DoPageAAction']
- FORM_DoPageAAction.argtypes = (FPDF_PAGE, FPDF_FORMHANDLE, c_int)
- FORM_DoPageAAction.restype = None
- # ./fpdf_formfill.h: 1191
- FORM_OnMouseMove = _libs['pdfium']['FORM_OnMouseMove']
- FORM_OnMouseMove.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnMouseMove.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1220
- FORM_OnMouseWheel = _libs['pdfium']['FORM_OnMouseWheel']
- FORM_OnMouseWheel.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, POINTER(FS_POINTF), c_int, c_int)
- FORM_OnMouseWheel.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1243
- FORM_OnFocus = _libs['pdfium']['FORM_OnFocus']
- FORM_OnFocus.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnFocus.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1263
- FORM_OnLButtonDown = _libs['pdfium']['FORM_OnLButtonDown']
- FORM_OnLButtonDown.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnLButtonDown.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1274
- FORM_OnRButtonDown = _libs['pdfium']['FORM_OnRButtonDown']
- FORM_OnRButtonDown.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnRButtonDown.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1291
- FORM_OnLButtonUp = _libs['pdfium']['FORM_OnLButtonUp']
- FORM_OnLButtonUp.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnLButtonUp.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1302
- FORM_OnRButtonUp = _libs['pdfium']['FORM_OnRButtonUp']
- FORM_OnRButtonUp.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnRButtonUp.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1323
- FORM_OnLButtonDoubleClick = _libs['pdfium']['FORM_OnLButtonDoubleClick']
- FORM_OnLButtonDoubleClick.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_double, c_double)
- FORM_OnLButtonDoubleClick.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1341
- FORM_OnKeyDown = _libs['pdfium']['FORM_OnKeyDown']
- FORM_OnKeyDown.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_int)
- FORM_OnKeyDown.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1361
- FORM_OnKeyUp = _libs['pdfium']['FORM_OnKeyUp']
- FORM_OnKeyUp.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_int)
- FORM_OnKeyUp.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1378
- FORM_OnChar = _libs['pdfium']['FORM_OnChar']
- FORM_OnChar.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, c_int)
- FORM_OnChar.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1399
- FORM_GetFocusedText = _libs['pdfium']['FORM_GetFocusedText']
- FORM_GetFocusedText.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, POINTER(None), c_ulong)
- FORM_GetFocusedText.restype = c_ulong
- # ./fpdf_formfill.h: 1420
- FORM_GetSelectedText = _libs['pdfium']['FORM_GetSelectedText']
- FORM_GetSelectedText.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, POINTER(None), c_ulong)
- FORM_GetSelectedText.restype = c_ulong
- # ./fpdf_formfill.h: 1441
- FORM_ReplaceAndKeepSelection = _libs['pdfium']['FORM_ReplaceAndKeepSelection']
- FORM_ReplaceAndKeepSelection.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, FPDF_WIDESTRING)
- FORM_ReplaceAndKeepSelection.restype = None
- # ./fpdf_formfill.h: 1459
- FORM_ReplaceSelection = _libs['pdfium']['FORM_ReplaceSelection']
- FORM_ReplaceSelection.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, FPDF_WIDESTRING)
- FORM_ReplaceSelection.restype = None
- # ./fpdf_formfill.h: 1474
- FORM_SelectAllText = _libs['pdfium']['FORM_SelectAllText']
- FORM_SelectAllText.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE)
- FORM_SelectAllText.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1485
- FORM_CanUndo = _libs['pdfium']['FORM_CanUndo']
- FORM_CanUndo.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE)
- FORM_CanUndo.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1497
- FORM_CanRedo = _libs['pdfium']['FORM_CanRedo']
- FORM_CanRedo.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE)
- FORM_CanRedo.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1508
- FORM_Undo = _libs['pdfium']['FORM_Undo']
- FORM_Undo.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE)
- FORM_Undo.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1519
- FORM_Redo = _libs['pdfium']['FORM_Redo']
- FORM_Redo.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE)
- FORM_Redo.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1532
- FORM_ForceToKillFocus = _libs['pdfium']['FORM_ForceToKillFocus']
- FORM_ForceToKillFocus.argtypes = (FPDF_FORMHANDLE, )
- FORM_ForceToKillFocus.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1555
- FORM_GetFocusedAnnot = _libs['pdfium']['FORM_GetFocusedAnnot']
- FORM_GetFocusedAnnot.argtypes = (FPDF_FORMHANDLE, POINTER(c_int), POINTER(FPDF_ANNOTATION))
- FORM_GetFocusedAnnot.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1572
- FORM_SetFocusedAnnot = _libs['pdfium']['FORM_SetFocusedAnnot']
- FORM_SetFocusedAnnot.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FORM_SetFocusedAnnot.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1626
- FPDFPage_HasFormFieldAtPoint = _libs['pdfium']['FPDFPage_HasFormFieldAtPoint']
- FPDFPage_HasFormFieldAtPoint.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_double, c_double)
- FPDFPage_HasFormFieldAtPoint.restype = c_int
- # ./fpdf_formfill.h: 1643
- FPDFPage_FormFieldZOrderAtPoint = _libs['pdfium']['FPDFPage_FormFieldZOrderAtPoint']
- FPDFPage_FormFieldZOrderAtPoint.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_double, c_double)
- FPDFPage_FormFieldZOrderAtPoint.restype = c_int
- # ./fpdf_formfill.h: 1669
- FPDF_SetFormFieldHighlightColor = _libs['pdfium']['FPDF_SetFormFieldHighlightColor']
- FPDF_SetFormFieldHighlightColor.argtypes = (FPDF_FORMHANDLE, c_int, c_ulong)
- FPDF_SetFormFieldHighlightColor.restype = None
- # ./fpdf_formfill.h: 1686
- FPDF_SetFormFieldHighlightAlpha = _libs['pdfium']['FPDF_SetFormFieldHighlightAlpha']
- FPDF_SetFormFieldHighlightAlpha.argtypes = (FPDF_FORMHANDLE, c_ubyte)
- FPDF_SetFormFieldHighlightAlpha.restype = None
- # ./fpdf_formfill.h: 1699
- FPDF_RemoveFormFieldHighlight = _libs['pdfium']['FPDF_RemoveFormFieldHighlight']
- FPDF_RemoveFormFieldHighlight.argtypes = (FPDF_FORMHANDLE, )
- FPDF_RemoveFormFieldHighlight.restype = None
- # ./fpdf_formfill.h: 1736
- FPDF_FFLDraw = _libs['pdfium']['FPDF_FFLDraw']
- FPDF_FFLDraw.argtypes = (FPDF_FORMHANDLE, FPDF_BITMAP, FPDF_PAGE, c_int, c_int, c_int, c_int, c_int, c_int)
- FPDF_FFLDraw.restype = None
- # ./fpdf_formfill.h: 1767
- FPDF_GetFormType = _libs['pdfium']['FPDF_GetFormType']
- FPDF_GetFormType.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetFormType.restype = c_int
- # ./fpdf_formfill.h: 1791
- FORM_SetIndexSelected = _libs['pdfium']['FORM_SetIndexSelected']
- FORM_SetIndexSelected.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int, FPDF_BOOL)
- FORM_SetIndexSelected.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1814
- FORM_IsIndexSelected = _libs['pdfium']['FORM_IsIndexSelected']
- FORM_IsIndexSelected.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, c_int)
- FORM_IsIndexSelected.restype = FPDF_BOOL
- # ./fpdf_formfill.h: 1824
- FPDF_LoadXFA = _libs['pdfium']['FPDF_LoadXFA']
- FPDF_LoadXFA.argtypes = (FPDF_DOCUMENT, )
- FPDF_LoadXFA.restype = FPDF_BOOL
- # ./fpdf_annot.h: 42
- enum_FPDFANNOT_COLORTYPE = c_int
- # ./fpdf_annot.h: 42
- FPDFANNOT_COLORTYPE_Color = 0
- # ./fpdf_annot.h: 42
- FPDFANNOT_COLORTYPE_InteriorColor = (FPDFANNOT_COLORTYPE_Color + 1)
- # ./fpdf_annot.h: 42
- FPDFANNOT_COLORTYPE = enum_FPDFANNOT_COLORTYPE
- # ./fpdf_annot.h: 121
- FPDFAnnot_IsSupportedSubtype = _libs['pdfium']['FPDFAnnot_IsSupportedSubtype']
- FPDFAnnot_IsSupportedSubtype.argtypes = (FPDF_ANNOTATION_SUBTYPE, )
- FPDFAnnot_IsSupportedSubtype.restype = FPDF_BOOL
- # ./fpdf_annot.h: 134
- FPDFPage_CreateAnnot = _libs['pdfium']['FPDFPage_CreateAnnot']
- FPDFPage_CreateAnnot.argtypes = (FPDF_PAGE, FPDF_ANNOTATION_SUBTYPE)
- FPDFPage_CreateAnnot.restype = FPDF_ANNOTATION
- # ./fpdf_annot.h: 142
- FPDFPage_GetAnnotCount = _libs['pdfium']['FPDFPage_GetAnnotCount']
- FPDFPage_GetAnnotCount.argtypes = (FPDF_PAGE, )
- FPDFPage_GetAnnotCount.restype = c_int
- # ./fpdf_annot.h: 152
- FPDFPage_GetAnnot = _libs['pdfium']['FPDFPage_GetAnnot']
- FPDFPage_GetAnnot.argtypes = (FPDF_PAGE, c_int)
- FPDFPage_GetAnnot.restype = FPDF_ANNOTATION
- # ./fpdf_annot.h: 163
- FPDFPage_GetAnnotIndex = _libs['pdfium']['FPDFPage_GetAnnotIndex']
- FPDFPage_GetAnnotIndex.argtypes = (FPDF_PAGE, FPDF_ANNOTATION)
- FPDFPage_GetAnnotIndex.restype = c_int
- # ./fpdf_annot.h: 172
- FPDFPage_CloseAnnot = _libs['pdfium']['FPDFPage_CloseAnnot']
- FPDFPage_CloseAnnot.argtypes = (FPDF_ANNOTATION, )
- FPDFPage_CloseAnnot.restype = None
- # ./fpdf_annot.h: 181
- FPDFPage_RemoveAnnot = _libs['pdfium']['FPDFPage_RemoveAnnot']
- FPDFPage_RemoveAnnot.argtypes = (FPDF_PAGE, c_int)
- FPDFPage_RemoveAnnot.restype = FPDF_BOOL
- # ./fpdf_annot.h: 191
- FPDFAnnot_GetSubtype = _libs['pdfium']['FPDFAnnot_GetSubtype']
- FPDFAnnot_GetSubtype.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_GetSubtype.restype = FPDF_ANNOTATION_SUBTYPE
- # ./fpdf_annot.h: 202
- FPDFAnnot_IsObjectSupportedSubtype = _libs['pdfium']['FPDFAnnot_IsObjectSupportedSubtype']
- FPDFAnnot_IsObjectSupportedSubtype.argtypes = (FPDF_ANNOTATION_SUBTYPE, )
- FPDFAnnot_IsObjectSupportedSubtype.restype = FPDF_BOOL
- # ./fpdf_annot.h: 216
- FPDFAnnot_UpdateObject = _libs['pdfium']['FPDFAnnot_UpdateObject']
- FPDFAnnot_UpdateObject.argtypes = (FPDF_ANNOTATION, FPDF_PAGEOBJECT)
- FPDFAnnot_UpdateObject.restype = FPDF_BOOL
- # ./fpdf_annot.h: 231
- FPDFAnnot_AddInkStroke = _libs['pdfium']['FPDFAnnot_AddInkStroke']
- FPDFAnnot_AddInkStroke.argtypes = (FPDF_ANNOTATION, POINTER(FS_POINTF), c_size_t)
- FPDFAnnot_AddInkStroke.restype = c_int
- # ./fpdf_annot.h: 244
- FPDFAnnot_RemoveInkList = _libs['pdfium']['FPDFAnnot_RemoveInkList']
- FPDFAnnot_RemoveInkList.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_RemoveInkList.restype = FPDF_BOOL
- # ./fpdf_annot.h: 258
- FPDFAnnot_AppendObject = _libs['pdfium']['FPDFAnnot_AppendObject']
- FPDFAnnot_AppendObject.argtypes = (FPDF_ANNOTATION, FPDF_PAGEOBJECT)
- FPDFAnnot_AppendObject.restype = FPDF_BOOL
- # ./fpdf_annot.h: 267
- FPDFAnnot_GetObjectCount = _libs['pdfium']['FPDFAnnot_GetObjectCount']
- FPDFAnnot_GetObjectCount.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_GetObjectCount.restype = c_int
- # ./fpdf_annot.h: 277
- FPDFAnnot_GetObject = _libs['pdfium']['FPDFAnnot_GetObject']
- FPDFAnnot_GetObject.argtypes = (FPDF_ANNOTATION, c_int)
- FPDFAnnot_GetObject.restype = FPDF_PAGEOBJECT
- # ./fpdf_annot.h: 287
- FPDFAnnot_RemoveObject = _libs['pdfium']['FPDFAnnot_RemoveObject']
- FPDFAnnot_RemoveObject.argtypes = (FPDF_ANNOTATION, c_int)
- FPDFAnnot_RemoveObject.restype = FPDF_BOOL
- # ./fpdf_annot.h: 300
- FPDFAnnot_SetColor = _libs['pdfium']['FPDFAnnot_SetColor']
- FPDFAnnot_SetColor.argtypes = (FPDF_ANNOTATION, FPDFANNOT_COLORTYPE, c_uint, c_uint, c_uint, c_uint)
- FPDFAnnot_SetColor.restype = FPDF_BOOL
- # ./fpdf_annot.h: 319
- FPDFAnnot_GetColor = _libs['pdfium']['FPDFAnnot_GetColor']
- FPDFAnnot_GetColor.argtypes = (FPDF_ANNOTATION, FPDFANNOT_COLORTYPE, POINTER(c_uint), POINTER(c_uint), POINTER(c_uint), POINTER(c_uint))
- FPDFAnnot_GetColor.restype = FPDF_BOOL
- # ./fpdf_annot.h: 339
- FPDFAnnot_HasAttachmentPoints = _libs['pdfium']['FPDFAnnot_HasAttachmentPoints']
- FPDFAnnot_HasAttachmentPoints.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_HasAttachmentPoints.restype = FPDF_BOOL
- # ./fpdf_annot.h: 355
- FPDFAnnot_SetAttachmentPoints = _libs['pdfium']['FPDFAnnot_SetAttachmentPoints']
- FPDFAnnot_SetAttachmentPoints.argtypes = (FPDF_ANNOTATION, c_size_t, POINTER(FS_QUADPOINTSF))
- FPDFAnnot_SetAttachmentPoints.restype = FPDF_BOOL
- # ./fpdf_annot.h: 370
- FPDFAnnot_AppendAttachmentPoints = _libs['pdfium']['FPDFAnnot_AppendAttachmentPoints']
- FPDFAnnot_AppendAttachmentPoints.argtypes = (FPDF_ANNOTATION, POINTER(FS_QUADPOINTSF))
- FPDFAnnot_AppendAttachmentPoints.restype = FPDF_BOOL
- # ./fpdf_annot.h: 380
- FPDFAnnot_CountAttachmentPoints = _libs['pdfium']['FPDFAnnot_CountAttachmentPoints']
- FPDFAnnot_CountAttachmentPoints.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_CountAttachmentPoints.restype = c_size_t
- # ./fpdf_annot.h: 391
- FPDFAnnot_GetAttachmentPoints = _libs['pdfium']['FPDFAnnot_GetAttachmentPoints']
- FPDFAnnot_GetAttachmentPoints.argtypes = (FPDF_ANNOTATION, c_size_t, POINTER(FS_QUADPOINTSF))
- FPDFAnnot_GetAttachmentPoints.restype = FPDF_BOOL
- # ./fpdf_annot.h: 405
- FPDFAnnot_SetRect = _libs['pdfium']['FPDFAnnot_SetRect']
- FPDFAnnot_SetRect.argtypes = (FPDF_ANNOTATION, POINTER(FS_RECTF))
- FPDFAnnot_SetRect.restype = FPDF_BOOL
- # ./fpdf_annot.h: 415
- FPDFAnnot_GetRect = _libs['pdfium']['FPDFAnnot_GetRect']
- FPDFAnnot_GetRect.argtypes = (FPDF_ANNOTATION, POINTER(FS_RECTF))
- FPDFAnnot_GetRect.restype = FPDF_BOOL
- # ./fpdf_annot.h: 430
- FPDFAnnot_GetVertices = _libs['pdfium']['FPDFAnnot_GetVertices']
- FPDFAnnot_GetVertices.argtypes = (FPDF_ANNOTATION, POINTER(FS_POINTF), c_ulong)
- FPDFAnnot_GetVertices.restype = c_ulong
- # ./fpdf_annot.h: 442
- FPDFAnnot_GetInkListCount = _libs['pdfium']['FPDFAnnot_GetInkListCount']
- FPDFAnnot_GetInkListCount.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_GetInkListCount.restype = c_ulong
- # ./fpdf_annot.h: 457
- FPDFAnnot_GetInkListPath = _libs['pdfium']['FPDFAnnot_GetInkListPath']
- FPDFAnnot_GetInkListPath.argtypes = (FPDF_ANNOTATION, c_ulong, POINTER(FS_POINTF), c_ulong)
- FPDFAnnot_GetInkListPath.restype = c_ulong
- # ./fpdf_annot.h: 471
- FPDFAnnot_GetLine = _libs['pdfium']['FPDFAnnot_GetLine']
- FPDFAnnot_GetLine.argtypes = (FPDF_ANNOTATION, POINTER(FS_POINTF), POINTER(FS_POINTF))
- FPDFAnnot_GetLine.restype = FPDF_BOOL
- # ./fpdf_annot.h: 487
- FPDFAnnot_SetBorder = _libs['pdfium']['FPDFAnnot_SetBorder']
- FPDFAnnot_SetBorder.argtypes = (FPDF_ANNOTATION, c_float, c_float, c_float)
- FPDFAnnot_SetBorder.restype = FPDF_BOOL
- # ./fpdf_annot.h: 503
- FPDFAnnot_GetBorder = _libs['pdfium']['FPDFAnnot_GetBorder']
- FPDFAnnot_GetBorder.argtypes = (FPDF_ANNOTATION, POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFAnnot_GetBorder.restype = FPDF_BOOL
- # ./fpdf_annot.h: 527
- FPDFAnnot_GetFormAdditionalActionJavaScript = _libs['pdfium']['FPDFAnnot_GetFormAdditionalActionJavaScript']
- FPDFAnnot_GetFormAdditionalActionJavaScript.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, c_int, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetFormAdditionalActionJavaScript.restype = c_ulong
- # ./fpdf_annot.h: 540
- FPDFAnnot_HasKey = _libs['pdfium']['FPDFAnnot_HasKey']
- FPDFAnnot_HasKey.argtypes = (FPDF_ANNOTATION, FPDF_BYTESTRING)
- FPDFAnnot_HasKey.restype = FPDF_BOOL
- # ./fpdf_annot.h: 551
- FPDFAnnot_GetValueType = _libs['pdfium']['FPDFAnnot_GetValueType']
- FPDFAnnot_GetValueType.argtypes = (FPDF_ANNOTATION, FPDF_BYTESTRING)
- FPDFAnnot_GetValueType.restype = FPDF_OBJECT_TYPE
- # ./fpdf_annot.h: 564
- FPDFAnnot_SetStringValue = _libs['pdfium']['FPDFAnnot_SetStringValue']
- FPDFAnnot_SetStringValue.argtypes = (FPDF_ANNOTATION, FPDF_BYTESTRING, FPDF_WIDESTRING)
- FPDFAnnot_SetStringValue.restype = FPDF_BOOL
- # ./fpdf_annot.h: 584
- FPDFAnnot_GetStringValue = _libs['pdfium']['FPDFAnnot_GetStringValue']
- FPDFAnnot_GetStringValue.argtypes = (FPDF_ANNOTATION, FPDF_BYTESTRING, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetStringValue.restype = c_ulong
- # ./fpdf_annot.h: 601
- FPDFAnnot_GetNumberValue = _libs['pdfium']['FPDFAnnot_GetNumberValue']
- FPDFAnnot_GetNumberValue.argtypes = (FPDF_ANNOTATION, FPDF_BYTESTRING, POINTER(c_float))
- FPDFAnnot_GetNumberValue.restype = FPDF_BOOL
- # ./fpdf_annot.h: 618
- FPDFAnnot_SetAP = _libs['pdfium']['FPDFAnnot_SetAP']
- FPDFAnnot_SetAP.argtypes = (FPDF_ANNOTATION, FPDF_ANNOT_APPEARANCEMODE, FPDF_WIDESTRING)
- FPDFAnnot_SetAP.restype = FPDF_BOOL
- # ./fpdf_annot.h: 640
- FPDFAnnot_GetAP = _libs['pdfium']['FPDFAnnot_GetAP']
- FPDFAnnot_GetAP.argtypes = (FPDF_ANNOTATION, FPDF_ANNOT_APPEARANCEMODE, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetAP.restype = c_ulong
- # ./fpdf_annot.h: 656
- FPDFAnnot_GetLinkedAnnot = _libs['pdfium']['FPDFAnnot_GetLinkedAnnot']
- FPDFAnnot_GetLinkedAnnot.argtypes = (FPDF_ANNOTATION, FPDF_BYTESTRING)
- FPDFAnnot_GetLinkedAnnot.restype = FPDF_ANNOTATION
- # ./fpdf_annot.h: 664
- FPDFAnnot_GetFlags = _libs['pdfium']['FPDFAnnot_GetFlags']
- FPDFAnnot_GetFlags.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_GetFlags.restype = c_int
- # ./fpdf_annot.h: 673
- FPDFAnnot_SetFlags = _libs['pdfium']['FPDFAnnot_SetFlags']
- FPDFAnnot_SetFlags.argtypes = (FPDF_ANNOTATION, c_int)
- FPDFAnnot_SetFlags.restype = FPDF_BOOL
- # ./fpdf_annot.h: 685
- FPDFAnnot_GetFormFieldFlags = _libs['pdfium']['FPDFAnnot_GetFormFieldFlags']
- FPDFAnnot_GetFormFieldFlags.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FPDFAnnot_GetFormFieldFlags.restype = c_int
- # ./fpdf_annot.h: 698
- FPDFAnnot_SetFormFieldFlags = _libs['pdfium']['FPDFAnnot_SetFormFieldFlags']
- FPDFAnnot_SetFormFieldFlags.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, c_int)
- FPDFAnnot_SetFormFieldFlags.restype = FPDF_BOOL
- # ./fpdf_annot.h: 716
- FPDFAnnot_GetFormFieldAtPoint = _libs['pdfium']['FPDFAnnot_GetFormFieldAtPoint']
- FPDFAnnot_GetFormFieldAtPoint.argtypes = (FPDF_FORMHANDLE, FPDF_PAGE, POINTER(FS_POINTF))
- FPDFAnnot_GetFormFieldAtPoint.restype = FPDF_ANNOTATION
- # ./fpdf_annot.h: 734
- FPDFAnnot_GetFormFieldName = _libs['pdfium']['FPDFAnnot_GetFormFieldName']
- FPDFAnnot_GetFormFieldName.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetFormFieldName.restype = c_ulong
- # ./fpdf_annot.h: 754
- FPDFAnnot_GetFormFieldAlternateName = _libs['pdfium']['FPDFAnnot_GetFormFieldAlternateName']
- FPDFAnnot_GetFormFieldAlternateName.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetFormFieldAlternateName.restype = c_ulong
- # ./fpdf_annot.h: 770
- FPDFAnnot_GetFormFieldType = _libs['pdfium']['FPDFAnnot_GetFormFieldType']
- FPDFAnnot_GetFormFieldType.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FPDFAnnot_GetFormFieldType.restype = c_int
- # ./fpdf_annot.h: 786
- FPDFAnnot_GetFormFieldValue = _libs['pdfium']['FPDFAnnot_GetFormFieldValue']
- FPDFAnnot_GetFormFieldValue.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetFormFieldValue.restype = c_ulong
- # ./fpdf_annot.h: 801
- FPDFAnnot_GetOptionCount = _libs['pdfium']['FPDFAnnot_GetOptionCount']
- FPDFAnnot_GetOptionCount.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FPDFAnnot_GetOptionCount.restype = c_int
- # ./fpdf_annot.h: 823
- FPDFAnnot_GetOptionLabel = _libs['pdfium']['FPDFAnnot_GetOptionLabel']
- FPDFAnnot_GetOptionLabel.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, c_int, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetOptionLabel.restype = c_ulong
- # ./fpdf_annot.h: 841
- FPDFAnnot_IsOptionSelected = _libs['pdfium']['FPDFAnnot_IsOptionSelected']
- FPDFAnnot_IsOptionSelected.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, c_int)
- FPDFAnnot_IsOptionSelected.restype = FPDF_BOOL
- # ./fpdf_annot.h: 858
- FPDFAnnot_GetFontSize = _libs['pdfium']['FPDFAnnot_GetFontSize']
- FPDFAnnot_GetFontSize.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, POINTER(c_float))
- FPDFAnnot_GetFontSize.restype = FPDF_BOOL
- # ./fpdf_annot.h: 877
- FPDFAnnot_SetFontColor = _libs['pdfium']['FPDFAnnot_SetFontColor']
- FPDFAnnot_SetFontColor.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, c_uint, c_uint, c_uint)
- FPDFAnnot_SetFontColor.restype = FPDF_BOOL
- # ./fpdf_annot.h: 894
- FPDFAnnot_GetFontColor = _libs['pdfium']['FPDFAnnot_GetFontColor']
- FPDFAnnot_GetFontColor.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, POINTER(c_uint), POINTER(c_uint), POINTER(c_uint))
- FPDFAnnot_GetFontColor.restype = FPDF_BOOL
- # ./fpdf_annot.h: 909
- FPDFAnnot_IsChecked = _libs['pdfium']['FPDFAnnot_IsChecked']
- FPDFAnnot_IsChecked.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FPDFAnnot_IsChecked.restype = FPDF_BOOL
- # ./fpdf_annot.h: 924
- FPDFAnnot_SetFocusableSubtypes = _libs['pdfium']['FPDFAnnot_SetFocusableSubtypes']
- FPDFAnnot_SetFocusableSubtypes.argtypes = (FPDF_FORMHANDLE, POINTER(FPDF_ANNOTATION_SUBTYPE), c_size_t)
- FPDFAnnot_SetFocusableSubtypes.restype = FPDF_BOOL
- # ./fpdf_annot.h: 937
- FPDFAnnot_GetFocusableSubtypesCount = _libs['pdfium']['FPDFAnnot_GetFocusableSubtypesCount']
- FPDFAnnot_GetFocusableSubtypesCount.argtypes = (FPDF_FORMHANDLE, )
- FPDFAnnot_GetFocusableSubtypesCount.restype = c_int
- # ./fpdf_annot.h: 953
- FPDFAnnot_GetFocusableSubtypes = _libs['pdfium']['FPDFAnnot_GetFocusableSubtypes']
- FPDFAnnot_GetFocusableSubtypes.argtypes = (FPDF_FORMHANDLE, POINTER(FPDF_ANNOTATION_SUBTYPE), c_size_t)
- FPDFAnnot_GetFocusableSubtypes.restype = FPDF_BOOL
- # ./fpdf_annot.h: 964
- FPDFAnnot_GetLink = _libs['pdfium']['FPDFAnnot_GetLink']
- FPDFAnnot_GetLink.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_GetLink.restype = FPDF_LINK
- # ./fpdf_annot.h: 978
- FPDFAnnot_GetFormControlCount = _libs['pdfium']['FPDFAnnot_GetFormControlCount']
- FPDFAnnot_GetFormControlCount.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FPDFAnnot_GetFormControlCount.restype = c_int
- # ./fpdf_annot.h: 992
- FPDFAnnot_GetFormControlIndex = _libs['pdfium']['FPDFAnnot_GetFormControlIndex']
- FPDFAnnot_GetFormControlIndex.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION)
- FPDFAnnot_GetFormControlIndex.restype = c_int
- # ./fpdf_annot.h: 1009
- FPDFAnnot_GetFormFieldExportValue = _libs['pdfium']['FPDFAnnot_GetFormFieldExportValue']
- FPDFAnnot_GetFormFieldExportValue.argtypes = (FPDF_FORMHANDLE, FPDF_ANNOTATION, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAnnot_GetFormFieldExportValue.restype = c_ulong
- # ./fpdf_annot.h: 1021
- FPDFAnnot_SetURI = _libs['pdfium']['FPDFAnnot_SetURI']
- FPDFAnnot_SetURI.argtypes = (FPDF_ANNOTATION, POINTER(c_char))
- FPDFAnnot_SetURI.restype = FPDF_BOOL
- # ./fpdf_annot.h: 1031
- FPDFAnnot_GetFileAttachment = _libs['pdfium']['FPDFAnnot_GetFileAttachment']
- FPDFAnnot_GetFileAttachment.argtypes = (FPDF_ANNOTATION, )
- FPDFAnnot_GetFileAttachment.restype = FPDF_ATTACHMENT
- # ./fpdf_annot.h: 1041
- FPDFAnnot_AddFileAttachment = _libs['pdfium']['FPDFAnnot_AddFileAttachment']
- FPDFAnnot_AddFileAttachment.argtypes = (FPDF_ANNOTATION, FPDF_WIDESTRING)
- FPDFAnnot_AddFileAttachment.restype = FPDF_ATTACHMENT
- # ./fpdf_attachment.h: 22
- FPDFDoc_GetAttachmentCount = _libs['pdfium']['FPDFDoc_GetAttachmentCount']
- FPDFDoc_GetAttachmentCount.argtypes = (FPDF_DOCUMENT, )
- FPDFDoc_GetAttachmentCount.restype = c_int
- # ./fpdf_attachment.h: 35
- FPDFDoc_AddAttachment = _libs['pdfium']['FPDFDoc_AddAttachment']
- FPDFDoc_AddAttachment.argtypes = (FPDF_DOCUMENT, FPDF_WIDESTRING)
- FPDFDoc_AddAttachment.restype = FPDF_ATTACHMENT
- # ./fpdf_attachment.h: 46
- FPDFDoc_GetAttachment = _libs['pdfium']['FPDFDoc_GetAttachment']
- FPDFDoc_GetAttachment.argtypes = (FPDF_DOCUMENT, c_int)
- FPDFDoc_GetAttachment.restype = FPDF_ATTACHMENT
- # ./fpdf_attachment.h: 59
- FPDFDoc_DeleteAttachment = _libs['pdfium']['FPDFDoc_DeleteAttachment']
- FPDFDoc_DeleteAttachment.argtypes = (FPDF_DOCUMENT, c_int)
- FPDFDoc_DeleteAttachment.restype = FPDF_BOOL
- # ./fpdf_attachment.h: 72
- FPDFAttachment_GetName = _libs['pdfium']['FPDFAttachment_GetName']
- FPDFAttachment_GetName.argtypes = (FPDF_ATTACHMENT, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAttachment_GetName.restype = c_ulong
- # ./fpdf_attachment.h: 84
- FPDFAttachment_HasKey = _libs['pdfium']['FPDFAttachment_HasKey']
- FPDFAttachment_HasKey.argtypes = (FPDF_ATTACHMENT, FPDF_BYTESTRING)
- FPDFAttachment_HasKey.restype = FPDF_BOOL
- # ./fpdf_attachment.h: 95
- FPDFAttachment_GetValueType = _libs['pdfium']['FPDFAttachment_GetValueType']
- FPDFAttachment_GetValueType.argtypes = (FPDF_ATTACHMENT, FPDF_BYTESTRING)
- FPDFAttachment_GetValueType.restype = FPDF_OBJECT_TYPE
- # ./fpdf_attachment.h: 108
- FPDFAttachment_SetStringValue = _libs['pdfium']['FPDFAttachment_SetStringValue']
- FPDFAttachment_SetStringValue.argtypes = (FPDF_ATTACHMENT, FPDF_BYTESTRING, FPDF_WIDESTRING)
- FPDFAttachment_SetStringValue.restype = FPDF_BOOL
- # ./fpdf_attachment.h: 129
- FPDFAttachment_GetStringValue = _libs['pdfium']['FPDFAttachment_GetStringValue']
- FPDFAttachment_GetStringValue.argtypes = (FPDF_ATTACHMENT, FPDF_BYTESTRING, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAttachment_GetStringValue.restype = c_ulong
- # ./fpdf_attachment.h: 146
- FPDFAttachment_SetFile = _libs['pdfium']['FPDFAttachment_SetFile']
- FPDFAttachment_SetFile.argtypes = (FPDF_ATTACHMENT, FPDF_DOCUMENT, POINTER(None), c_ulong)
- FPDFAttachment_SetFile.restype = FPDF_BOOL
- # ./fpdf_attachment.h: 170
- FPDFAttachment_GetFile = _libs['pdfium']['FPDFAttachment_GetFile']
- FPDFAttachment_GetFile.argtypes = (FPDF_ATTACHMENT, POINTER(None), c_ulong, POINTER(c_ulong))
- FPDFAttachment_GetFile.restype = FPDF_BOOL
- # ./fpdf_attachment.h: 188
- FPDFAttachment_GetSubtype = _libs['pdfium']['FPDFAttachment_GetSubtype']
- FPDFAttachment_GetSubtype.argtypes = (FPDF_ATTACHMENT, POINTER(FPDF_WCHAR), c_ulong)
- FPDFAttachment_GetSubtype.restype = c_ulong
- # ./fpdf_catalog.h: 26
- FPDFCatalog_IsTagged = _libs['pdfium']['FPDFCatalog_IsTagged']
- FPDFCatalog_IsTagged.argtypes = (FPDF_DOCUMENT, )
- FPDFCatalog_IsTagged.restype = FPDF_BOOL
- # ./fpdf_catalog.h: 36
- FPDFCatalog_SetLanguage = _libs['pdfium']['FPDFCatalog_SetLanguage']
- FPDFCatalog_SetLanguage.argtypes = (FPDF_DOCUMENT, FPDF_BYTESTRING)
- FPDFCatalog_SetLanguage.restype = FPDF_BOOL
- # ./fpdf_dataavail.h: 23
- class struct__FX_FILEAVAIL (Structure):
- __slots__ = ('version', 'IsDataAvail')
- struct__FX_FILEAVAIL._fields_ = (
- ('version', c_int),
- ('IsDataAvail', CFUNCTYPE(UNCHECKED(FPDF_BOOL), POINTER(struct__FX_FILEAVAIL), c_size_t, c_size_t)),
- )
- # ./fpdf_dataavail.h: 52
- FX_FILEAVAIL = struct__FX_FILEAVAIL
- # ./fpdf_dataavail.h: 62
- FPDFAvail_Create = _libs['pdfium']['FPDFAvail_Create']
- FPDFAvail_Create.argtypes = (POINTER(FX_FILEAVAIL), POINTER(FPDF_FILEACCESS))
- FPDFAvail_Create.restype = FPDF_AVAIL
- # ./fpdf_dataavail.h: 68
- FPDFAvail_Destroy = _libs['pdfium']['FPDFAvail_Destroy']
- FPDFAvail_Destroy.argtypes = (FPDF_AVAIL, )
- FPDFAvail_Destroy.restype = None
- # ./fpdf_dataavail.h: 71
- class struct__FX_DOWNLOADHINTS (Structure):
- __slots__ = ('version', 'AddSegment')
- struct__FX_DOWNLOADHINTS._fields_ = (
- ('version', c_int),
- ('AddSegment', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FX_DOWNLOADHINTS), c_size_t, c_size_t)),
- )
- # ./fpdf_dataavail.h: 90
- FX_DOWNLOADHINTS = struct__FX_DOWNLOADHINTS
- # ./fpdf_dataavail.h: 109
- FPDFAvail_IsDocAvail = _libs['pdfium']['FPDFAvail_IsDocAvail']
- FPDFAvail_IsDocAvail.argtypes = (FPDF_AVAIL, POINTER(FX_DOWNLOADHINTS))
- FPDFAvail_IsDocAvail.restype = c_int
- # ./fpdf_dataavail.h: 124
- FPDFAvail_GetDocument = _libs['pdfium']['FPDFAvail_GetDocument']
- FPDFAvail_GetDocument.argtypes = (FPDF_AVAIL, FPDF_BYTESTRING)
- FPDFAvail_GetDocument.restype = FPDF_DOCUMENT
- # ./fpdf_dataavail.h: 135
- FPDFAvail_GetFirstPageNum = _libs['pdfium']['FPDFAvail_GetFirstPageNum']
- FPDFAvail_GetFirstPageNum.argtypes = (FPDF_DOCUMENT, )
- FPDFAvail_GetFirstPageNum.restype = c_int
- # ./fpdf_dataavail.h: 157
- FPDFAvail_IsPageAvail = _libs['pdfium']['FPDFAvail_IsPageAvail']
- FPDFAvail_IsPageAvail.argtypes = (FPDF_AVAIL, c_int, POINTER(FX_DOWNLOADHINTS))
- FPDFAvail_IsPageAvail.restype = c_int
- # ./fpdf_dataavail.h: 182
- FPDFAvail_IsFormAvail = _libs['pdfium']['FPDFAvail_IsFormAvail']
- FPDFAvail_IsFormAvail.argtypes = (FPDF_AVAIL, POINTER(FX_DOWNLOADHINTS))
- FPDFAvail_IsFormAvail.restype = c_int
- # ./fpdf_dataavail.h: 198
- FPDFAvail_IsLinearized = _libs['pdfium']['FPDFAvail_IsLinearized']
- FPDFAvail_IsLinearized.argtypes = (FPDF_AVAIL, )
- FPDFAvail_IsLinearized.restype = c_int
- # ./fpdf_doc.h: 31
- enum_anon_5 = c_int
- # ./fpdf_doc.h: 31
- FILEIDTYPE_PERMANENT = 0
- # ./fpdf_doc.h: 31
- FILEIDTYPE_CHANGING = 1
- # ./fpdf_doc.h: 31
- FPDF_FILEIDTYPE = enum_anon_5
- # ./fpdf_doc.h: 59
- FPDFBookmark_GetFirstChild = _libs['pdfium']['FPDFBookmark_GetFirstChild']
- FPDFBookmark_GetFirstChild.argtypes = (FPDF_DOCUMENT, FPDF_BOOKMARK)
- FPDFBookmark_GetFirstChild.restype = FPDF_BOOKMARK
- # ./fpdf_doc.h: 72
- FPDFBookmark_GetNextSibling = _libs['pdfium']['FPDFBookmark_GetNextSibling']
- FPDFBookmark_GetNextSibling.argtypes = (FPDF_DOCUMENT, FPDF_BOOKMARK)
- FPDFBookmark_GetNextSibling.restype = FPDF_BOOKMARK
- # ./fpdf_doc.h: 88
- FPDFBookmark_GetTitle = _libs['pdfium']['FPDFBookmark_GetTitle']
- FPDFBookmark_GetTitle.argtypes = (FPDF_BOOKMARK, POINTER(None), c_ulong)
- FPDFBookmark_GetTitle.restype = c_ulong
- # ./fpdf_doc.h: 102
- FPDFBookmark_GetCount = _libs['pdfium']['FPDFBookmark_GetCount']
- FPDFBookmark_GetCount.argtypes = (FPDF_BOOKMARK, )
- FPDFBookmark_GetCount.restype = c_int
- # ./fpdf_doc.h: 114
- FPDFBookmark_Find = _libs['pdfium']['FPDFBookmark_Find']
- FPDFBookmark_Find.argtypes = (FPDF_DOCUMENT, FPDF_WIDESTRING)
- FPDFBookmark_Find.restype = FPDF_BOOKMARK
- # ./fpdf_doc.h: 124
- FPDFBookmark_GetDest = _libs['pdfium']['FPDFBookmark_GetDest']
- FPDFBookmark_GetDest.argtypes = (FPDF_DOCUMENT, FPDF_BOOKMARK)
- FPDFBookmark_GetDest.restype = FPDF_DEST
- # ./fpdf_doc.h: 137
- FPDFBookmark_GetAction = _libs['pdfium']['FPDFBookmark_GetAction']
- FPDFBookmark_GetAction.argtypes = (FPDF_BOOKMARK, )
- FPDFBookmark_GetAction.restype = FPDF_ACTION
- # ./fpdf_doc.h: 149
- FPDFAction_GetType = _libs['pdfium']['FPDFAction_GetType']
- FPDFAction_GetType.argtypes = (FPDF_ACTION, )
- FPDFAction_GetType.restype = c_ulong
- # ./fpdf_doc.h: 163
- FPDFAction_GetDest = _libs['pdfium']['FPDFAction_GetDest']
- FPDFAction_GetDest.argtypes = (FPDF_DOCUMENT, FPDF_ACTION)
- FPDFAction_GetDest.restype = FPDF_DEST
- # ./fpdf_doc.h: 181
- FPDFAction_GetFilePath = _libs['pdfium']['FPDFAction_GetFilePath']
- FPDFAction_GetFilePath.argtypes = (FPDF_ACTION, POINTER(None), c_ulong)
- FPDFAction_GetFilePath.restype = c_ulong
- # ./fpdf_doc.h: 207
- FPDFAction_GetURIPath = _libs['pdfium']['FPDFAction_GetURIPath']
- FPDFAction_GetURIPath.argtypes = (FPDF_DOCUMENT, FPDF_ACTION, POINTER(None), c_ulong)
- FPDFAction_GetURIPath.restype = c_ulong
- # ./fpdf_doc.h: 218
- FPDFDest_GetDestPageIndex = _libs['pdfium']['FPDFDest_GetDestPageIndex']
- FPDFDest_GetDestPageIndex.argtypes = (FPDF_DOCUMENT, FPDF_DEST)
- FPDFDest_GetDestPageIndex.restype = c_int
- # ./fpdf_doc.h: 231
- FPDFDest_GetView = _libs['pdfium']['FPDFDest_GetView']
- FPDFDest_GetView.argtypes = (FPDF_DEST, POINTER(c_ulong), POINTER(FS_FLOAT))
- FPDFDest_GetView.restype = c_ulong
- # ./fpdf_doc.h: 248
- FPDFDest_GetLocationInPage = _libs['pdfium']['FPDFDest_GetLocationInPage']
- FPDFDest_GetLocationInPage.argtypes = (FPDF_DEST, POINTER(FPDF_BOOL), POINTER(FPDF_BOOL), POINTER(FPDF_BOOL), POINTER(FS_FLOAT), POINTER(FS_FLOAT), POINTER(FS_FLOAT))
- FPDFDest_GetLocationInPage.restype = FPDF_BOOL
- # ./fpdf_doc.h: 266
- FPDFLink_GetLinkAtPoint = _libs['pdfium']['FPDFLink_GetLinkAtPoint']
- FPDFLink_GetLinkAtPoint.argtypes = (FPDF_PAGE, c_double, c_double)
- FPDFLink_GetLinkAtPoint.restype = FPDF_LINK
- # ./fpdf_doc.h: 281
- FPDFLink_GetLinkZOrderAtPoint = _libs['pdfium']['FPDFLink_GetLinkZOrderAtPoint']
- FPDFLink_GetLinkZOrderAtPoint.argtypes = (FPDF_PAGE, c_double, c_double)
- FPDFLink_GetLinkZOrderAtPoint.restype = c_int
- # ./fpdf_doc.h: 293
- FPDFLink_GetDest = _libs['pdfium']['FPDFLink_GetDest']
- FPDFLink_GetDest.argtypes = (FPDF_DOCUMENT, FPDF_LINK)
- FPDFLink_GetDest.restype = FPDF_DEST
- # ./fpdf_doc.h: 303
- FPDFLink_GetAction = _libs['pdfium']['FPDFLink_GetAction']
- FPDFLink_GetAction.argtypes = (FPDF_LINK, )
- FPDFLink_GetAction.restype = FPDF_ACTION
- # ./fpdf_doc.h: 313
- FPDFLink_Enumerate = _libs['pdfium']['FPDFLink_Enumerate']
- FPDFLink_Enumerate.argtypes = (FPDF_PAGE, POINTER(c_int), POINTER(FPDF_LINK))
- FPDFLink_Enumerate.restype = FPDF_BOOL
- # ./fpdf_doc.h: 326
- FPDFLink_GetAnnot = _libs['pdfium']['FPDFLink_GetAnnot']
- FPDFLink_GetAnnot.argtypes = (FPDF_PAGE, FPDF_LINK)
- FPDFLink_GetAnnot.restype = FPDF_ANNOTATION
- # ./fpdf_doc.h: 334
- FPDFLink_GetAnnotRect = _libs['pdfium']['FPDFLink_GetAnnotRect']
- FPDFLink_GetAnnotRect.argtypes = (FPDF_LINK, POINTER(FS_RECTF))
- FPDFLink_GetAnnotRect.restype = FPDF_BOOL
- # ./fpdf_doc.h: 342
- FPDFLink_CountQuadPoints = _libs['pdfium']['FPDFLink_CountQuadPoints']
- FPDFLink_CountQuadPoints.argtypes = (FPDF_LINK, )
- FPDFLink_CountQuadPoints.restype = c_int
- # ./fpdf_doc.h: 352
- FPDFLink_GetQuadPoints = _libs['pdfium']['FPDFLink_GetQuadPoints']
- FPDFLink_GetQuadPoints.argtypes = (FPDF_LINK, c_int, POINTER(FS_QUADPOINTSF))
- FPDFLink_GetQuadPoints.restype = FPDF_BOOL
- # ./fpdf_doc.h: 367
- FPDF_GetPageAAction = _libs['pdfium']['FPDF_GetPageAAction']
- FPDF_GetPageAAction.argtypes = (FPDF_PAGE, c_int)
- FPDF_GetPageAAction.restype = FPDF_ACTION
- # ./fpdf_doc.h: 385
- FPDF_GetFileIdentifier = _libs['pdfium']['FPDF_GetFileIdentifier']
- FPDF_GetFileIdentifier.argtypes = (FPDF_DOCUMENT, FPDF_FILEIDTYPE, POINTER(None), c_ulong)
- FPDF_GetFileIdentifier.restype = c_ulong
- # ./fpdf_doc.h: 411
- FPDF_GetMetaText = _libs['pdfium']['FPDF_GetMetaText']
- FPDF_GetMetaText.argtypes = (FPDF_DOCUMENT, FPDF_BYTESTRING, POINTER(None), c_ulong)
- FPDF_GetMetaText.restype = c_ulong
- # ./fpdf_doc.h: 429
- FPDF_GetPageLabel = _libs['pdfium']['FPDF_GetPageLabel']
- FPDF_GetPageLabel.argtypes = (FPDF_DOCUMENT, c_int, POINTER(None), c_ulong)
- FPDF_GetPageLabel.restype = c_ulong
- # /usr/include/x86_64-linux-gnu/bits/types.h: 38
- __uint8_t = c_ubyte
- # /usr/include/x86_64-linux-gnu/bits/types.h: 40
- __uint16_t = c_ushort
- # /usr/include/x86_64-linux-gnu/bits/types.h: 42
- __uint32_t = c_uint
- # /usr/include/x86_64-linux-gnu/bits/types.h: 160
- __time_t = c_long
- # /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: 23
- uint8_t = __uint8_t
- # /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: 24
- uint16_t = __uint16_t
- # /usr/include/x86_64-linux-gnu/bits/stdint-uintn.h: 25
- uint32_t = __uint32_t
- # ./fpdf_edit.h: 93
- class struct_FPDF_IMAGEOBJ_METADATA (Structure):
- __slots__ = ('width', 'height', 'horizontal_dpi', 'vertical_dpi', 'bits_per_pixel', 'colorspace', 'marked_content_id')
- struct_FPDF_IMAGEOBJ_METADATA._fields_ = (
- ('width', c_uint),
- ('height', c_uint),
- ('horizontal_dpi', c_float),
- ('vertical_dpi', c_float),
- ('bits_per_pixel', c_uint),
- ('colorspace', c_int),
- ('marked_content_id', c_int),
- )
- # ./fpdf_edit.h: 93
- FPDF_IMAGEOBJ_METADATA = struct_FPDF_IMAGEOBJ_METADATA
- # ./fpdf_edit.h: 102
- FPDF_CreateNewDocument = _libs['pdfium']['FPDF_CreateNewDocument']
- FPDF_CreateNewDocument.argtypes = ()
- FPDF_CreateNewDocument.restype = FPDF_DOCUMENT
- # ./fpdf_edit.h: 117
- FPDFPage_New = _libs['pdfium']['FPDFPage_New']
- FPDFPage_New.argtypes = (FPDF_DOCUMENT, c_int, c_double, c_double)
- FPDFPage_New.restype = FPDF_PAGE
- # ./fpdf_edit.h: 126
- FPDFPage_Delete = _libs['pdfium']['FPDFPage_Delete']
- FPDFPage_Delete.argtypes = (FPDF_DOCUMENT, c_int)
- FPDFPage_Delete.restype = None
- # ./fpdf_edit.h: 156
- FPDF_MovePages = _libs['pdfium']['FPDF_MovePages']
- FPDF_MovePages.argtypes = (FPDF_DOCUMENT, POINTER(c_int), c_ulong, c_int)
- FPDF_MovePages.restype = FPDF_BOOL
- # ./fpdf_edit.h: 170
- FPDFPage_GetRotation = _libs['pdfium']['FPDFPage_GetRotation']
- FPDFPage_GetRotation.argtypes = (FPDF_PAGE, )
- FPDFPage_GetRotation.restype = c_int
- # ./fpdf_edit.h: 180
- FPDFPage_SetRotation = _libs['pdfium']['FPDFPage_SetRotation']
- FPDFPage_SetRotation.argtypes = (FPDF_PAGE, c_int)
- FPDFPage_SetRotation.restype = None
- # ./fpdf_edit.h: 188
- FPDFPage_InsertObject = _libs['pdfium']['FPDFPage_InsertObject']
- FPDFPage_InsertObject.argtypes = (FPDF_PAGE, FPDF_PAGEOBJECT)
- FPDFPage_InsertObject.restype = None
- # ./fpdf_edit.h: 204
- FPDFPage_InsertObjectAtIndex = _libs['pdfium']['FPDFPage_InsertObjectAtIndex']
- FPDFPage_InsertObjectAtIndex.argtypes = (FPDF_PAGE, FPDF_PAGEOBJECT, c_size_t)
- FPDFPage_InsertObjectAtIndex.restype = FPDF_BOOL
- # ./fpdf_edit.h: 221
- FPDFPage_RemoveObject = _libs['pdfium']['FPDFPage_RemoveObject']
- FPDFPage_RemoveObject.argtypes = (FPDF_PAGE, FPDF_PAGEOBJECT)
- FPDFPage_RemoveObject.restype = FPDF_BOOL
- # ./fpdf_edit.h: 228
- FPDFPage_CountObjects = _libs['pdfium']['FPDFPage_CountObjects']
- FPDFPage_CountObjects.argtypes = (FPDF_PAGE, )
- FPDFPage_CountObjects.restype = c_int
- # ./fpdf_edit.h: 236
- FPDFPage_GetObject = _libs['pdfium']['FPDFPage_GetObject']
- FPDFPage_GetObject.argtypes = (FPDF_PAGE, c_int)
- FPDFPage_GetObject.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 244
- FPDFPage_HasTransparency = _libs['pdfium']['FPDFPage_HasTransparency']
- FPDFPage_HasTransparency.argtypes = (FPDF_PAGE, )
- FPDFPage_HasTransparency.restype = FPDF_BOOL
- # ./fpdf_edit.h: 254
- FPDFPage_GenerateContent = _libs['pdfium']['FPDFPage_GenerateContent']
- FPDFPage_GenerateContent.argtypes = (FPDF_PAGE, )
- FPDFPage_GenerateContent.restype = FPDF_BOOL
- # ./fpdf_edit.h: 263
- FPDFPageObj_Destroy = _libs['pdfium']['FPDFPageObj_Destroy']
- FPDFPageObj_Destroy.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_Destroy.restype = None
- # ./fpdf_edit.h: 271
- FPDFPageObj_HasTransparency = _libs['pdfium']['FPDFPageObj_HasTransparency']
- FPDFPageObj_HasTransparency.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_HasTransparency.restype = FPDF_BOOL
- # ./fpdf_edit.h: 279
- FPDFPageObj_GetType = _libs['pdfium']['FPDFPageObj_GetType']
- FPDFPageObj_GetType.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_GetType.restype = c_int
- # ./fpdf_edit.h: 295
- FPDFPageObj_GetIsActive = _libs['pdfium']['FPDFPageObj_GetIsActive']
- FPDFPageObj_GetIsActive.argtypes = (FPDF_PAGEOBJECT, POINTER(FPDF_BOOL))
- FPDFPageObj_GetIsActive.restype = FPDF_BOOL
- # ./fpdf_edit.h: 311
- FPDFPageObj_SetIsActive = _libs['pdfium']['FPDFPageObj_SetIsActive']
- FPDFPageObj_SetIsActive.argtypes = (FPDF_PAGEOBJECT, FPDF_BOOL)
- FPDFPageObj_SetIsActive.restype = FPDF_BOOL
- # ./fpdf_edit.h: 328
- FPDFPageObj_Transform = _libs['pdfium']['FPDFPageObj_Transform']
- FPDFPageObj_Transform.argtypes = (FPDF_PAGEOBJECT, c_double, c_double, c_double, c_double, c_double, c_double)
- FPDFPageObj_Transform.restype = None
- # ./fpdf_edit.h: 349
- FPDFPageObj_TransformF = _libs['pdfium']['FPDFPageObj_TransformF']
- FPDFPageObj_TransformF.argtypes = (FPDF_PAGEOBJECT, POINTER(FS_MATRIX))
- FPDFPageObj_TransformF.restype = FPDF_BOOL
- # ./fpdf_edit.h: 369
- FPDFPageObj_GetMatrix = _libs['pdfium']['FPDFPageObj_GetMatrix']
- FPDFPageObj_GetMatrix.argtypes = (FPDF_PAGEOBJECT, POINTER(FS_MATRIX))
- FPDFPageObj_GetMatrix.restype = FPDF_BOOL
- # ./fpdf_edit.h: 384
- FPDFPageObj_SetMatrix = _libs['pdfium']['FPDFPageObj_SetMatrix']
- FPDFPageObj_SetMatrix.argtypes = (FPDF_PAGEOBJECT, POINTER(FS_MATRIX))
- FPDFPageObj_SetMatrix.restype = FPDF_BOOL
- # ./fpdf_edit.h: 400
- FPDFPage_TransformAnnots = _libs['pdfium']['FPDFPage_TransformAnnots']
- FPDFPage_TransformAnnots.argtypes = (FPDF_PAGE, c_double, c_double, c_double, c_double, c_double, c_double)
- FPDFPage_TransformAnnots.restype = None
- # ./fpdf_edit.h: 414
- FPDFPageObj_NewImageObj = _libs['pdfium']['FPDFPageObj_NewImageObj']
- FPDFPageObj_NewImageObj.argtypes = (FPDF_DOCUMENT, )
- FPDFPageObj_NewImageObj.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 423
- FPDFPageObj_GetMarkedContentID = _libs['pdfium']['FPDFPageObj_GetMarkedContentID']
- FPDFPageObj_GetMarkedContentID.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_GetMarkedContentID.restype = c_int
- # ./fpdf_edit.h: 433
- FPDFPageObj_CountMarks = _libs['pdfium']['FPDFPageObj_CountMarks']
- FPDFPageObj_CountMarks.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_CountMarks.restype = c_int
- # ./fpdf_edit.h: 446
- FPDFPageObj_GetMark = _libs['pdfium']['FPDFPageObj_GetMark']
- FPDFPageObj_GetMark.argtypes = (FPDF_PAGEOBJECT, c_ulong)
- FPDFPageObj_GetMark.restype = FPDF_PAGEOBJECTMARK
- # ./fpdf_edit.h: 459
- FPDFPageObj_AddMark = _libs['pdfium']['FPDFPageObj_AddMark']
- FPDFPageObj_AddMark.argtypes = (FPDF_PAGEOBJECT, FPDF_BYTESTRING)
- FPDFPageObj_AddMark.restype = FPDF_PAGEOBJECTMARK
- # ./fpdf_edit.h: 470
- FPDFPageObj_RemoveMark = _libs['pdfium']['FPDFPageObj_RemoveMark']
- FPDFPageObj_RemoveMark.argtypes = (FPDF_PAGEOBJECT, FPDF_PAGEOBJECTMARK)
- FPDFPageObj_RemoveMark.restype = FPDF_BOOL
- # ./fpdf_edit.h: 487
- FPDFPageObjMark_GetName = _libs['pdfium']['FPDFPageObjMark_GetName']
- FPDFPageObjMark_GetName.argtypes = (FPDF_PAGEOBJECTMARK, POINTER(FPDF_WCHAR), c_ulong, POINTER(c_ulong))
- FPDFPageObjMark_GetName.restype = FPDF_BOOL
- # ./fpdf_edit.h: 500
- FPDFPageObjMark_CountParams = _libs['pdfium']['FPDFPageObjMark_CountParams']
- FPDFPageObjMark_CountParams.argtypes = (FPDF_PAGEOBJECTMARK, )
- FPDFPageObjMark_CountParams.restype = c_int
- # ./fpdf_edit.h: 518
- FPDFPageObjMark_GetParamKey = _libs['pdfium']['FPDFPageObjMark_GetParamKey']
- FPDFPageObjMark_GetParamKey.argtypes = (FPDF_PAGEOBJECTMARK, c_ulong, POINTER(FPDF_WCHAR), c_ulong, POINTER(c_ulong))
- FPDFPageObjMark_GetParamKey.restype = FPDF_BOOL
- # ./fpdf_edit.h: 532
- FPDFPageObjMark_GetParamValueType = _libs['pdfium']['FPDFPageObjMark_GetParamValueType']
- FPDFPageObjMark_GetParamValueType.argtypes = (FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING)
- FPDFPageObjMark_GetParamValueType.restype = FPDF_OBJECT_TYPE
- # ./fpdf_edit.h: 547
- FPDFPageObjMark_GetParamIntValue = _libs['pdfium']['FPDFPageObjMark_GetParamIntValue']
- FPDFPageObjMark_GetParamIntValue.argtypes = (FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, POINTER(c_int))
- FPDFPageObjMark_GetParamIntValue.restype = FPDF_BOOL
- # ./fpdf_edit.h: 563
- FPDFPageObjMark_GetParamFloatValue = _libs['pdfium']['FPDFPageObjMark_GetParamFloatValue']
- FPDFPageObjMark_GetParamFloatValue.argtypes = (FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, POINTER(c_float))
- FPDFPageObjMark_GetParamFloatValue.restype = FPDF_BOOL
- # ./fpdf_edit.h: 583
- FPDFPageObjMark_GetParamStringValue = _libs['pdfium']['FPDFPageObjMark_GetParamStringValue']
- FPDFPageObjMark_GetParamStringValue.argtypes = (FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, POINTER(FPDF_WCHAR), c_ulong, POINTER(c_ulong))
- FPDFPageObjMark_GetParamStringValue.restype = FPDF_BOOL
- # ./fpdf_edit.h: 605
- FPDFPageObjMark_GetParamBlobValue = _libs['pdfium']['FPDFPageObjMark_GetParamBlobValue']
- FPDFPageObjMark_GetParamBlobValue.argtypes = (FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, POINTER(c_ubyte), c_ulong, POINTER(c_ulong))
- FPDFPageObjMark_GetParamBlobValue.restype = FPDF_BOOL
- # ./fpdf_edit.h: 624
- FPDFPageObjMark_SetIntParam = _libs['pdfium']['FPDFPageObjMark_SetIntParam']
- FPDFPageObjMark_SetIntParam.argtypes = (FPDF_DOCUMENT, FPDF_PAGEOBJECT, FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, c_int)
- FPDFPageObjMark_SetIntParam.restype = FPDF_BOOL
- # ./fpdf_edit.h: 643
- FPDFPageObjMark_SetFloatParam = _libs['pdfium']['FPDFPageObjMark_SetFloatParam']
- FPDFPageObjMark_SetFloatParam.argtypes = (FPDF_DOCUMENT, FPDF_PAGEOBJECT, FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, c_float)
- FPDFPageObjMark_SetFloatParam.restype = FPDF_BOOL
- # ./fpdf_edit.h: 662
- FPDFPageObjMark_SetStringParam = _libs['pdfium']['FPDFPageObjMark_SetStringParam']
- FPDFPageObjMark_SetStringParam.argtypes = (FPDF_DOCUMENT, FPDF_PAGEOBJECT, FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, FPDF_BYTESTRING)
- FPDFPageObjMark_SetStringParam.restype = FPDF_BOOL
- # ./fpdf_edit.h: 682
- FPDFPageObjMark_SetBlobParam = _libs['pdfium']['FPDFPageObjMark_SetBlobParam']
- FPDFPageObjMark_SetBlobParam.argtypes = (FPDF_DOCUMENT, FPDF_PAGEOBJECT, FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING, POINTER(c_ubyte), c_ulong)
- FPDFPageObjMark_SetBlobParam.restype = FPDF_BOOL
- # ./fpdf_edit.h: 698
- FPDFPageObjMark_RemoveParam = _libs['pdfium']['FPDFPageObjMark_RemoveParam']
- FPDFPageObjMark_RemoveParam.argtypes = (FPDF_PAGEOBJECT, FPDF_PAGEOBJECTMARK, FPDF_BYTESTRING)
- FPDFPageObjMark_RemoveParam.restype = FPDF_BOOL
- # ./fpdf_edit.h: 717
- FPDFImageObj_LoadJpegFile = _libs['pdfium']['FPDFImageObj_LoadJpegFile']
- FPDFImageObj_LoadJpegFile.argtypes = (POINTER(FPDF_PAGE), c_int, FPDF_PAGEOBJECT, POINTER(FPDF_FILEACCESS))
- FPDFImageObj_LoadJpegFile.restype = FPDF_BOOL
- # ./fpdf_edit.h: 739
- FPDFImageObj_LoadJpegFileInline = _libs['pdfium']['FPDFImageObj_LoadJpegFileInline']
- FPDFImageObj_LoadJpegFileInline.argtypes = (POINTER(FPDF_PAGE), c_int, FPDF_PAGEOBJECT, POINTER(FPDF_FILEACCESS))
- FPDFImageObj_LoadJpegFileInline.restype = FPDF_BOOL
- # ./fpdf_edit.h: 763
- FPDFImageObj_SetMatrix = _libs['pdfium']['FPDFImageObj_SetMatrix']
- FPDFImageObj_SetMatrix.argtypes = (FPDF_PAGEOBJECT, c_double, c_double, c_double, c_double, c_double, c_double)
- FPDFImageObj_SetMatrix.restype = FPDF_BOOL
- # ./fpdf_edit.h: 780
- FPDFImageObj_SetBitmap = _libs['pdfium']['FPDFImageObj_SetBitmap']
- FPDFImageObj_SetBitmap.argtypes = (POINTER(FPDF_PAGE), c_int, FPDF_PAGEOBJECT, FPDF_BITMAP)
- FPDFImageObj_SetBitmap.restype = FPDF_BOOL
- # ./fpdf_edit.h: 795
- FPDFImageObj_GetBitmap = _libs['pdfium']['FPDFImageObj_GetBitmap']
- FPDFImageObj_GetBitmap.argtypes = (FPDF_PAGEOBJECT, )
- FPDFImageObj_GetBitmap.restype = FPDF_BITMAP
- # ./fpdf_edit.h: 811
- FPDFImageObj_GetRenderedBitmap = _libs['pdfium']['FPDFImageObj_GetRenderedBitmap']
- FPDFImageObj_GetRenderedBitmap.argtypes = (FPDF_DOCUMENT, FPDF_PAGE, FPDF_PAGEOBJECT)
- FPDFImageObj_GetRenderedBitmap.restype = FPDF_BITMAP
- # ./fpdf_edit.h: 826
- FPDFImageObj_GetImageDataDecoded = _libs['pdfium']['FPDFImageObj_GetImageDataDecoded']
- FPDFImageObj_GetImageDataDecoded.argtypes = (FPDF_PAGEOBJECT, POINTER(None), c_ulong)
- FPDFImageObj_GetImageDataDecoded.restype = c_ulong
- # ./fpdf_edit.h: 840
- FPDFImageObj_GetImageDataRaw = _libs['pdfium']['FPDFImageObj_GetImageDataRaw']
- FPDFImageObj_GetImageDataRaw.argtypes = (FPDF_PAGEOBJECT, POINTER(None), c_ulong)
- FPDFImageObj_GetImageDataRaw.restype = c_ulong
- # ./fpdf_edit.h: 850
- FPDFImageObj_GetImageFilterCount = _libs['pdfium']['FPDFImageObj_GetImageFilterCount']
- FPDFImageObj_GetImageFilterCount.argtypes = (FPDF_PAGEOBJECT, )
- FPDFImageObj_GetImageFilterCount.restype = c_int
- # ./fpdf_edit.h: 864
- FPDFImageObj_GetImageFilter = _libs['pdfium']['FPDFImageObj_GetImageFilter']
- FPDFImageObj_GetImageFilter.argtypes = (FPDF_PAGEOBJECT, c_int, POINTER(None), c_ulong)
- FPDFImageObj_GetImageFilter.restype = c_ulong
- # ./fpdf_edit.h: 881
- FPDFImageObj_GetImageMetadata = _libs['pdfium']['FPDFImageObj_GetImageMetadata']
- FPDFImageObj_GetImageMetadata.argtypes = (FPDF_PAGEOBJECT, FPDF_PAGE, POINTER(FPDF_IMAGEOBJ_METADATA))
- FPDFImageObj_GetImageMetadata.restype = FPDF_BOOL
- # ./fpdf_edit.h: 894
- FPDFImageObj_GetImagePixelSize = _libs['pdfium']['FPDFImageObj_GetImagePixelSize']
- FPDFImageObj_GetImagePixelSize.argtypes = (FPDF_PAGEOBJECT, POINTER(c_uint), POINTER(c_uint))
- FPDFImageObj_GetImagePixelSize.restype = FPDF_BOOL
- # ./fpdf_edit.h: 917
- FPDFImageObj_GetIccProfileDataDecoded = _libs['pdfium']['FPDFImageObj_GetIccProfileDataDecoded']
- FPDFImageObj_GetIccProfileDataDecoded.argtypes = (FPDF_PAGEOBJECT, FPDF_PAGE, POINTER(uint8_t), c_size_t, POINTER(c_size_t))
- FPDFImageObj_GetIccProfileDataDecoded.restype = FPDF_BOOL
- # ./fpdf_edit.h: 929
- FPDFPageObj_CreateNewPath = _libs['pdfium']['FPDFPageObj_CreateNewPath']
- FPDFPageObj_CreateNewPath.argtypes = (c_float, c_float)
- FPDFPageObj_CreateNewPath.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 940
- FPDFPageObj_CreateNewRect = _libs['pdfium']['FPDFPageObj_CreateNewRect']
- FPDFPageObj_CreateNewRect.argtypes = (c_float, c_float, c_float, c_float)
- FPDFPageObj_CreateNewRect.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 955
- FPDFPageObj_GetBounds = _libs['pdfium']['FPDFPageObj_GetBounds']
- FPDFPageObj_GetBounds.argtypes = (FPDF_PAGEOBJECT, POINTER(c_float), POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFPageObj_GetBounds.restype = FPDF_BOOL
- # ./fpdf_edit.h: 977
- FPDFPageObj_GetRotatedBounds = _libs['pdfium']['FPDFPageObj_GetRotatedBounds']
- FPDFPageObj_GetRotatedBounds.argtypes = (FPDF_PAGEOBJECT, POINTER(FS_QUADPOINTSF))
- FPDFPageObj_GetRotatedBounds.restype = FPDF_BOOL
- # ./fpdf_edit.h: 989
- FPDFPageObj_SetBlendMode = _libs['pdfium']['FPDFPageObj_SetBlendMode']
- FPDFPageObj_SetBlendMode.argtypes = (FPDF_PAGEOBJECT, FPDF_BYTESTRING)
- FPDFPageObj_SetBlendMode.restype = None
- # ./fpdf_edit.h: 1002
- FPDFPageObj_SetStrokeColor = _libs['pdfium']['FPDFPageObj_SetStrokeColor']
- FPDFPageObj_SetStrokeColor.argtypes = (FPDF_PAGEOBJECT, c_uint, c_uint, c_uint, c_uint)
- FPDFPageObj_SetStrokeColor.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1018
- FPDFPageObj_GetStrokeColor = _libs['pdfium']['FPDFPageObj_GetStrokeColor']
- FPDFPageObj_GetStrokeColor.argtypes = (FPDF_PAGEOBJECT, POINTER(c_uint), POINTER(c_uint), POINTER(c_uint), POINTER(c_uint))
- FPDFPageObj_GetStrokeColor.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1031
- FPDFPageObj_SetStrokeWidth = _libs['pdfium']['FPDFPageObj_SetStrokeWidth']
- FPDFPageObj_SetStrokeWidth.argtypes = (FPDF_PAGEOBJECT, c_float)
- FPDFPageObj_SetStrokeWidth.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1040
- FPDFPageObj_GetStrokeWidth = _libs['pdfium']['FPDFPageObj_GetStrokeWidth']
- FPDFPageObj_GetStrokeWidth.argtypes = (FPDF_PAGEOBJECT, POINTER(c_float))
- FPDFPageObj_GetStrokeWidth.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1050
- FPDFPageObj_GetLineJoin = _libs['pdfium']['FPDFPageObj_GetLineJoin']
- FPDFPageObj_GetLineJoin.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_GetLineJoin.restype = c_int
- # ./fpdf_edit.h: 1060
- FPDFPageObj_SetLineJoin = _libs['pdfium']['FPDFPageObj_SetLineJoin']
- FPDFPageObj_SetLineJoin.argtypes = (FPDF_PAGEOBJECT, c_int)
- FPDFPageObj_SetLineJoin.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1070
- FPDFPageObj_GetLineCap = _libs['pdfium']['FPDFPageObj_GetLineCap']
- FPDFPageObj_GetLineCap.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_GetLineCap.restype = c_int
- # ./fpdf_edit.h: 1080
- FPDFPageObj_SetLineCap = _libs['pdfium']['FPDFPageObj_SetLineCap']
- FPDFPageObj_SetLineCap.argtypes = (FPDF_PAGEOBJECT, c_int)
- FPDFPageObj_SetLineCap.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1092
- FPDFPageObj_SetFillColor = _libs['pdfium']['FPDFPageObj_SetFillColor']
- FPDFPageObj_SetFillColor.argtypes = (FPDF_PAGEOBJECT, c_uint, c_uint, c_uint, c_uint)
- FPDFPageObj_SetFillColor.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1108
- FPDFPageObj_GetFillColor = _libs['pdfium']['FPDFPageObj_GetFillColor']
- FPDFPageObj_GetFillColor.argtypes = (FPDF_PAGEOBJECT, POINTER(c_uint), POINTER(c_uint), POINTER(c_uint), POINTER(c_uint))
- FPDFPageObj_GetFillColor.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1122
- FPDFPageObj_GetDashPhase = _libs['pdfium']['FPDFPageObj_GetDashPhase']
- FPDFPageObj_GetDashPhase.argtypes = (FPDF_PAGEOBJECT, POINTER(c_float))
- FPDFPageObj_GetDashPhase.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1132
- FPDFPageObj_SetDashPhase = _libs['pdfium']['FPDFPageObj_SetDashPhase']
- FPDFPageObj_SetDashPhase.argtypes = (FPDF_PAGEOBJECT, c_float)
- FPDFPageObj_SetDashPhase.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1141
- FPDFPageObj_GetDashCount = _libs['pdfium']['FPDFPageObj_GetDashCount']
- FPDFPageObj_GetDashCount.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_GetDashCount.restype = c_int
- # ./fpdf_edit.h: 1152
- FPDFPageObj_GetDashArray = _libs['pdfium']['FPDFPageObj_GetDashArray']
- FPDFPageObj_GetDashArray.argtypes = (FPDF_PAGEOBJECT, POINTER(c_float), c_size_t)
- FPDFPageObj_GetDashArray.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1166
- FPDFPageObj_SetDashArray = _libs['pdfium']['FPDFPageObj_SetDashArray']
- FPDFPageObj_SetDashArray.argtypes = (FPDF_PAGEOBJECT, POINTER(c_float), c_size_t, c_float)
- FPDFPageObj_SetDashArray.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1179
- FPDFPath_CountSegments = _libs['pdfium']['FPDFPath_CountSegments']
- FPDFPath_CountSegments.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPath_CountSegments.restype = c_int
- # ./fpdf_edit.h: 1188
- FPDFPath_GetPathSegment = _libs['pdfium']['FPDFPath_GetPathSegment']
- FPDFPath_GetPathSegment.argtypes = (FPDF_PAGEOBJECT, c_int)
- FPDFPath_GetPathSegment.restype = FPDF_PATHSEGMENT
- # ./fpdf_edit.h: 1198
- FPDFPathSegment_GetPoint = _libs['pdfium']['FPDFPathSegment_GetPoint']
- FPDFPathSegment_GetPoint.argtypes = (FPDF_PATHSEGMENT, POINTER(c_float), POINTER(c_float))
- FPDFPathSegment_GetPoint.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1206
- FPDFPathSegment_GetType = _libs['pdfium']['FPDFPathSegment_GetType']
- FPDFPathSegment_GetType.argtypes = (FPDF_PATHSEGMENT, )
- FPDFPathSegment_GetType.restype = c_int
- # ./fpdf_edit.h: 1214
- FPDFPathSegment_GetClose = _libs['pdfium']['FPDFPathSegment_GetClose']
- FPDFPathSegment_GetClose.argtypes = (FPDF_PATHSEGMENT, )
- FPDFPathSegment_GetClose.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1226
- FPDFPath_MoveTo = _libs['pdfium']['FPDFPath_MoveTo']
- FPDFPath_MoveTo.argtypes = (FPDF_PAGEOBJECT, c_float, c_float)
- FPDFPath_MoveTo.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1239
- FPDFPath_LineTo = _libs['pdfium']['FPDFPath_LineTo']
- FPDFPath_LineTo.argtypes = (FPDF_PAGEOBJECT, c_float, c_float)
- FPDFPath_LineTo.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1254
- FPDFPath_BezierTo = _libs['pdfium']['FPDFPath_BezierTo']
- FPDFPath_BezierTo.argtypes = (FPDF_PAGEOBJECT, c_float, c_float, c_float, c_float, c_float, c_float)
- FPDFPath_BezierTo.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1270
- FPDFPath_Close = _libs['pdfium']['FPDFPath_Close']
- FPDFPath_Close.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPath_Close.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1279
- FPDFPath_SetDrawMode = _libs['pdfium']['FPDFPath_SetDrawMode']
- FPDFPath_SetDrawMode.argtypes = (FPDF_PAGEOBJECT, c_int, FPDF_BOOL)
- FPDFPath_SetDrawMode.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1290
- FPDFPath_GetDrawMode = _libs['pdfium']['FPDFPath_GetDrawMode']
- FPDFPath_GetDrawMode.argtypes = (FPDF_PAGEOBJECT, POINTER(c_int), POINTER(FPDF_BOOL))
- FPDFPath_GetDrawMode.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1302
- FPDFPageObj_NewTextObj = _libs['pdfium']['FPDFPageObj_NewTextObj']
- FPDFPageObj_NewTextObj.argtypes = (FPDF_DOCUMENT, FPDF_BYTESTRING, c_float)
- FPDFPageObj_NewTextObj.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 1313
- FPDFText_SetText = _libs['pdfium']['FPDFText_SetText']
- FPDFText_SetText.argtypes = (FPDF_PAGEOBJECT, FPDF_WIDESTRING)
- FPDFText_SetText.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1325
- FPDFText_SetCharcodes = _libs['pdfium']['FPDFText_SetCharcodes']
- FPDFText_SetCharcodes.argtypes = (FPDF_PAGEOBJECT, POINTER(uint32_t), c_size_t)
- FPDFText_SetCharcodes.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1342
- FPDFText_LoadFont = _libs['pdfium']['FPDFText_LoadFont']
- FPDFText_LoadFont.argtypes = (FPDF_DOCUMENT, POINTER(uint8_t), uint32_t, c_int, FPDF_BOOL)
- FPDFText_LoadFont.restype = FPDF_FONT
- # ./fpdf_edit.h: 1360
- FPDFText_LoadStandardFont = _libs['pdfium']['FPDFText_LoadStandardFont']
- FPDFText_LoadStandardFont.argtypes = (FPDF_DOCUMENT, FPDF_BYTESTRING)
- FPDFText_LoadStandardFont.restype = FPDF_FONT
- # ./fpdf_edit.h: 1379
- FPDFText_LoadCidType2Font = _libs['pdfium']['FPDFText_LoadCidType2Font']
- FPDFText_LoadCidType2Font.argtypes = (FPDF_DOCUMENT, POINTER(uint8_t), uint32_t, FPDF_BYTESTRING, POINTER(uint8_t), uint32_t)
- FPDFText_LoadCidType2Font.restype = FPDF_FONT
- # ./fpdf_edit.h: 1394
- FPDFTextObj_GetFontSize = _libs['pdfium']['FPDFTextObj_GetFontSize']
- FPDFTextObj_GetFontSize.argtypes = (FPDF_PAGEOBJECT, POINTER(c_float))
- FPDFTextObj_GetFontSize.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1399
- FPDFFont_Close = _libs['pdfium']['FPDFFont_Close']
- FPDFFont_Close.argtypes = (FPDF_FONT, )
- FPDFFont_Close.restype = None
- # ./fpdf_edit.h: 1409
- FPDFPageObj_CreateTextObj = _libs['pdfium']['FPDFPageObj_CreateTextObj']
- FPDFPageObj_CreateTextObj.argtypes = (FPDF_DOCUMENT, FPDF_FONT, c_float)
- FPDFPageObj_CreateTextObj.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 1420
- FPDFTextObj_GetTextRenderMode = _libs['pdfium']['FPDFTextObj_GetTextRenderMode']
- FPDFTextObj_GetTextRenderMode.argtypes = (FPDF_PAGEOBJECT, )
- FPDFTextObj_GetTextRenderMode.restype = FPDF_TEXT_RENDERMODE
- # ./fpdf_edit.h: 1431
- FPDFTextObj_SetTextRenderMode = _libs['pdfium']['FPDFTextObj_SetTextRenderMode']
- FPDFTextObj_SetTextRenderMode.argtypes = (FPDF_PAGEOBJECT, FPDF_TEXT_RENDERMODE)
- FPDFTextObj_SetTextRenderMode.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1448
- FPDFTextObj_GetText = _libs['pdfium']['FPDFTextObj_GetText']
- FPDFTextObj_GetText.argtypes = (FPDF_PAGEOBJECT, FPDF_TEXTPAGE, POINTER(FPDF_WCHAR), c_ulong)
- FPDFTextObj_GetText.restype = c_ulong
- # ./fpdf_edit.h: 1467
- FPDFTextObj_GetRenderedBitmap = _libs['pdfium']['FPDFTextObj_GetRenderedBitmap']
- FPDFTextObj_GetRenderedBitmap.argtypes = (FPDF_DOCUMENT, FPDF_PAGE, FPDF_PAGEOBJECT, c_float)
- FPDFTextObj_GetRenderedBitmap.restype = FPDF_BITMAP
- # ./fpdf_edit.h: 1478
- FPDFTextObj_GetFont = _libs['pdfium']['FPDFTextObj_GetFont']
- FPDFTextObj_GetFont.argtypes = (FPDF_PAGEOBJECT, )
- FPDFTextObj_GetFont.restype = FPDF_FONT
- # ./fpdf_edit.h: 1494
- FPDFFont_GetBaseFontName = _libs['pdfium']['FPDFFont_GetBaseFontName']
- FPDFFont_GetBaseFontName.argtypes = (FPDF_FONT, POINTER(c_char), c_size_t)
- FPDFFont_GetBaseFontName.restype = c_size_t
- # ./fpdf_edit.h: 1511
- FPDFFont_GetFamilyName = _libs['pdfium']['FPDFFont_GetFamilyName']
- FPDFFont_GetFamilyName.argtypes = (FPDF_FONT, POINTER(c_char), c_size_t)
- FPDFFont_GetFamilyName.restype = c_size_t
- # ./fpdf_edit.h: 1534
- FPDFFont_GetFontData = _libs['pdfium']['FPDFFont_GetFontData']
- FPDFFont_GetFontData.argtypes = (FPDF_FONT, POINTER(uint8_t), c_size_t, POINTER(c_size_t))
- FPDFFont_GetFontData.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1545
- FPDFFont_GetIsEmbedded = _libs['pdfium']['FPDFFont_GetIsEmbedded']
- FPDFFont_GetIsEmbedded.argtypes = (FPDF_FONT, )
- FPDFFont_GetIsEmbedded.restype = c_int
- # ./fpdf_edit.h: 1554
- FPDFFont_GetFlags = _libs['pdfium']['FPDFFont_GetFlags']
- FPDFFont_GetFlags.argtypes = (FPDF_FONT, )
- FPDFFont_GetFlags.restype = c_int
- # ./fpdf_edit.h: 1563
- FPDFFont_GetWeight = _libs['pdfium']['FPDFFont_GetWeight']
- FPDFFont_GetWeight.argtypes = (FPDF_FONT, )
- FPDFFont_GetWeight.restype = c_int
- # ./fpdf_edit.h: 1575
- FPDFFont_GetItalicAngle = _libs['pdfium']['FPDFFont_GetItalicAngle']
- FPDFFont_GetItalicAngle.argtypes = (FPDF_FONT, POINTER(c_int))
- FPDFFont_GetItalicAngle.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1589
- FPDFFont_GetAscent = _libs['pdfium']['FPDFFont_GetAscent']
- FPDFFont_GetAscent.argtypes = (FPDF_FONT, c_float, POINTER(c_float))
- FPDFFont_GetAscent.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1604
- FPDFFont_GetDescent = _libs['pdfium']['FPDFFont_GetDescent']
- FPDFFont_GetDescent.argtypes = (FPDF_FONT, c_float, POINTER(c_float))
- FPDFFont_GetDescent.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1620
- FPDFFont_GetGlyphWidth = _libs['pdfium']['FPDFFont_GetGlyphWidth']
- FPDFFont_GetGlyphWidth.argtypes = (FPDF_FONT, uint32_t, c_float, POINTER(c_float))
- FPDFFont_GetGlyphWidth.restype = FPDF_BOOL
- # ./fpdf_edit.h: 1633
- FPDFFont_GetGlyphPath = _libs['pdfium']['FPDFFont_GetGlyphPath']
- FPDFFont_GetGlyphPath.argtypes = (FPDF_FONT, uint32_t, c_float)
- FPDFFont_GetGlyphPath.restype = FPDF_GLYPHPATH
- # ./fpdf_edit.h: 1644
- FPDFGlyphPath_CountGlyphSegments = _libs['pdfium']['FPDFGlyphPath_CountGlyphSegments']
- FPDFGlyphPath_CountGlyphSegments.argtypes = (FPDF_GLYPHPATH, )
- FPDFGlyphPath_CountGlyphSegments.restype = c_int
- # ./fpdf_edit.h: 1654
- FPDFGlyphPath_GetGlyphPathSegment = _libs['pdfium']['FPDFGlyphPath_GetGlyphPathSegment']
- FPDFGlyphPath_GetGlyphPathSegment.argtypes = (FPDF_GLYPHPATH, c_int)
- FPDFGlyphPath_GetGlyphPathSegment.restype = FPDF_PATHSEGMENT
- # ./fpdf_edit.h: 1662
- FPDFFormObj_CountObjects = _libs['pdfium']['FPDFFormObj_CountObjects']
- FPDFFormObj_CountObjects.argtypes = (FPDF_PAGEOBJECT, )
- FPDFFormObj_CountObjects.restype = c_int
- # ./fpdf_edit.h: 1671
- FPDFFormObj_GetObject = _libs['pdfium']['FPDFFormObj_GetObject']
- FPDFFormObj_GetObject.argtypes = (FPDF_PAGEOBJECT, c_ulong)
- FPDFFormObj_GetObject.restype = FPDF_PAGEOBJECT
- # ./fpdf_edit.h: 1685
- FPDFFormObj_RemoveObject = _libs['pdfium']['FPDFFormObj_RemoveObject']
- FPDFFormObj_RemoveObject.argtypes = (FPDF_PAGEOBJECT, FPDF_PAGEOBJECT)
- FPDFFormObj_RemoveObject.restype = FPDF_BOOL
- # /usr/include/x86_64-linux-gnu/bits/types/time_t.h: 9
- time_t = __time_t
- # /usr/include/x86_64-linux-gnu/bits/types/struct_tm.h: 6
- class struct_tm (Structure):
- __slots__ = ('tm_sec', 'tm_min', 'tm_hour', 'tm_mday', 'tm_mon', 'tm_year', 'tm_wday', 'tm_yday', 'tm_isdst', 'tm_gmtoff', 'tm_zone')
- struct_tm._fields_ = (
- ('tm_sec', c_int),
- ('tm_min', c_int),
- ('tm_hour', c_int),
- ('tm_mday', c_int),
- ('tm_mon', c_int),
- ('tm_year', c_int),
- ('tm_wday', c_int),
- ('tm_yday', c_int),
- ('tm_isdst', c_int),
- ('tm_gmtoff', c_long),
- ('tm_zone', POINTER(c_char)),
- )
- # ./fpdf_ext.h: 51
- class struct__UNSUPPORT_INFO (Structure):
- __slots__ = ('version', 'FSDK_UnSupport_Handler')
- struct__UNSUPPORT_INFO._fields_ = (
- ('version', c_int),
- ('FSDK_UnSupport_Handler', CFUNCTYPE(UNCHECKED(None), POINTER(struct__UNSUPPORT_INFO), c_int)),
- )
- # ./fpdf_ext.h: 62
- UNSUPPORT_INFO = struct__UNSUPPORT_INFO
- # ./fpdf_ext.h: 70
- FSDK_SetUnSpObjProcessHandler = _libs['pdfium']['FSDK_SetUnSpObjProcessHandler']
- FSDK_SetUnSpObjProcessHandler.argtypes = (POINTER(UNSUPPORT_INFO), )
- FSDK_SetUnSpObjProcessHandler.restype = FPDF_BOOL
- # ./fpdf_ext.h: 79
- FSDK_SetTimeFunction = _libs['pdfium']['FSDK_SetTimeFunction']
- FSDK_SetTimeFunction.argtypes = (CFUNCTYPE(UNCHECKED(time_t), ), )
- FSDK_SetTimeFunction.restype = None
- # ./fpdf_ext.h: 89
- FSDK_SetLocaltimeFunction = _libs['pdfium']['FSDK_SetLocaltimeFunction']
- FSDK_SetLocaltimeFunction.argtypes = (CFUNCTYPE(UNCHECKED(POINTER(struct_tm)), POINTER(time_t)), )
- FSDK_SetLocaltimeFunction.restype = None
- # ./fpdf_ext.h: 113
- FPDFDoc_GetPageMode = _libs['pdfium']['FPDFDoc_GetPageMode']
- FPDFDoc_GetPageMode.argtypes = (FPDF_DOCUMENT, )
- FPDFDoc_GetPageMode.restype = c_int
- # ./fpdf_flatten.h: 38
- FPDFPage_Flatten = _libs['pdfium']['FPDFPage_Flatten']
- FPDFPage_Flatten.argtypes = (FPDF_PAGE, c_int)
- FPDFPage_Flatten.restype = c_int
- # ./fpdf_fwlevent.h: 28
- enum_anon_7 = c_int
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_ShiftKey = (1 << 0)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_ControlKey = (1 << 1)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_AltKey = (1 << 2)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_MetaKey = (1 << 3)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_KeyPad = (1 << 4)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_AutoRepeat = (1 << 5)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_LeftButtonDown = (1 << 6)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_MiddleButtonDown = (1 << 7)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG_RightButtonDown = (1 << 8)
- # ./fpdf_fwlevent.h: 28
- FWL_EVENTFLAG = enum_anon_7
- # ./fpdf_fwlevent.h: 201
- enum_anon_8 = c_int
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Back = 0x08
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Tab = 0x09
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NewLine = 0x0A
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Clear = 0x0C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Return = 0x0D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Shift = 0x10
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Control = 0x11
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Menu = 0x12
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Pause = 0x13
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Capital = 0x14
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Kana = 0x15
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Hangul = 0x15
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Junja = 0x17
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Final = 0x18
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Hanja = 0x19
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Kanji = 0x19
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Escape = 0x1B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Convert = 0x1C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NonConvert = 0x1D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Accept = 0x1E
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_ModeChange = 0x1F
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Space = 0x20
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Prior = 0x21
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Next = 0x22
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_End = 0x23
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Home = 0x24
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Left = 0x25
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Up = 0x26
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Right = 0x27
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Down = 0x28
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Select = 0x29
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Print = 0x2A
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Execute = 0x2B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Snapshot = 0x2C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Insert = 0x2D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Delete = 0x2E
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Help = 0x2F
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_0 = 0x30
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_1 = 0x31
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_2 = 0x32
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_3 = 0x33
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_4 = 0x34
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_5 = 0x35
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_6 = 0x36
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_7 = 0x37
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_8 = 0x38
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_9 = 0x39
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_A = 0x41
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_B = 0x42
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_C = 0x43
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_D = 0x44
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_E = 0x45
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F = 0x46
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_G = 0x47
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_H = 0x48
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_I = 0x49
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_J = 0x4A
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_K = 0x4B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_L = 0x4C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_M = 0x4D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_N = 0x4E
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_O = 0x4F
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_P = 0x50
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Q = 0x51
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_R = 0x52
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_S = 0x53
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_T = 0x54
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_U = 0x55
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_V = 0x56
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_W = 0x57
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_X = 0x58
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Y = 0x59
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Z = 0x5A
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_LWin = 0x5B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Command = 0x5B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_RWin = 0x5C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Apps = 0x5D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Sleep = 0x5F
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad0 = 0x60
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad1 = 0x61
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad2 = 0x62
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad3 = 0x63
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad4 = 0x64
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad5 = 0x65
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad6 = 0x66
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad7 = 0x67
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad8 = 0x68
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NumPad9 = 0x69
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Multiply = 0x6A
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Add = 0x6B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Separator = 0x6C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Subtract = 0x6D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Decimal = 0x6E
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Divide = 0x6F
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F1 = 0x70
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F2 = 0x71
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F3 = 0x72
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F4 = 0x73
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F5 = 0x74
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F6 = 0x75
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F7 = 0x76
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F8 = 0x77
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F9 = 0x78
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F10 = 0x79
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F11 = 0x7A
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F12 = 0x7B
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F13 = 0x7C
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F14 = 0x7D
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F15 = 0x7E
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F16 = 0x7F
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F17 = 0x80
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F18 = 0x81
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F19 = 0x82
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F20 = 0x83
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F21 = 0x84
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F22 = 0x85
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F23 = 0x86
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_F24 = 0x87
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NunLock = 0x90
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Scroll = 0x91
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_LShift = 0xA0
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_RShift = 0xA1
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_LControl = 0xA2
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_RControl = 0xA3
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_LMenu = 0xA4
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_RMenu = 0xA5
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Back = 0xA6
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Forward = 0xA7
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Refresh = 0xA8
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Stop = 0xA9
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Search = 0xAA
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Favorites = 0xAB
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_BROWSER_Home = 0xAC
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_VOLUME_Mute = 0xAD
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_VOLUME_Down = 0xAE
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_VOLUME_Up = 0xAF
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_NEXT_Track = 0xB0
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_PREV_Track = 0xB1
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_Stop = 0xB2
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_PLAY_Pause = 0xB3
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_LAUNCH_Mail = 0xB4
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_LAUNCH_MEDIA_Select = 0xB5
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_LAUNCH_APP1 = 0xB6
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_MEDIA_LAUNCH_APP2 = 0xB7
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_1 = 0xBA
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_Plus = 0xBB
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_Comma = 0xBC
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_Minus = 0xBD
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_Period = 0xBE
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_2 = 0xBF
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_3 = 0xC0
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_4 = 0xDB
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_5 = 0xDC
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_6 = 0xDD
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_7 = 0xDE
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_8 = 0xDF
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_102 = 0xE2
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_ProcessKey = 0xE5
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Packet = 0xE7
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Attn = 0xF6
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Crsel = 0xF7
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Exsel = 0xF8
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Ereof = 0xF9
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Play = 0xFA
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Zoom = 0xFB
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_NoName = 0xFC
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_PA1 = 0xFD
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_OEM_Clear = 0xFE
- # ./fpdf_fwlevent.h: 201
- FWL_VKEY_Unknown = 0
- # ./fpdf_fwlevent.h: 201
- FWL_VKEYCODE = enum_anon_8
- # ./fpdf_javascript.h: 22
- FPDFDoc_GetJavaScriptActionCount = _libs['pdfium']['FPDFDoc_GetJavaScriptActionCount']
- FPDFDoc_GetJavaScriptActionCount.argtypes = (FPDF_DOCUMENT, )
- FPDFDoc_GetJavaScriptActionCount.restype = c_int
- # ./fpdf_javascript.h: 34
- FPDFDoc_GetJavaScriptAction = _libs['pdfium']['FPDFDoc_GetJavaScriptAction']
- FPDFDoc_GetJavaScriptAction.argtypes = (FPDF_DOCUMENT, c_int)
- FPDFDoc_GetJavaScriptAction.restype = FPDF_JAVASCRIPT_ACTION
- # ./fpdf_javascript.h: 41
- FPDFDoc_CloseJavaScriptAction = _libs['pdfium']['FPDFDoc_CloseJavaScriptAction']
- FPDFDoc_CloseJavaScriptAction.argtypes = (FPDF_JAVASCRIPT_ACTION, )
- FPDFDoc_CloseJavaScriptAction.restype = None
- # ./fpdf_javascript.h: 54
- FPDFJavaScriptAction_GetName = _libs['pdfium']['FPDFJavaScriptAction_GetName']
- FPDFJavaScriptAction_GetName.argtypes = (FPDF_JAVASCRIPT_ACTION, POINTER(FPDF_WCHAR), c_ulong)
- FPDFJavaScriptAction_GetName.restype = c_ulong
- # ./fpdf_javascript.h: 69
- FPDFJavaScriptAction_GetScript = _libs['pdfium']['FPDFJavaScriptAction_GetScript']
- FPDFJavaScriptAction_GetScript.argtypes = (FPDF_JAVASCRIPT_ACTION, POINTER(FPDF_WCHAR), c_ulong)
- FPDFJavaScriptAction_GetScript.restype = c_ulong
- # ./fpdf_ppo.h: 32
- FPDF_ImportPagesByIndex = _libs['pdfium']['FPDF_ImportPagesByIndex']
- FPDF_ImportPagesByIndex.argtypes = (FPDF_DOCUMENT, FPDF_DOCUMENT, POINTER(c_int), c_ulong, c_int)
- FPDF_ImportPagesByIndex.restype = FPDF_BOOL
- # ./fpdf_ppo.h: 49
- FPDF_ImportPages = _libs['pdfium']['FPDF_ImportPages']
- FPDF_ImportPages.argtypes = (FPDF_DOCUMENT, FPDF_DOCUMENT, FPDF_BYTESTRING, c_int)
- FPDF_ImportPages.restype = FPDF_BOOL
- # ./fpdf_ppo.h: 72
- FPDF_ImportNPagesToOne = _libs['pdfium']['FPDF_ImportNPagesToOne']
- FPDF_ImportNPagesToOne.argtypes = (FPDF_DOCUMENT, c_float, c_float, c_size_t, c_size_t)
- FPDF_ImportNPagesToOne.restype = FPDF_DOCUMENT
- # ./fpdf_ppo.h: 85
- FPDF_NewXObjectFromPage = _libs['pdfium']['FPDF_NewXObjectFromPage']
- FPDF_NewXObjectFromPage.argtypes = (FPDF_DOCUMENT, FPDF_DOCUMENT, c_int)
- FPDF_NewXObjectFromPage.restype = FPDF_XOBJECT
- # ./fpdf_ppo.h: 92
- FPDF_CloseXObject = _libs['pdfium']['FPDF_CloseXObject']
- FPDF_CloseXObject.argtypes = (FPDF_XOBJECT, )
- FPDF_CloseXObject.restype = None
- # ./fpdf_ppo.h: 100
- FPDF_NewFormObjectFromXObject = _libs['pdfium']['FPDF_NewFormObjectFromXObject']
- FPDF_NewFormObjectFromXObject.argtypes = (FPDF_XOBJECT, )
- FPDF_NewFormObjectFromXObject.restype = FPDF_PAGEOBJECT
- # ./fpdf_ppo.h: 109
- FPDF_CopyViewerPreferences = _libs['pdfium']['FPDF_CopyViewerPreferences']
- FPDF_CopyViewerPreferences.argtypes = (FPDF_DOCUMENT, FPDF_DOCUMENT)
- FPDF_CopyViewerPreferences.restype = FPDF_BOOL
- # ./fpdf_progressive.h: 20
- class struct__IFSDK_PAUSE (Structure):
- __slots__ = ('version', 'NeedToPauseNow', 'user')
- struct__IFSDK_PAUSE._fields_ = (
- ('version', c_int),
- ('NeedToPauseNow', CFUNCTYPE(UNCHECKED(FPDF_BOOL), POINTER(struct__IFSDK_PAUSE))),
- ('user', POINTER(None)),
- )
- # ./fpdf_progressive.h: 43
- IFSDK_PAUSE = struct__IFSDK_PAUSE
- # ./fpdf_progressive.h: 79
- FPDF_RenderPageBitmapWithColorScheme_Start = _libs['pdfium']['FPDF_RenderPageBitmapWithColorScheme_Start']
- FPDF_RenderPageBitmapWithColorScheme_Start.argtypes = (FPDF_BITMAP, FPDF_PAGE, c_int, c_int, c_int, c_int, c_int, c_int, POINTER(FPDF_COLORSCHEME), POINTER(IFSDK_PAUSE))
- FPDF_RenderPageBitmapWithColorScheme_Start.restype = c_int
- # ./fpdf_progressive.h: 117
- FPDF_RenderPageBitmap_Start = _libs['pdfium']['FPDF_RenderPageBitmap_Start']
- FPDF_RenderPageBitmap_Start.argtypes = (FPDF_BITMAP, FPDF_PAGE, c_int, c_int, c_int, c_int, c_int, c_int, POINTER(IFSDK_PAUSE))
- FPDF_RenderPageBitmap_Start.restype = c_int
- # ./fpdf_progressive.h: 138
- FPDF_RenderPage_Continue = _libs['pdfium']['FPDF_RenderPage_Continue']
- FPDF_RenderPage_Continue.argtypes = (FPDF_PAGE, POINTER(IFSDK_PAUSE))
- FPDF_RenderPage_Continue.restype = c_int
- # ./fpdf_progressive.h: 149
- FPDF_RenderPage_Close = _libs['pdfium']['FPDF_RenderPage_Close']
- FPDF_RenderPage_Close.argtypes = (FPDF_PAGE, )
- FPDF_RenderPage_Close.restype = None
- # ./fpdf_save.h: 19
- class struct_FPDF_FILEWRITE_ (Structure):
- __slots__ = ('version', 'WriteBlock')
- struct_FPDF_FILEWRITE_._fields_ = (
- ('version', c_int),
- ('WriteBlock', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct_FPDF_FILEWRITE_), POINTER(None), c_ulong)),
- )
- # ./fpdf_save.h: 42
- FPDF_FILEWRITE = struct_FPDF_FILEWRITE_
- # ./fpdf_save.h: 60
- FPDF_SaveAsCopy = _libs['pdfium']['FPDF_SaveAsCopy']
- FPDF_SaveAsCopy.argtypes = (FPDF_DOCUMENT, POINTER(FPDF_FILEWRITE), FPDF_DWORD)
- FPDF_SaveAsCopy.restype = FPDF_BOOL
- # ./fpdf_save.h: 77
- FPDF_SaveWithVersion = _libs['pdfium']['FPDF_SaveWithVersion']
- FPDF_SaveWithVersion.argtypes = (FPDF_DOCUMENT, POINTER(FPDF_FILEWRITE), FPDF_DWORD, c_int)
- FPDF_SaveWithVersion.restype = FPDF_BOOL
- # ./fpdf_searchex.h: 24
- FPDFText_GetCharIndexFromTextIndex = _libs['pdfium']['FPDFText_GetCharIndexFromTextIndex']
- FPDFText_GetCharIndexFromTextIndex.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetCharIndexFromTextIndex.restype = c_int
- # ./fpdf_searchex.h: 33
- FPDFText_GetTextIndexFromCharIndex = _libs['pdfium']['FPDFText_GetTextIndexFromCharIndex']
- FPDFText_GetTextIndexFromCharIndex.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetTextIndexFromCharIndex.restype = c_int
- # ./fpdf_signature.h: 22
- FPDF_GetSignatureCount = _libs['pdfium']['FPDF_GetSignatureCount']
- FPDF_GetSignatureCount.argtypes = (FPDF_DOCUMENT, )
- FPDF_GetSignatureCount.restype = c_int
- # ./fpdf_signature.h: 35
- FPDF_GetSignatureObject = _libs['pdfium']['FPDF_GetSignatureObject']
- FPDF_GetSignatureObject.argtypes = (FPDF_DOCUMENT, c_int)
- FPDF_GetSignatureObject.restype = FPDF_SIGNATURE
- # ./fpdf_signature.h: 52
- FPDFSignatureObj_GetContents = _libs['pdfium']['FPDFSignatureObj_GetContents']
- FPDFSignatureObj_GetContents.argtypes = (FPDF_SIGNATURE, POINTER(None), c_ulong)
- FPDFSignatureObj_GetContents.restype = c_ulong
- # ./fpdf_signature.h: 74
- FPDFSignatureObj_GetByteRange = _libs['pdfium']['FPDFSignatureObj_GetByteRange']
- FPDFSignatureObj_GetByteRange.argtypes = (FPDF_SIGNATURE, POINTER(c_int), c_ulong)
- FPDFSignatureObj_GetByteRange.restype = c_ulong
- # ./fpdf_signature.h: 93
- FPDFSignatureObj_GetSubFilter = _libs['pdfium']['FPDFSignatureObj_GetSubFilter']
- FPDFSignatureObj_GetSubFilter.argtypes = (FPDF_SIGNATURE, POINTER(c_char), c_ulong)
- FPDFSignatureObj_GetSubFilter.restype = c_ulong
- # ./fpdf_signature.h: 112
- FPDFSignatureObj_GetReason = _libs['pdfium']['FPDFSignatureObj_GetReason']
- FPDFSignatureObj_GetReason.argtypes = (FPDF_SIGNATURE, POINTER(None), c_ulong)
- FPDFSignatureObj_GetReason.restype = c_ulong
- # ./fpdf_signature.h: 136
- FPDFSignatureObj_GetTime = _libs['pdfium']['FPDFSignatureObj_GetTime']
- FPDFSignatureObj_GetTime.argtypes = (FPDF_SIGNATURE, POINTER(c_char), c_ulong)
- FPDFSignatureObj_GetTime.restype = c_ulong
- # ./fpdf_signature.h: 149
- FPDFSignatureObj_GetDocMDPPermission = _libs['pdfium']['FPDFSignatureObj_GetDocMDPPermission']
- FPDFSignatureObj_GetDocMDPPermission.argtypes = (FPDF_SIGNATURE, )
- FPDFSignatureObj_GetDocMDPPermission.restype = c_uint
- # ./fpdf_structtree.h: 27
- FPDF_StructTree_GetForPage = _libs['pdfium']['FPDF_StructTree_GetForPage']
- FPDF_StructTree_GetForPage.argtypes = (FPDF_PAGE, )
- FPDF_StructTree_GetForPage.restype = FPDF_STRUCTTREE
- # ./fpdf_structtree.h: 37
- FPDF_StructTree_Close = _libs['pdfium']['FPDF_StructTree_Close']
- FPDF_StructTree_Close.argtypes = (FPDF_STRUCTTREE, )
- FPDF_StructTree_Close.restype = None
- # ./fpdf_structtree.h: 47
- FPDF_StructTree_CountChildren = _libs['pdfium']['FPDF_StructTree_CountChildren']
- FPDF_StructTree_CountChildren.argtypes = (FPDF_STRUCTTREE, )
- FPDF_StructTree_CountChildren.restype = c_int
- # ./fpdf_structtree.h: 63
- FPDF_StructTree_GetChildAtIndex = _libs['pdfium']['FPDF_StructTree_GetChildAtIndex']
- FPDF_StructTree_GetChildAtIndex.argtypes = (FPDF_STRUCTTREE, c_int)
- FPDF_StructTree_GetChildAtIndex.restype = FPDF_STRUCTELEMENT
- # ./fpdf_structtree.h: 81
- FPDF_StructElement_GetAltText = _libs['pdfium']['FPDF_StructElement_GetAltText']
- FPDF_StructElement_GetAltText.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetAltText.restype = c_ulong
- # ./fpdf_structtree.h: 102
- FPDF_StructElement_GetActualText = _libs['pdfium']['FPDF_StructElement_GetActualText']
- FPDF_StructElement_GetActualText.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetActualText.restype = c_ulong
- # ./fpdf_structtree.h: 122
- FPDF_StructElement_GetID = _libs['pdfium']['FPDF_StructElement_GetID']
- FPDF_StructElement_GetID.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetID.restype = c_ulong
- # ./fpdf_structtree.h: 143
- FPDF_StructElement_GetLang = _libs['pdfium']['FPDF_StructElement_GetLang']
- FPDF_StructElement_GetLang.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetLang.restype = c_ulong
- # ./fpdf_structtree.h: 165
- FPDF_StructElement_GetStringAttribute = _libs['pdfium']['FPDF_StructElement_GetStringAttribute']
- FPDF_StructElement_GetStringAttribute.argtypes = (FPDF_STRUCTELEMENT, FPDF_BYTESTRING, POINTER(None), c_ulong)
- FPDF_StructElement_GetStringAttribute.restype = c_ulong
- # ./fpdf_structtree.h: 182
- FPDF_StructElement_GetMarkedContentID = _libs['pdfium']['FPDF_StructElement_GetMarkedContentID']
- FPDF_StructElement_GetMarkedContentID.argtypes = (FPDF_STRUCTELEMENT, )
- FPDF_StructElement_GetMarkedContentID.restype = c_int
- # ./fpdf_structtree.h: 200
- FPDF_StructElement_GetType = _libs['pdfium']['FPDF_StructElement_GetType']
- FPDF_StructElement_GetType.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetType.restype = c_ulong
- # ./fpdf_structtree.h: 221
- FPDF_StructElement_GetObjType = _libs['pdfium']['FPDF_StructElement_GetObjType']
- FPDF_StructElement_GetObjType.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetObjType.restype = c_ulong
- # ./fpdf_structtree.h: 241
- FPDF_StructElement_GetTitle = _libs['pdfium']['FPDF_StructElement_GetTitle']
- FPDF_StructElement_GetTitle.argtypes = (FPDF_STRUCTELEMENT, POINTER(None), c_ulong)
- FPDF_StructElement_GetTitle.restype = c_ulong
- # ./fpdf_structtree.h: 252
- FPDF_StructElement_CountChildren = _libs['pdfium']['FPDF_StructElement_CountChildren']
- FPDF_StructElement_CountChildren.argtypes = (FPDF_STRUCTELEMENT, )
- FPDF_StructElement_CountChildren.restype = c_int
- # ./fpdf_structtree.h: 267
- FPDF_StructElement_GetChildAtIndex = _libs['pdfium']['FPDF_StructElement_GetChildAtIndex']
- FPDF_StructElement_GetChildAtIndex.argtypes = (FPDF_STRUCTELEMENT, c_int)
- FPDF_StructElement_GetChildAtIndex.restype = FPDF_STRUCTELEMENT
- # ./fpdf_structtree.h: 286
- FPDF_StructElement_GetChildMarkedContentID = _libs['pdfium']['FPDF_StructElement_GetChildMarkedContentID']
- FPDF_StructElement_GetChildMarkedContentID.argtypes = (FPDF_STRUCTELEMENT, c_int)
- FPDF_StructElement_GetChildMarkedContentID.restype = c_int
- # ./fpdf_structtree.h: 300
- FPDF_StructElement_GetParent = _libs['pdfium']['FPDF_StructElement_GetParent']
- FPDF_StructElement_GetParent.argtypes = (FPDF_STRUCTELEMENT, )
- FPDF_StructElement_GetParent.restype = FPDF_STRUCTELEMENT
- # ./fpdf_structtree.h: 309
- FPDF_StructElement_GetAttributeCount = _libs['pdfium']['FPDF_StructElement_GetAttributeCount']
- FPDF_StructElement_GetAttributeCount.argtypes = (FPDF_STRUCTELEMENT, )
- FPDF_StructElement_GetAttributeCount.restype = c_int
- # ./fpdf_structtree.h: 327
- FPDF_StructElement_GetAttributeAtIndex = _libs['pdfium']['FPDF_StructElement_GetAttributeAtIndex']
- FPDF_StructElement_GetAttributeAtIndex.argtypes = (FPDF_STRUCTELEMENT, c_int)
- FPDF_StructElement_GetAttributeAtIndex.restype = FPDF_STRUCTELEMENT_ATTR
- # ./fpdf_structtree.h: 337
- FPDF_StructElement_Attr_GetCount = _libs['pdfium']['FPDF_StructElement_Attr_GetCount']
- FPDF_StructElement_Attr_GetCount.argtypes = (FPDF_STRUCTELEMENT_ATTR, )
- FPDF_StructElement_Attr_GetCount.restype = c_int
- # ./fpdf_structtree.h: 357
- FPDF_StructElement_Attr_GetName = _libs['pdfium']['FPDF_StructElement_Attr_GetName']
- FPDF_StructElement_Attr_GetName.argtypes = (FPDF_STRUCTELEMENT_ATTR, c_int, POINTER(None), c_ulong, POINTER(c_ulong))
- FPDF_StructElement_Attr_GetName.restype = FPDF_BOOL
- # ./fpdf_structtree.h: 375
- FPDF_StructElement_Attr_GetValue = _libs['pdfium']['FPDF_StructElement_Attr_GetValue']
- FPDF_StructElement_Attr_GetValue.argtypes = (FPDF_STRUCTELEMENT_ATTR, FPDF_BYTESTRING)
- FPDF_StructElement_Attr_GetValue.restype = FPDF_STRUCTELEMENT_ATTR_VALUE
- # ./fpdf_structtree.h: 388
- FPDF_StructElement_Attr_GetType = _libs['pdfium']['FPDF_StructElement_Attr_GetType']
- FPDF_StructElement_Attr_GetType.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, )
- FPDF_StructElement_Attr_GetType.restype = FPDF_OBJECT_TYPE
- # ./fpdf_structtree.h: 403
- FPDF_StructElement_Attr_GetBooleanValue = _libs['pdfium']['FPDF_StructElement_Attr_GetBooleanValue']
- FPDF_StructElement_Attr_GetBooleanValue.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, POINTER(FPDF_BOOL))
- FPDF_StructElement_Attr_GetBooleanValue.restype = FPDF_BOOL
- # ./fpdf_structtree.h: 419
- FPDF_StructElement_Attr_GetNumberValue = _libs['pdfium']['FPDF_StructElement_Attr_GetNumberValue']
- FPDF_StructElement_Attr_GetNumberValue.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, POINTER(c_float))
- FPDF_StructElement_Attr_GetNumberValue.restype = FPDF_BOOL
- # ./fpdf_structtree.h: 441
- FPDF_StructElement_Attr_GetStringValue = _libs['pdfium']['FPDF_StructElement_Attr_GetStringValue']
- FPDF_StructElement_Attr_GetStringValue.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, POINTER(None), c_ulong, POINTER(c_ulong))
- FPDF_StructElement_Attr_GetStringValue.restype = FPDF_BOOL
- # ./fpdf_structtree.h: 463
- FPDF_StructElement_Attr_GetBlobValue = _libs['pdfium']['FPDF_StructElement_Attr_GetBlobValue']
- FPDF_StructElement_Attr_GetBlobValue.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, POINTER(None), c_ulong, POINTER(c_ulong))
- FPDF_StructElement_Attr_GetBlobValue.restype = FPDF_BOOL
- # ./fpdf_structtree.h: 476
- FPDF_StructElement_Attr_CountChildren = _libs['pdfium']['FPDF_StructElement_Attr_CountChildren']
- FPDF_StructElement_Attr_CountChildren.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, )
- FPDF_StructElement_Attr_CountChildren.restype = c_int
- # ./fpdf_structtree.h: 490
- FPDF_StructElement_Attr_GetChildAtIndex = _libs['pdfium']['FPDF_StructElement_Attr_GetChildAtIndex']
- FPDF_StructElement_Attr_GetChildAtIndex.argtypes = (FPDF_STRUCTELEMENT_ATTR_VALUE, c_int)
- FPDF_StructElement_Attr_GetChildAtIndex.restype = FPDF_STRUCTELEMENT_ATTR_VALUE
- # ./fpdf_structtree.h: 501
- FPDF_StructElement_GetMarkedContentIdCount = _libs['pdfium']['FPDF_StructElement_GetMarkedContentIdCount']
- FPDF_StructElement_GetMarkedContentIdCount.argtypes = (FPDF_STRUCTELEMENT, )
- FPDF_StructElement_GetMarkedContentIdCount.restype = c_int
- # ./fpdf_structtree.h: 517
- FPDF_StructElement_GetMarkedContentIdAtIndex = _libs['pdfium']['FPDF_StructElement_GetMarkedContentIdAtIndex']
- FPDF_StructElement_GetMarkedContentIdAtIndex.argtypes = (FPDF_STRUCTELEMENT, c_int)
- FPDF_StructElement_GetMarkedContentIdAtIndex.restype = c_int
- # ./fpdf_sysfontinfo.h: 48
- class struct__FPDF_SYSFONTINFO (Structure):
- __slots__ = ('version', 'Release', 'EnumFonts', 'MapFont', 'GetFont', 'GetFontData', 'GetFaceName', 'GetFontCharset', 'DeleteFont')
- struct__FPDF_SYSFONTINFO._fields_ = (
- ('version', c_int),
- ('Release', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_SYSFONTINFO))),
- ('EnumFonts', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_SYSFONTINFO), POINTER(None))),
- ('MapFont', CFUNCTYPE(UNCHECKED(POINTER(None)), POINTER(struct__FPDF_SYSFONTINFO), c_int, FPDF_BOOL, c_int, c_int, POINTER(c_char), POINTER(FPDF_BOOL))),
- ('GetFont', CFUNCTYPE(UNCHECKED(POINTER(None)), POINTER(struct__FPDF_SYSFONTINFO), POINTER(c_char))),
- ('GetFontData', CFUNCTYPE(UNCHECKED(c_ulong), POINTER(struct__FPDF_SYSFONTINFO), POINTER(None), c_uint, POINTER(c_ubyte), c_ulong)),
- ('GetFaceName', CFUNCTYPE(UNCHECKED(c_ulong), POINTER(struct__FPDF_SYSFONTINFO), POINTER(None), POINTER(c_char), c_ulong)),
- ('GetFontCharset', CFUNCTYPE(UNCHECKED(c_int), POINTER(struct__FPDF_SYSFONTINFO), POINTER(None))),
- ('DeleteFont', CFUNCTYPE(UNCHECKED(None), POINTER(struct__FPDF_SYSFONTINFO), POINTER(None))),
- )
- # ./fpdf_sysfontinfo.h: 214
- FPDF_SYSFONTINFO = struct__FPDF_SYSFONTINFO
- # ./fpdf_sysfontinfo.h: 221
- class struct_FPDF_CharsetFontMap_ (Structure):
- __slots__ = ('charset', 'fontname')
- struct_FPDF_CharsetFontMap_._fields_ = (
- ('charset', c_int),
- ('fontname', POINTER(c_char)),
- )
- # ./fpdf_sysfontinfo.h: 221
- FPDF_CharsetFontMap = struct_FPDF_CharsetFontMap_
- # ./fpdf_sysfontinfo.h: 235
- FPDF_GetDefaultTTFMap = _libs['pdfium']['FPDF_GetDefaultTTFMap']
- FPDF_GetDefaultTTFMap.argtypes = ()
- FPDF_GetDefaultTTFMap.restype = POINTER(FPDF_CharsetFontMap)
- # ./fpdf_sysfontinfo.h: 246
- FPDF_GetDefaultTTFMapCount = _libs['pdfium']['FPDF_GetDefaultTTFMapCount']
- FPDF_GetDefaultTTFMapCount.argtypes = ()
- FPDF_GetDefaultTTFMapCount.restype = c_size_t
- # ./fpdf_sysfontinfo.h: 257
- FPDF_GetDefaultTTFMapEntry = _libs['pdfium']['FPDF_GetDefaultTTFMapEntry']
- FPDF_GetDefaultTTFMapEntry.argtypes = (c_size_t, )
- FPDF_GetDefaultTTFMapEntry.restype = POINTER(FPDF_CharsetFontMap)
- # ./fpdf_sysfontinfo.h: 271
- FPDF_AddInstalledFont = _libs['pdfium']['FPDF_AddInstalledFont']
- FPDF_AddInstalledFont.argtypes = (POINTER(None), POINTER(c_char), c_int)
- FPDF_AddInstalledFont.restype = None
- # ./fpdf_sysfontinfo.h: 289
- FPDF_SetSystemFontInfo = _libs['pdfium']['FPDF_SetSystemFontInfo']
- FPDF_SetSystemFontInfo.argtypes = (POINTER(FPDF_SYSFONTINFO), )
- FPDF_SetSystemFontInfo.restype = None
- # ./fpdf_sysfontinfo.h: 304
- FPDF_GetDefaultSystemFontInfo = _libs['pdfium']['FPDF_GetDefaultSystemFontInfo']
- FPDF_GetDefaultSystemFontInfo.argtypes = ()
- FPDF_GetDefaultSystemFontInfo.restype = POINTER(FPDF_SYSFONTINFO)
- # ./fpdf_sysfontinfo.h: 316
- FPDF_FreeDefaultSystemFontInfo = _libs['pdfium']['FPDF_FreeDefaultSystemFontInfo']
- FPDF_FreeDefaultSystemFontInfo.argtypes = (POINTER(FPDF_SYSFONTINFO), )
- FPDF_FreeDefaultSystemFontInfo.restype = None
- # ./fpdf_text.h: 31
- FPDFText_LoadPage = _libs['pdfium']['FPDFText_LoadPage']
- FPDFText_LoadPage.argtypes = (FPDF_PAGE, )
- FPDFText_LoadPage.restype = FPDF_TEXTPAGE
- # ./fpdf_text.h: 42
- FPDFText_ClosePage = _libs['pdfium']['FPDFText_ClosePage']
- FPDFText_ClosePage.argtypes = (FPDF_TEXTPAGE, )
- FPDFText_ClosePage.restype = None
- # ./fpdf_text.h: 60
- FPDFText_CountChars = _libs['pdfium']['FPDFText_CountChars']
- FPDFText_CountChars.argtypes = (FPDF_TEXTPAGE, )
- FPDFText_CountChars.restype = c_int
- # ./fpdf_text.h: 75
- FPDFText_GetUnicode = _libs['pdfium']['FPDFText_GetUnicode']
- FPDFText_GetUnicode.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetUnicode.restype = c_uint
- # ./fpdf_text.h: 90
- FPDFText_GetTextObject = _libs['pdfium']['FPDFText_GetTextObject']
- FPDFText_GetTextObject.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetTextObject.restype = FPDF_PAGEOBJECT
- # ./fpdf_text.h: 105
- FPDFText_IsGenerated = _libs['pdfium']['FPDFText_IsGenerated']
- FPDFText_IsGenerated.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_IsGenerated.restype = c_int
- # ./fpdf_text.h: 120
- FPDFText_IsHyphen = _libs['pdfium']['FPDFText_IsHyphen']
- FPDFText_IsHyphen.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_IsHyphen.restype = c_int
- # ./fpdf_text.h: 135
- FPDFText_HasUnicodeMapError = _libs['pdfium']['FPDFText_HasUnicodeMapError']
- FPDFText_HasUnicodeMapError.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_HasUnicodeMapError.restype = c_int
- # ./fpdf_text.h: 148
- FPDFText_GetFontSize = _libs['pdfium']['FPDFText_GetFontSize']
- FPDFText_GetFontSize.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetFontSize.restype = c_double
- # ./fpdf_text.h: 171
- FPDFText_GetFontInfo = _libs['pdfium']['FPDFText_GetFontInfo']
- FPDFText_GetFontInfo.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(None), c_ulong, POINTER(c_int))
- FPDFText_GetFontInfo.restype = c_ulong
- # ./fpdf_text.h: 189
- FPDFText_GetFontWeight = _libs['pdfium']['FPDFText_GetFontWeight']
- FPDFText_GetFontWeight.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetFontWeight.restype = c_int
- # ./fpdf_text.h: 212
- FPDFText_GetFillColor = _libs['pdfium']['FPDFText_GetFillColor']
- FPDFText_GetFillColor.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(c_uint), POINTER(c_uint), POINTER(c_uint), POINTER(c_uint))
- FPDFText_GetFillColor.restype = FPDF_BOOL
- # ./fpdf_text.h: 239
- FPDFText_GetStrokeColor = _libs['pdfium']['FPDFText_GetStrokeColor']
- FPDFText_GetStrokeColor.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(c_uint), POINTER(c_uint), POINTER(c_uint), POINTER(c_uint))
- FPDFText_GetStrokeColor.restype = FPDF_BOOL
- # ./fpdf_text.h: 258
- FPDFText_GetCharAngle = _libs['pdfium']['FPDFText_GetCharAngle']
- FPDFText_GetCharAngle.argtypes = (FPDF_TEXTPAGE, c_int)
- FPDFText_GetCharAngle.restype = c_float
- # ./fpdf_text.h: 282
- FPDFText_GetCharBox = _libs['pdfium']['FPDFText_GetCharBox']
- FPDFText_GetCharBox.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(c_double), POINTER(c_double), POINTER(c_double), POINTER(c_double))
- FPDFText_GetCharBox.restype = FPDF_BOOL
- # ./fpdf_text.h: 307
- FPDFText_GetLooseCharBox = _libs['pdfium']['FPDFText_GetLooseCharBox']
- FPDFText_GetLooseCharBox.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(FS_RECTF))
- FPDFText_GetLooseCharBox.restype = FPDF_BOOL
- # ./fpdf_text.h: 323
- FPDFText_GetMatrix = _libs['pdfium']['FPDFText_GetMatrix']
- FPDFText_GetMatrix.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(FS_MATRIX))
- FPDFText_GetMatrix.restype = FPDF_BOOL
- # ./fpdf_text.h: 343
- FPDFText_GetCharOrigin = _libs['pdfium']['FPDFText_GetCharOrigin']
- FPDFText_GetCharOrigin.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(c_double), POINTER(c_double))
- FPDFText_GetCharOrigin.restype = FPDF_BOOL
- # ./fpdf_text.h: 366
- FPDFText_GetCharIndexAtPos = _libs['pdfium']['FPDFText_GetCharIndexAtPos']
- FPDFText_GetCharIndexAtPos.argtypes = (FPDF_TEXTPAGE, c_double, c_double, c_double, c_double)
- FPDFText_GetCharIndexAtPos.restype = c_int
- # ./fpdf_text.h: 392
- FPDFText_GetText = _libs['pdfium']['FPDFText_GetText']
- FPDFText_GetText.argtypes = (FPDF_TEXTPAGE, c_int, c_int, POINTER(c_ushort))
- FPDFText_GetText.restype = c_int
- # ./fpdf_text.h: 415
- FPDFText_CountRects = _libs['pdfium']['FPDFText_CountRects']
- FPDFText_CountRects.argtypes = (FPDF_TEXTPAGE, c_int, c_int)
- FPDFText_CountRects.restype = c_int
- # ./fpdf_text.h: 441
- FPDFText_GetRect = _libs['pdfium']['FPDFText_GetRect']
- FPDFText_GetRect.argtypes = (FPDF_TEXTPAGE, c_int, POINTER(c_double), POINTER(c_double), POINTER(c_double), POINTER(c_double))
- FPDFText_GetRect.restype = FPDF_BOOL
- # ./fpdf_text.h: 472
- FPDFText_GetBoundedText = _libs['pdfium']['FPDFText_GetBoundedText']
- FPDFText_GetBoundedText.argtypes = (FPDF_TEXTPAGE, c_double, c_double, c_double, c_double, POINTER(c_ushort), c_int)
- FPDFText_GetBoundedText.restype = c_int
- # ./fpdf_text.h: 502
- FPDFText_FindStart = _libs['pdfium']['FPDFText_FindStart']
- FPDFText_FindStart.argtypes = (FPDF_TEXTPAGE, FPDF_WIDESTRING, c_ulong, c_int)
- FPDFText_FindStart.restype = FPDF_SCHHANDLE
- # ./fpdf_text.h: 515
- FPDFText_FindNext = _libs['pdfium']['FPDFText_FindNext']
- FPDFText_FindNext.argtypes = (FPDF_SCHHANDLE, )
- FPDFText_FindNext.restype = FPDF_BOOL
- # ./fpdf_text.h: 525
- FPDFText_FindPrev = _libs['pdfium']['FPDFText_FindPrev']
- FPDFText_FindPrev.argtypes = (FPDF_SCHHANDLE, )
- FPDFText_FindPrev.restype = FPDF_BOOL
- # ./fpdf_text.h: 535
- FPDFText_GetSchResultIndex = _libs['pdfium']['FPDFText_GetSchResultIndex']
- FPDFText_GetSchResultIndex.argtypes = (FPDF_SCHHANDLE, )
- FPDFText_GetSchResultIndex.restype = c_int
- # ./fpdf_text.h: 545
- FPDFText_GetSchCount = _libs['pdfium']['FPDFText_GetSchCount']
- FPDFText_GetSchCount.argtypes = (FPDF_SCHHANDLE, )
- FPDFText_GetSchCount.restype = c_int
- # ./fpdf_text.h: 555
- FPDFText_FindClose = _libs['pdfium']['FPDFText_FindClose']
- FPDFText_FindClose.argtypes = (FPDF_SCHHANDLE, )
- FPDFText_FindClose.restype = None
- # ./fpdf_text.h: 577
- FPDFLink_LoadWebLinks = _libs['pdfium']['FPDFLink_LoadWebLinks']
- FPDFLink_LoadWebLinks.argtypes = (FPDF_TEXTPAGE, )
- FPDFLink_LoadWebLinks.restype = FPDF_PAGELINK
- # ./fpdf_text.h: 586
- FPDFLink_CountWebLinks = _libs['pdfium']['FPDFLink_CountWebLinks']
- FPDFLink_CountWebLinks.argtypes = (FPDF_PAGELINK, )
- FPDFLink_CountWebLinks.restype = c_int
- # ./fpdf_text.h: 607
- FPDFLink_GetURL = _libs['pdfium']['FPDFLink_GetURL']
- FPDFLink_GetURL.argtypes = (FPDF_PAGELINK, c_int, POINTER(c_ushort), c_int)
- FPDFLink_GetURL.restype = c_int
- # ./fpdf_text.h: 621
- FPDFLink_CountRects = _libs['pdfium']['FPDFLink_CountRects']
- FPDFLink_CountRects.argtypes = (FPDF_PAGELINK, c_int)
- FPDFLink_CountRects.restype = c_int
- # ./fpdf_text.h: 644
- FPDFLink_GetRect = _libs['pdfium']['FPDFLink_GetRect']
- FPDFLink_GetRect.argtypes = (FPDF_PAGELINK, c_int, c_int, POINTER(c_double), POINTER(c_double), POINTER(c_double), POINTER(c_double))
- FPDFLink_GetRect.restype = FPDF_BOOL
- # ./fpdf_text.h: 667
- FPDFLink_GetTextRange = _libs['pdfium']['FPDFLink_GetTextRange']
- FPDFLink_GetTextRange.argtypes = (FPDF_PAGELINK, c_int, POINTER(c_int), POINTER(c_int))
- FPDFLink_GetTextRange.restype = FPDF_BOOL
- # ./fpdf_text.h: 679
- FPDFLink_CloseWebLinks = _libs['pdfium']['FPDFLink_CloseWebLinks']
- FPDFLink_CloseWebLinks.argtypes = (FPDF_PAGELINK, )
- FPDFLink_CloseWebLinks.restype = None
- # ./fpdf_thumbnail.h: 28
- FPDFPage_GetDecodedThumbnailData = _libs['pdfium']['FPDFPage_GetDecodedThumbnailData']
- FPDFPage_GetDecodedThumbnailData.argtypes = (FPDF_PAGE, POINTER(None), c_ulong)
- FPDFPage_GetDecodedThumbnailData.restype = c_ulong
- # ./fpdf_thumbnail.h: 43
- FPDFPage_GetRawThumbnailData = _libs['pdfium']['FPDFPage_GetRawThumbnailData']
- FPDFPage_GetRawThumbnailData.argtypes = (FPDF_PAGE, POINTER(None), c_ulong)
- FPDFPage_GetRawThumbnailData.restype = c_ulong
- # ./fpdf_thumbnail.h: 53
- FPDFPage_GetThumbnailAsBitmap = _libs['pdfium']['FPDFPage_GetThumbnailAsBitmap']
- FPDFPage_GetThumbnailAsBitmap.argtypes = (FPDF_PAGE, )
- FPDFPage_GetThumbnailAsBitmap.restype = FPDF_BITMAP
- # ./fpdf_transformpage.h: 24
- FPDFPage_SetMediaBox = _libs['pdfium']['FPDFPage_SetMediaBox']
- FPDFPage_SetMediaBox.argtypes = (FPDF_PAGE, c_float, c_float, c_float, c_float)
- FPDFPage_SetMediaBox.restype = None
- # ./fpdf_transformpage.h: 37
- FPDFPage_SetCropBox = _libs['pdfium']['FPDFPage_SetCropBox']
- FPDFPage_SetCropBox.argtypes = (FPDF_PAGE, c_float, c_float, c_float, c_float)
- FPDFPage_SetCropBox.restype = None
- # ./fpdf_transformpage.h: 50
- FPDFPage_SetBleedBox = _libs['pdfium']['FPDFPage_SetBleedBox']
- FPDFPage_SetBleedBox.argtypes = (FPDF_PAGE, c_float, c_float, c_float, c_float)
- FPDFPage_SetBleedBox.restype = None
- # ./fpdf_transformpage.h: 63
- FPDFPage_SetTrimBox = _libs['pdfium']['FPDFPage_SetTrimBox']
- FPDFPage_SetTrimBox.argtypes = (FPDF_PAGE, c_float, c_float, c_float, c_float)
- FPDFPage_SetTrimBox.restype = None
- # ./fpdf_transformpage.h: 76
- FPDFPage_SetArtBox = _libs['pdfium']['FPDFPage_SetArtBox']
- FPDFPage_SetArtBox.argtypes = (FPDF_PAGE, c_float, c_float, c_float, c_float)
- FPDFPage_SetArtBox.restype = None
- # ./fpdf_transformpage.h: 92
- FPDFPage_GetMediaBox = _libs['pdfium']['FPDFPage_GetMediaBox']
- FPDFPage_GetMediaBox.argtypes = (FPDF_PAGE, POINTER(c_float), POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFPage_GetMediaBox.restype = FPDF_BOOL
- # ./fpdf_transformpage.h: 108
- FPDFPage_GetCropBox = _libs['pdfium']['FPDFPage_GetCropBox']
- FPDFPage_GetCropBox.argtypes = (FPDF_PAGE, POINTER(c_float), POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFPage_GetCropBox.restype = FPDF_BOOL
- # ./fpdf_transformpage.h: 124
- FPDFPage_GetBleedBox = _libs['pdfium']['FPDFPage_GetBleedBox']
- FPDFPage_GetBleedBox.argtypes = (FPDF_PAGE, POINTER(c_float), POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFPage_GetBleedBox.restype = FPDF_BOOL
- # ./fpdf_transformpage.h: 140
- FPDFPage_GetTrimBox = _libs['pdfium']['FPDFPage_GetTrimBox']
- FPDFPage_GetTrimBox.argtypes = (FPDF_PAGE, POINTER(c_float), POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFPage_GetTrimBox.restype = FPDF_BOOL
- # ./fpdf_transformpage.h: 156
- FPDFPage_GetArtBox = _libs['pdfium']['FPDFPage_GetArtBox']
- FPDFPage_GetArtBox.argtypes = (FPDF_PAGE, POINTER(c_float), POINTER(c_float), POINTER(c_float), POINTER(c_float))
- FPDFPage_GetArtBox.restype = FPDF_BOOL
- # ./fpdf_transformpage.h: 176
- FPDFPage_TransFormWithClip = _libs['pdfium']['FPDFPage_TransFormWithClip']
- FPDFPage_TransFormWithClip.argtypes = (FPDF_PAGE, POINTER(FS_MATRIX), POINTER(FS_RECTF))
- FPDFPage_TransFormWithClip.restype = FPDF_BOOL
- # ./fpdf_transformpage.h: 191
- FPDFPageObj_TransformClipPath = _libs['pdfium']['FPDFPageObj_TransformClipPath']
- FPDFPageObj_TransformClipPath.argtypes = (FPDF_PAGEOBJECT, c_double, c_double, c_double, c_double, c_double, c_double)
- FPDFPageObj_TransformClipPath.restype = None
- # ./fpdf_transformpage.h: 209
- FPDFPageObj_GetClipPath = _libs['pdfium']['FPDFPageObj_GetClipPath']
- FPDFPageObj_GetClipPath.argtypes = (FPDF_PAGEOBJECT, )
- FPDFPageObj_GetClipPath.restype = FPDF_CLIPPATH
- # ./fpdf_transformpage.h: 217
- FPDFClipPath_CountPaths = _libs['pdfium']['FPDFClipPath_CountPaths']
- FPDFClipPath_CountPaths.argtypes = (FPDF_CLIPPATH, )
- FPDFClipPath_CountPaths.restype = c_int
- # ./fpdf_transformpage.h: 227
- FPDFClipPath_CountPathSegments = _libs['pdfium']['FPDFClipPath_CountPathSegments']
- FPDFClipPath_CountPathSegments.argtypes = (FPDF_CLIPPATH, c_int)
- FPDFClipPath_CountPathSegments.restype = c_int
- # ./fpdf_transformpage.h: 240
- FPDFClipPath_GetPathSegment = _libs['pdfium']['FPDFClipPath_GetPathSegment']
- FPDFClipPath_GetPathSegment.argtypes = (FPDF_CLIPPATH, c_int, c_int)
- FPDFClipPath_GetPathSegment.restype = FPDF_PATHSEGMENT
- # ./fpdf_transformpage.h: 253
- FPDF_CreateClipPath = _libs['pdfium']['FPDF_CreateClipPath']
- FPDF_CreateClipPath.argtypes = (c_float, c_float, c_float, c_float)
- FPDF_CreateClipPath.restype = FPDF_CLIPPATH
- # ./fpdf_transformpage.h: 261
- FPDF_DestroyClipPath = _libs['pdfium']['FPDF_DestroyClipPath']
- FPDF_DestroyClipPath.argtypes = (FPDF_CLIPPATH, )
- FPDF_DestroyClipPath.restype = None
- # ./fpdf_transformpage.h: 271
- FPDFPage_InsertClipPath = _libs['pdfium']['FPDFPage_InsertClipPath']
- FPDFPage_InsertClipPath.argtypes = (FPDF_PAGE, FPDF_CLIPPATH)
- FPDFPage_InsertClipPath.restype = None
- # ./fpdfview.h: 36
- FPDF_OBJECT_UNKNOWN = 0
- # ./fpdfview.h: 37
- FPDF_OBJECT_BOOLEAN = 1
- # ./fpdfview.h: 38
- FPDF_OBJECT_NUMBER = 2
- # ./fpdfview.h: 39
- FPDF_OBJECT_STRING = 3
- # ./fpdfview.h: 40
- FPDF_OBJECT_NAME = 4
- # ./fpdfview.h: 41
- FPDF_OBJECT_ARRAY = 5
- # ./fpdfview.h: 42
- FPDF_OBJECT_DICTIONARY = 6
- # ./fpdfview.h: 43
- FPDF_OBJECT_STREAM = 7
- # ./fpdfview.h: 44
- FPDF_OBJECT_NULLOBJ = 8
- # ./fpdfview.h: 45
- FPDF_OBJECT_REFERENCE = 9
- # ./fpdfview.h: 324
- FPDF_POLICY_MACHINETIME_ACCESS = 0
- # ./fpdfview.h: 580
- FPDF_ERR_SUCCESS = 0
- # ./fpdfview.h: 581
- FPDF_ERR_UNKNOWN = 1
- # ./fpdfview.h: 582
- FPDF_ERR_FILE = 2
- # ./fpdfview.h: 583
- FPDF_ERR_FORMAT = 3
- # ./fpdfview.h: 584
- FPDF_ERR_PASSWORD = 4
- # ./fpdfview.h: 585
- FPDF_ERR_SECURITY = 5
- # ./fpdfview.h: 586
- FPDF_ERR_PAGE = 6
- # ./fpdfview.h: 790
- FPDF_ANNOT = 0x01
- # ./fpdfview.h: 791
- FPDF_LCD_TEXT = 0x02
- # ./fpdfview.h: 792
- FPDF_NO_NATIVETEXT = 0x04
- # ./fpdfview.h: 793
- FPDF_GRAYSCALE = 0x08
- # ./fpdfview.h: 794
- FPDF_DEBUG_INFO = 0x80
- # ./fpdfview.h: 795
- FPDF_NO_CATCH = 0x100
- # ./fpdfview.h: 796
- FPDF_RENDER_LIMITEDIMAGECACHE = 0x200
- # ./fpdfview.h: 797
- FPDF_RENDER_FORCEHALFTONE = 0x400
- # ./fpdfview.h: 798
- FPDF_PRINTING = 0x800
- # ./fpdfview.h: 799
- FPDF_RENDER_NO_SMOOTHTEXT = 0x1000
- # ./fpdfview.h: 800
- FPDF_RENDER_NO_SMOOTHIMAGE = 0x2000
- # ./fpdfview.h: 801
- FPDF_RENDER_NO_SMOOTHPATH = 0x4000
- # ./fpdfview.h: 802
- FPDF_REVERSE_BYTE_ORDER = 0x10
- # ./fpdfview.h: 803
- FPDF_CONVERT_FILL_TO_STROKE = 0x20
- # ./fpdfview.h: 1085
- FPDFBitmap_Unknown = 0
- # ./fpdfview.h: 1086
- FPDFBitmap_Gray = 1
- # ./fpdfview.h: 1087
- FPDFBitmap_BGR = 2
- # ./fpdfview.h: 1088
- FPDFBitmap_BGRx = 3
- # ./fpdfview.h: 1089
- FPDFBitmap_BGRA = 4
- # ./fpdfview.h: 1090
- FPDFBitmap_BGRA_Premul = 5
- # ./fpdf_formfill.h: 2
- FORMTYPE_NONE = 0
- # ./fpdf_formfill.h: 3
- FORMTYPE_ACRO_FORM = 1
- # ./fpdf_formfill.h: 4
- FORMTYPE_XFA_FULL = 2
- # ./fpdf_formfill.h: 5
- FORMTYPE_XFA_FOREGROUND = 3
- # ./fpdf_formfill.h: 6
- FORMTYPE_COUNT = 4
- # ./fpdf_formfill.h: 7
- JSPLATFORM_ALERT_BUTTON_OK = 0
- # ./fpdf_formfill.h: 8
- JSPLATFORM_ALERT_BUTTON_OKCANCEL = 1
- # ./fpdf_formfill.h: 9
- JSPLATFORM_ALERT_BUTTON_YESNO = 2
- # ./fpdf_formfill.h: 10
- JSPLATFORM_ALERT_BUTTON_YESNOCANCEL = 3
- # ./fpdf_formfill.h: 11
- JSPLATFORM_ALERT_BUTTON_DEFAULT = JSPLATFORM_ALERT_BUTTON_OK
- # ./fpdf_formfill.h: 12
- JSPLATFORM_ALERT_ICON_ERROR = 0
- # ./fpdf_formfill.h: 13
- JSPLATFORM_ALERT_ICON_WARNING = 1
- # ./fpdf_formfill.h: 14
- JSPLATFORM_ALERT_ICON_QUESTION = 2
- # ./fpdf_formfill.h: 15
- JSPLATFORM_ALERT_ICON_STATUS = 3
- # ./fpdf_formfill.h: 16
- JSPLATFORM_ALERT_ICON_ASTERISK = 4
- # ./fpdf_formfill.h: 17
- JSPLATFORM_ALERT_ICON_DEFAULT = JSPLATFORM_ALERT_ICON_ERROR
- # ./fpdf_formfill.h: 18
- JSPLATFORM_ALERT_RETURN_OK = 1
- # ./fpdf_formfill.h: 19
- JSPLATFORM_ALERT_RETURN_CANCEL = 2
- # ./fpdf_formfill.h: 20
- JSPLATFORM_ALERT_RETURN_NO = 3
- # ./fpdf_formfill.h: 21
- JSPLATFORM_ALERT_RETURN_YES = 4
- # ./fpdf_formfill.h: 22
- JSPLATFORM_BEEP_ERROR = 0
- # ./fpdf_formfill.h: 23
- JSPLATFORM_BEEP_WARNING = 1
- # ./fpdf_formfill.h: 24
- JSPLATFORM_BEEP_QUESTION = 2
- # ./fpdf_formfill.h: 25
- JSPLATFORM_BEEP_STATUS = 3
- # ./fpdf_formfill.h: 26
- JSPLATFORM_BEEP_DEFAULT = 4
- # ./fpdf_formfill.h: 284
- FXCT_ARROW = 0
- # ./fpdf_formfill.h: 285
- FXCT_NESW = 1
- # ./fpdf_formfill.h: 286
- FXCT_NWSE = 2
- # ./fpdf_formfill.h: 287
- FXCT_VBEAM = 3
- # ./fpdf_formfill.h: 288
- FXCT_HBEAM = 4
- # ./fpdf_formfill.h: 289
- FXCT_HAND = 5
- # ./fpdf_formfill.h: 1123
- FPDFDOC_AACTION_WC = 0x10
- # ./fpdf_formfill.h: 1124
- FPDFDOC_AACTION_WS = 0x11
- # ./fpdf_formfill.h: 1125
- FPDFDOC_AACTION_DS = 0x12
- # ./fpdf_formfill.h: 1126
- FPDFDOC_AACTION_WP = 0x13
- # ./fpdf_formfill.h: 1127
- FPDFDOC_AACTION_DP = 0x14
- # ./fpdf_formfill.h: 1151
- FPDFPAGE_AACTION_OPEN = 0
- # ./fpdf_formfill.h: 1152
- FPDFPAGE_AACTION_CLOSE = 1
- # ./fpdf_formfill.h: 1571
- FPDF_FORMFIELD_UNKNOWN = 0
- # ./fpdf_formfill.h: 1572
- FPDF_FORMFIELD_PUSHBUTTON = 1
- # ./fpdf_formfill.h: 1573
- FPDF_FORMFIELD_CHECKBOX = 2
- # ./fpdf_formfill.h: 1574
- FPDF_FORMFIELD_RADIOBUTTON = 3
- # ./fpdf_formfill.h: 1575
- FPDF_FORMFIELD_COMBOBOX = 4
- # ./fpdf_formfill.h: 1576
- FPDF_FORMFIELD_LISTBOX = 5
- # ./fpdf_formfill.h: 1577
- FPDF_FORMFIELD_TEXTFIELD = 6
- # ./fpdf_formfill.h: 1578
- FPDF_FORMFIELD_SIGNATURE = 7
- # ./fpdf_formfill.h: 1599
- FPDF_FORMFIELD_COUNT = 8
- # ./fpdf_annot.h: 15
- FPDF_ANNOT_UNKNOWN = 0
- # ./fpdf_annot.h: 16
- FPDF_ANNOT_TEXT = 1
- # ./fpdf_annot.h: 17
- FPDF_ANNOT_LINK = 2
- # ./fpdf_annot.h: 18
- FPDF_ANNOT_FREETEXT = 3
- # ./fpdf_annot.h: 19
- FPDF_ANNOT_LINE = 4
- # ./fpdf_annot.h: 20
- FPDF_ANNOT_SQUARE = 5
- # ./fpdf_annot.h: 21
- FPDF_ANNOT_CIRCLE = 6
- # ./fpdf_annot.h: 22
- FPDF_ANNOT_POLYGON = 7
- # ./fpdf_annot.h: 23
- FPDF_ANNOT_POLYLINE = 8
- # ./fpdf_annot.h: 24
- FPDF_ANNOT_HIGHLIGHT = 9
- # ./fpdf_annot.h: 25
- FPDF_ANNOT_UNDERLINE = 10
- # ./fpdf_annot.h: 26
- FPDF_ANNOT_SQUIGGLY = 11
- # ./fpdf_annot.h: 27
- FPDF_ANNOT_STRIKEOUT = 12
- # ./fpdf_annot.h: 28
- FPDF_ANNOT_STAMP = 13
- # ./fpdf_annot.h: 29
- FPDF_ANNOT_CARET = 14
- # ./fpdf_annot.h: 30
- FPDF_ANNOT_INK = 15
- # ./fpdf_annot.h: 31
- FPDF_ANNOT_POPUP = 16
- # ./fpdf_annot.h: 32
- FPDF_ANNOT_FILEATTACHMENT = 17
- # ./fpdf_annot.h: 33
- FPDF_ANNOT_SOUND = 18
- # ./fpdf_annot.h: 34
- FPDF_ANNOT_MOVIE = 19
- # ./fpdf_annot.h: 35
- FPDF_ANNOT_WIDGET = 20
- # ./fpdf_annot.h: 36
- FPDF_ANNOT_SCREEN = 21
- # ./fpdf_annot.h: 37
- FPDF_ANNOT_PRINTERMARK = 22
- # ./fpdf_annot.h: 38
- FPDF_ANNOT_TRAPNET = 23
- # ./fpdf_annot.h: 39
- FPDF_ANNOT_WATERMARK = 24
- # ./fpdf_annot.h: 40
- FPDF_ANNOT_THREED = 25
- # ./fpdf_annot.h: 41
- FPDF_ANNOT_RICHMEDIA = 26
- # ./fpdf_annot.h: 42
- FPDF_ANNOT_XFAWIDGET = 27
- # ./fpdf_annot.h: 43
- FPDF_ANNOT_REDACT = 28
- # ./fpdf_annot.h: 44
- FPDF_ANNOT_FLAG_NONE = 0
- # ./fpdf_annot.h: 45
- FPDF_ANNOT_FLAG_INVISIBLE = (1 << 0)
- # ./fpdf_annot.h: 46
- FPDF_ANNOT_FLAG_HIDDEN = (1 << 1)
- # ./fpdf_annot.h: 47
- FPDF_ANNOT_FLAG_PRINT = (1 << 2)
- # ./fpdf_annot.h: 48
- FPDF_ANNOT_FLAG_NOZOOM = (1 << 3)
- # ./fpdf_annot.h: 49
- FPDF_ANNOT_FLAG_NOROTATE = (1 << 4)
- # ./fpdf_annot.h: 50
- FPDF_ANNOT_FLAG_NOVIEW = (1 << 5)
- # ./fpdf_annot.h: 51
- FPDF_ANNOT_FLAG_READONLY = (1 << 6)
- # ./fpdf_annot.h: 52
- FPDF_ANNOT_FLAG_LOCKED = (1 << 7)
- # ./fpdf_annot.h: 53
- FPDF_ANNOT_FLAG_TOGGLENOVIEW = (1 << 8)
- # ./fpdf_annot.h: 54
- FPDF_ANNOT_APPEARANCEMODE_NORMAL = 0
- # ./fpdf_annot.h: 55
- FPDF_ANNOT_APPEARANCEMODE_ROLLOVER = 1
- # ./fpdf_annot.h: 56
- FPDF_ANNOT_APPEARANCEMODE_DOWN = 2
- # ./fpdf_annot.h: 57
- FPDF_ANNOT_APPEARANCEMODE_COUNT = 3
- # ./fpdf_annot.h: 58
- FPDF_FORMFLAG_NONE = 0
- # ./fpdf_annot.h: 59
- FPDF_FORMFLAG_READONLY = (1 << 0)
- # ./fpdf_annot.h: 60
- FPDF_FORMFLAG_REQUIRED = (1 << 1)
- # ./fpdf_annot.h: 61
- FPDF_FORMFLAG_NOEXPORT = (1 << 2)
- # ./fpdf_annot.h: 62
- FPDF_FORMFLAG_TEXT_MULTILINE = (1 << 12)
- # ./fpdf_annot.h: 63
- FPDF_FORMFLAG_TEXT_PASSWORD = (1 << 13)
- # ./fpdf_annot.h: 64
- FPDF_FORMFLAG_CHOICE_COMBO = (1 << 17)
- # ./fpdf_annot.h: 65
- FPDF_FORMFLAG_CHOICE_EDIT = (1 << 18)
- # ./fpdf_annot.h: 66
- FPDF_FORMFLAG_CHOICE_MULTI_SELECT = (1 << 21)
- # ./fpdf_annot.h: 67
- FPDF_ANNOT_AACTION_KEY_STROKE = 12
- # ./fpdf_annot.h: 68
- FPDF_ANNOT_AACTION_FORMAT = 13
- # ./fpdf_annot.h: 69
- FPDF_ANNOT_AACTION_VALIDATE = 14
- # ./fpdf_annot.h: 70
- FPDF_ANNOT_AACTION_CALCULATE = 15
- # ./fpdf_dataavail.h: 11
- PDF_LINEARIZATION_UNKNOWN = (-1)
- # ./fpdf_dataavail.h: 12
- PDF_NOT_LINEARIZED = 0
- # ./fpdf_dataavail.h: 13
- PDF_LINEARIZED = 1
- # ./fpdf_dataavail.h: 14
- PDF_DATA_ERROR = (-1)
- # ./fpdf_dataavail.h: 15
- PDF_DATA_NOTAVAIL = 0
- # ./fpdf_dataavail.h: 16
- PDF_DATA_AVAIL = 1
- # ./fpdf_dataavail.h: 17
- PDF_FORM_ERROR = (-1)
- # ./fpdf_dataavail.h: 18
- PDF_FORM_NOTAVAIL = 0
- # ./fpdf_dataavail.h: 19
- PDF_FORM_AVAIL = 1
- # ./fpdf_dataavail.h: 20
- PDF_FORM_NOTEXIST = 2
- # ./fpdf_doc.h: 18
- PDFACTION_UNSUPPORTED = 0
- # ./fpdf_doc.h: 19
- PDFACTION_GOTO = 1
- # ./fpdf_doc.h: 20
- PDFACTION_REMOTEGOTO = 2
- # ./fpdf_doc.h: 21
- PDFACTION_URI = 3
- # ./fpdf_doc.h: 22
- PDFACTION_LAUNCH = 4
- # ./fpdf_doc.h: 23
- PDFACTION_EMBEDDEDGOTO = 5
- # ./fpdf_doc.h: 24
- PDFDEST_VIEW_UNKNOWN_MODE = 0
- # ./fpdf_doc.h: 25
- PDFDEST_VIEW_XYZ = 1
- # ./fpdf_doc.h: 26
- PDFDEST_VIEW_FIT = 2
- # ./fpdf_doc.h: 27
- PDFDEST_VIEW_FITH = 3
- # ./fpdf_doc.h: 28
- PDFDEST_VIEW_FITV = 4
- # ./fpdf_doc.h: 29
- PDFDEST_VIEW_FITR = 5
- # ./fpdf_doc.h: 30
- PDFDEST_VIEW_FITB = 6
- # ./fpdf_doc.h: 31
- PDFDEST_VIEW_FITBH = 7
- # ./fpdf_doc.h: 32
- PDFDEST_VIEW_FITBV = 8
- # ./fpdf_edit.h: 11
- def FPDF_ARGB(a, r, g, b):
- return uint32_t(((((uint32_t(b).value & 0xff) | ((uint32_t(g).value & 0xff) << 8)) | ((uint32_t(r).value & 0xff) << 16)) | ((uint32_t(a).value & 0xff) << 24))).value
- # ./fpdf_edit.h: 12
- def FPDF_GetBValue(argb):
- return uint8_t(argb).value
- # ./fpdf_edit.h: 13
- def FPDF_GetGValue(argb):
- return uint8_t((uint16_t(argb).value >> 8)).value
- # ./fpdf_edit.h: 14
- def FPDF_GetRValue(argb):
- return uint8_t((argb >> 16)).value
- # ./fpdf_edit.h: 15
- def FPDF_GetAValue(argb):
- return uint8_t((argb >> 24)).value
- # ./fpdf_edit.h: 16
- FPDF_COLORSPACE_UNKNOWN = 0
- # ./fpdf_edit.h: 17
- FPDF_COLORSPACE_DEVICEGRAY = 1
- # ./fpdf_edit.h: 18
- FPDF_COLORSPACE_DEVICERGB = 2
- # ./fpdf_edit.h: 19
- FPDF_COLORSPACE_DEVICECMYK = 3
- # ./fpdf_edit.h: 20
- FPDF_COLORSPACE_CALGRAY = 4
- # ./fpdf_edit.h: 21
- FPDF_COLORSPACE_CALRGB = 5
- # ./fpdf_edit.h: 22
- FPDF_COLORSPACE_LAB = 6
- # ./fpdf_edit.h: 23
- FPDF_COLORSPACE_ICCBASED = 7
- # ./fpdf_edit.h: 24
- FPDF_COLORSPACE_SEPARATION = 8
- # ./fpdf_edit.h: 25
- FPDF_COLORSPACE_DEVICEN = 9
- # ./fpdf_edit.h: 26
- FPDF_COLORSPACE_INDEXED = 10
- # ./fpdf_edit.h: 27
- FPDF_COLORSPACE_PATTERN = 11
- # ./fpdf_edit.h: 28
- FPDF_PAGEOBJ_UNKNOWN = 0
- # ./fpdf_edit.h: 29
- FPDF_PAGEOBJ_TEXT = 1
- # ./fpdf_edit.h: 30
- FPDF_PAGEOBJ_PATH = 2
- # ./fpdf_edit.h: 31
- FPDF_PAGEOBJ_IMAGE = 3
- # ./fpdf_edit.h: 32
- FPDF_PAGEOBJ_SHADING = 4
- # ./fpdf_edit.h: 33
- FPDF_PAGEOBJ_FORM = 5
- # ./fpdf_edit.h: 34
- FPDF_SEGMENT_UNKNOWN = (-1)
- # ./fpdf_edit.h: 35
- FPDF_SEGMENT_LINETO = 0
- # ./fpdf_edit.h: 36
- FPDF_SEGMENT_BEZIERTO = 1
- # ./fpdf_edit.h: 37
- FPDF_SEGMENT_MOVETO = 2
- # ./fpdf_edit.h: 38
- FPDF_FILLMODE_NONE = 0
- # ./fpdf_edit.h: 39
- FPDF_FILLMODE_ALTERNATE = 1
- # ./fpdf_edit.h: 40
- FPDF_FILLMODE_WINDING = 2
- # ./fpdf_edit.h: 41
- FPDF_FONT_TYPE1 = 1
- # ./fpdf_edit.h: 42
- FPDF_FONT_TRUETYPE = 2
- # ./fpdf_edit.h: 43
- FPDF_LINECAP_BUTT = 0
- # ./fpdf_edit.h: 44
- FPDF_LINECAP_ROUND = 1
- # ./fpdf_edit.h: 45
- FPDF_LINECAP_PROJECTING_SQUARE = 2
- # ./fpdf_edit.h: 46
- FPDF_LINEJOIN_MITER = 0
- # ./fpdf_edit.h: 47
- FPDF_LINEJOIN_ROUND = 1
- # ./fpdf_edit.h: 48
- FPDF_LINEJOIN_BEVEL = 2
- # ./fpdf_edit.h: 49
- FPDF_PRINTMODE_EMF = 0
- # ./fpdf_edit.h: 50
- FPDF_PRINTMODE_TEXTONLY = 1
- # ./fpdf_edit.h: 51
- FPDF_PRINTMODE_POSTSCRIPT2 = 2
- # ./fpdf_edit.h: 52
- FPDF_PRINTMODE_POSTSCRIPT3 = 3
- # ./fpdf_edit.h: 53
- FPDF_PRINTMODE_POSTSCRIPT2_PASSTHROUGH = 4
- # ./fpdf_edit.h: 54
- FPDF_PRINTMODE_POSTSCRIPT3_PASSTHROUGH = 5
- # ./fpdf_edit.h: 55
- FPDF_PRINTMODE_EMF_IMAGE_MASKS = 6
- # ./fpdf_edit.h: 56
- FPDF_PRINTMODE_POSTSCRIPT3_TYPE42 = 7
- # ./fpdf_edit.h: 57
- FPDF_PRINTMODE_POSTSCRIPT3_TYPE42_PASSTHROUGH = 8
- # ./fpdf_ext.h: 20
- FPDF_UNSP_DOC_XFAFORM = 1
- # ./fpdf_ext.h: 21
- FPDF_UNSP_DOC_PORTABLECOLLECTION = 2
- # ./fpdf_ext.h: 22
- FPDF_UNSP_DOC_ATTACHMENT = 3
- # ./fpdf_ext.h: 23
- FPDF_UNSP_DOC_SECURITY = 4
- # ./fpdf_ext.h: 24
- FPDF_UNSP_DOC_SHAREDREVIEW = 5
- # ./fpdf_ext.h: 25
- FPDF_UNSP_DOC_SHAREDFORM_ACROBAT = 6
- # ./fpdf_ext.h: 26
- FPDF_UNSP_DOC_SHAREDFORM_FILESYSTEM = 7
- # ./fpdf_ext.h: 27
- FPDF_UNSP_DOC_SHAREDFORM_EMAIL = 8
- # ./fpdf_ext.h: 28
- FPDF_UNSP_ANNOT_3DANNOT = 11
- # ./fpdf_ext.h: 29
- FPDF_UNSP_ANNOT_MOVIE = 12
- # ./fpdf_ext.h: 30
- FPDF_UNSP_ANNOT_SOUND = 13
- # ./fpdf_ext.h: 31
- FPDF_UNSP_ANNOT_SCREEN_MEDIA = 14
- # ./fpdf_ext.h: 32
- FPDF_UNSP_ANNOT_SCREEN_RICHMEDIA = 15
- # ./fpdf_ext.h: 33
- FPDF_UNSP_ANNOT_ATTACHMENT = 16
- # ./fpdf_ext.h: 34
- FPDF_UNSP_ANNOT_SIG = 17
- # ./fpdf_ext.h: 88
- PAGEMODE_UNKNOWN = (-1)
- # ./fpdf_ext.h: 89
- PAGEMODE_USENONE = 0
- # ./fpdf_ext.h: 90
- PAGEMODE_USEOUTLINES = 1
- # ./fpdf_ext.h: 91
- PAGEMODE_USETHUMBS = 2
- # ./fpdf_ext.h: 92
- PAGEMODE_FULLSCREEN = 3
- # ./fpdf_ext.h: 93
- PAGEMODE_USEOC = 4
- # ./fpdf_ext.h: 94
- PAGEMODE_USEATTACHMENTS = 5
- # ./fpdf_flatten.h: 2
- FLATTEN_FAIL = 0
- # ./fpdf_flatten.h: 3
- FLATTEN_SUCCESS = 1
- # ./fpdf_flatten.h: 4
- FLATTEN_NOTHINGTODO = 2
- # ./fpdf_flatten.h: 5
- FLAT_NORMALDISPLAY = 0
- # ./fpdf_flatten.h: 6
- FLAT_PRINT = 1
- # ./fpdf_progressive.h: 2
- FPDF_RENDER_READY = 0
- # ./fpdf_progressive.h: 3
- FPDF_RENDER_TOBECONTINUED = 1
- # ./fpdf_progressive.h: 4
- FPDF_RENDER_DONE = 2
- # ./fpdf_progressive.h: 5
- FPDF_RENDER_FAILED = 3
- # ./fpdf_save.h: 39
- FPDF_INCREMENTAL = 1
- # ./fpdf_save.h: 40
- FPDF_NO_INCREMENTAL = 2
- # ./fpdf_save.h: 41
- FPDF_REMOVE_SECURITY = 3
- # ./fpdf_sysfontinfo.h: 11
- FXFONT_ANSI_CHARSET = 0
- # ./fpdf_sysfontinfo.h: 12
- FXFONT_DEFAULT_CHARSET = 1
- # ./fpdf_sysfontinfo.h: 13
- FXFONT_SYMBOL_CHARSET = 2
- # ./fpdf_sysfontinfo.h: 14
- FXFONT_SHIFTJIS_CHARSET = 128
- # ./fpdf_sysfontinfo.h: 15
- FXFONT_HANGEUL_CHARSET = 129
- # ./fpdf_sysfontinfo.h: 16
- FXFONT_GB2312_CHARSET = 134
- # ./fpdf_sysfontinfo.h: 17
- FXFONT_CHINESEBIG5_CHARSET = 136
- # ./fpdf_sysfontinfo.h: 18
- FXFONT_GREEK_CHARSET = 161
- # ./fpdf_sysfontinfo.h: 19
- FXFONT_VIETNAMESE_CHARSET = 163
- # ./fpdf_sysfontinfo.h: 20
- FXFONT_HEBREW_CHARSET = 177
- # ./fpdf_sysfontinfo.h: 21
- FXFONT_ARABIC_CHARSET = 178
- # ./fpdf_sysfontinfo.h: 22
- FXFONT_CYRILLIC_CHARSET = 204
- # ./fpdf_sysfontinfo.h: 23
- FXFONT_THAI_CHARSET = 222
- # ./fpdf_sysfontinfo.h: 24
- FXFONT_EASTERNEUROPEAN_CHARSET = 238
- # ./fpdf_sysfontinfo.h: 25
- FXFONT_FF_FIXEDPITCH = (1 << 0)
- # ./fpdf_sysfontinfo.h: 26
- FXFONT_FF_ROMAN = (1 << 4)
- # ./fpdf_sysfontinfo.h: 27
- FXFONT_FF_SCRIPT = (4 << 4)
- # ./fpdf_sysfontinfo.h: 28
- FXFONT_FW_NORMAL = 400
- # ./fpdf_sysfontinfo.h: 29
- FXFONT_FW_BOLD = 700
- # ./fpdf_text.h: 472
- FPDF_MATCHCASE = 0x00000001
- # ./fpdf_text.h: 473
- FPDF_MATCHWHOLEWORD = 0x00000002
- # ./fpdf_text.h: 474
- FPDF_CONSECUTIVE = 0x00000004
- # ./fpdf_edit.h: 93
- FPDF_IMAGEOBJ_METADATA = struct_FPDF_IMAGEOBJ_METADATA
- # -- End header members --
|