mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-11-08 06:28:27 +01:00
Save work.
This commit is contained in:
parent
45899f8a8d
commit
0ae8ddc515
4
TODO.md
4
TODO.md
@ -1,10 +1,14 @@
|
||||
To-Do List
|
||||
==========
|
||||
|
||||
- Graphics mini-library
|
||||
- Functions to send PDF drawing commands
|
||||
- Resources:
|
||||
- Fonts
|
||||
- ICC profiles/standard color spaces
|
||||
- Images
|
||||
- Others?
|
||||
- Object/page copy methods
|
||||
- Security handlers (RC4 + AES, MD5 + SHA-256) for reading encrypted documents.
|
||||
- Signature generation/validation code
|
||||
- Documentation
|
||||
|
158
pdfio-content.h
Normal file
158
pdfio-content.h
Normal file
@ -0,0 +1,158 @@
|
||||
//
|
||||
// Public content header file for pdfio.
|
||||
//
|
||||
// Copyright © 2021 by Michael R Sweet.
|
||||
//
|
||||
// Licensed under Apache License v2.0. See the file "LICENSE" for more
|
||||
// information.
|
||||
//
|
||||
|
||||
#ifndef PDFIO_CONTENT_H
|
||||
# define PDFIO_CONTENT_H
|
||||
|
||||
//
|
||||
// Include necessary headers...
|
||||
//
|
||||
|
||||
# include "pdfio.h"
|
||||
|
||||
|
||||
//
|
||||
// C++ magic...
|
||||
//
|
||||
|
||||
# ifdef __cplusplus
|
||||
extern "C" {
|
||||
# endif // __cplusplus
|
||||
|
||||
|
||||
//
|
||||
// Types and constants...
|
||||
//
|
||||
|
||||
typedef enum pdfio_linecap_e // Line capping modes
|
||||
{
|
||||
PDFIO_LINECAP_ = , //
|
||||
PDFIO_LINECAP_ = , //
|
||||
PDFIO_LINECAP_ = , //
|
||||
PDFIO_LINECAP_ = , //
|
||||
PDFIO_LINECAP_ = , //
|
||||
PDFIO_LINECAP_ = , //
|
||||
PDFIO_LINECAP_ = , //
|
||||
} pdfio_linecap_t;
|
||||
|
||||
typedef enum pdfio_linejoin_e // Line joining modes
|
||||
{
|
||||
PDFIO_LINEJOIN_ = , //
|
||||
PDFIO_LINEJOIN_ = , //
|
||||
PDFIO_LINEJOIN_ = , //
|
||||
PDFIO_LINEJOIN_ = , //
|
||||
PDFIO_LINEJOIN_ = , //
|
||||
PDFIO_LINEJOIN_ = , //
|
||||
} pdfio_linejoin_t;
|
||||
|
||||
typedef float pdfio_matrix_t[3][2]; // Transform matrix
|
||||
|
||||
typedef enum pdfio_textrendering_e // Text rendering modes
|
||||
{
|
||||
PDFIO_TEXTRENDERING_FILL, // Fill text
|
||||
PDFIO_TEXTRENDERING_STROKE, // Stroke text
|
||||
PDFIO_TEXTRENDERING_FILL_AND_STROKE, // Fill then stroke text
|
||||
PDFIO_TEXTRENDERING_INVISIBLE, // Don't fill or stroke (invisible)
|
||||
PDFIO_TEXTRENDERING_FILL_PATH, // Fill text and add to path
|
||||
PDFIO_TEXTRENDERING_STROKE_PATH, // Stroke text and add to path
|
||||
PDFIO_TEXTRENDERING_FILL_AND_STROKE_PATH,
|
||||
// Fill then stroke text and add to path
|
||||
PDFIO_TEXTRENDERING_TEXT_PATH // Add text to path (invisible)
|
||||
} pdfio_textrendering_t;
|
||||
|
||||
extern const float pdfioAdobeRGBGamma;
|
||||
// AdobeRGB gamma
|
||||
extern const float pdfioAdobeRGBWhitePoint[];
|
||||
// AdobeRGB white point
|
||||
extern const float pdfioDisplayP3Gamma;
|
||||
// Display P3 gamma
|
||||
extern const float pdfioDisplayP3WhitePoint[];
|
||||
// Display P3 white point
|
||||
extern const float pdfioSRGBGamma; // sRGB gamma
|
||||
extern const float pdfioSRGBWhitePoint[];
|
||||
// sRGB white point
|
||||
|
||||
|
||||
//
|
||||
// Functions...
|
||||
//
|
||||
|
||||
// PDF content drawing functions...
|
||||
extern bool pdfioContentBeginText(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentClip(pdfio_stream_t *st, bool even_odd) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentDrawImage(pdfio_stream_t *st, const char *name) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentEndText(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentFill(pdfio_stream_t *st, bool even_odd) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentFillAndStroke(pdfio_stream_t *st, bool even_odd) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentMatrixConcat(pdfio_stream_t *st, pdfio_matrix_t m) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentMatrixRotate(pdfio_stream_t *st, float degrees) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentMatrixScale(pdfio_stream_t *st, float sx, float sy) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentMatrixTranslate(pdfio_stream_t *st, float tx, float ty) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentMoveTextLine(pdfio_stream_t *st, float tx, float ty) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentMoveTextTo(pdfio_stream_t *st, float x, float y, float leading) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentNextTextLine(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathClose(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathCurveTo(pdfio_stream_t *st, float x, float y) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathEnd(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathLineTo(pdfio_stream_t *st, float x, float y) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathMoveTo(pdfio_stream_t *st, float x, float y) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathNew(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentPathRect(pdfio_stream_t *st, pdfio_rect_t *rect) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentRestore(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSave(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetCharacterSpacing(pdfio_stream_t *st, float spacing) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetDashPattern(pdfio_stream_t *st,) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFillColorDeviceCMYK(pdfio_stream_t *st, float c, float m, float y, float k) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFillColorDeviceGray(pdfio_stream_t *st, float g) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFillColorDeviceRGB(pdfio_stream_t *st, float r, float g, float b) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFillColorGray(pdfio_stream_t *st, float g) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFillColorRGB(pdfio_stream_t *st, float r, float g, float b) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFillColorSpace(pdfio_stream_t *st, const char *name) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFlatness(pdfio_stream_t *st, float f) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetFont(pdfio_stream_t *st, const char *name, float size) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetLineCap(pdfio_stream_t *st, pdfio_linecap_t lc) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetLineJoin(pdfio_stream_t *st, pdfio_linejoin_t lj) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetLineWidth(pdfio_stream_t *st, float w) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetMiterLimit(pdfio_stream_t *st, float l) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetStrokeColorDeviceCMYK(pdfio_stream_t *st, float c, float m, float y, float k) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetStrokeColorDeviceGray(pdfio_stream_t *st, float g) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetStrokeColorDeviceRGB(pdfio_stream_t *st, float r, float g, float b) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetStrokeColorGray(pdfio_stream_t *st, float g) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetStrokeColorRGB(pdfio_stream_t *st, float r, float g, float b) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetStrokeColorSpace(pdfio_stream_t *st, const char *name) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetTextLeading(pdfio_stream_t *st, float leading) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetTextMatrix(pdfio_stream_t *st, pdfio_matrix_t m) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetTextRenderingMode(pdfio_stream_t *st, pdfio_textrendering_t mode) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetTextRise(pdfio_stream_t *st, float rise) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetTextWordSpacing(pdfio_stream_t *st, float spacing) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentSetTextXScaling(pdfio_stream_t *st, float percent) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentShowJustifiedText(pdfio_stream_t *st, size_t num_fragments, const float **offsets, const char * const *fragments) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentShowText(pdfio_stream_t *st, const char *s, bool new_line) PDFIO_PUBLIC;
|
||||
extern bool pdfioContentStroke(pdfio_stream_t *st) PDFIO_PUBLIC;
|
||||
|
||||
// Page dictionary helpers...
|
||||
extern bool pdfioPageDictAddICCColorSpace(pdfio_dict_t *dict, const char *name, pdfio_obj_t *obj);
|
||||
extern bool pdfioPageDictAddCalibratedColorSpace(pdfio_dict_t *dict, const char *name, size_t num_colors, const float *white_point, float gamma);
|
||||
extern bool pdfioPageDictAddFont(pdfio_dict_t *dict, const char *name, pdfio_obj_t *obj);
|
||||
extern bool pdfioPageDictAddImage(pdfio_dict_t *dict, const char *name, pdfio_obj_t *obj);
|
||||
|
||||
// Resource helpers...
|
||||
extern pdfio_obj_t *pdfioFileCreateFontObject(pdfio_file_t *pdf, const char *filename) PDFIO_PUBLIC;
|
||||
extern pdfio_obj_t *pdfioFileCreateICCProfileObject(pdfio_file_t *pdf, const char *filename) PDFIO_PUBLIC;
|
||||
extern pdfio_obj_t *pdfioFileCreateImageObject(pdfio_file_t *pdf, const char *filename, bool interpolate) PDFIO_PUBLIC;
|
||||
|
||||
|
||||
//
|
||||
// C++ magic...
|
||||
//
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif // __cplusplus
|
||||
#endif // !PDFIO_CONTENT_H
|
Loading…
Reference in New Issue
Block a user