
文章平均质量分 72
代码只是想想就好
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
PDF-pixmap
#ifndef MUPDF_FITZ_PIXMAP_H#define MUPDF_FITZ_PIXMAP_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/store.h”#include “mupdf/fitz/separation.h”/**Pixmaps represent a set of pixels f原创 2021-07-16 18:08:00 · 1105 阅读 · 0 评论 -
PDF-path
#ifndef MUPDF_FITZ_PATH_H#define MUPDF_FITZ_PATH_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”/**Vector path buffer.It can be stroked and dashed, or be filled.It has a fill rule (nonzero or eve原创 2021-07-16 17:05:38 · 389 阅读 · 0 评论 -
PDF-Outline
#ifndef MUPDF_FITZ_OUTLINE_H#define MUPDF_FITZ_OUTLINE_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/link.h”#include “mupdf/fitz/output.h”/* Outline *//**fz_outline is a tree of the outline of a document (also k原创 2021-07-16 16:43:23 · 548 阅读 · 0 评论 -
PDF-link
#ifndef MUPDF_FITZ_LINK_H#define MUPDF_FITZ_LINK_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”/**fz_link is a list of interactive links on a page.There is no relation between the order of the links in原创 2021-07-16 14:41:17 · 215 阅读 · 0 评论 -
PDF-image
#ifndef MUPDF_FITZ_IMAGE_H#define MUPDF_FITZ_IMAGE_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/store.h”#include “mupdf/fitz/pixmap.h”#include “mupdf/fitz/buffer.h”#include “mupdf/fitz/stream.h”#include “mupdf/原创 2021-07-16 14:30:24 · 986 阅读 · 0 评论 -
PDF-glyph-cache.h
#ifndef MUPDF_FITZ_GLYPH_CACHE_H#define MUPDF_FITZ_GLYPH_CACHE_H#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/font.h”#include “mupdf/fitz/pixmap.h”/**Purge all the glyphs from the cache.从缓存中清除所有字形。*/void fz_p原创 2021-07-16 14:00:38 · 163 阅读 · 0 评论 -
PDF-glyph
#ifndef MUPDF_FITZ_GLYPH_H#define MUPDF_FITZ_GLYPH_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/store.h”/**Glyphs represent a run length encoded set of pixels for a 2dimensional原创 2021-07-16 13:50:15 · 181 阅读 · 0 评论 -
PDF-geometry
#ifndef MUPDF_FITZ_MATH_H#define MUPDF_FITZ_MATH_H#include “mupdf/fitz/system.h”#include <assert.h>/**Multiply scaled two integers in the 0…255 range将 0…255 范围内的两个整数相乘/static inline int fz_mul255(int a, int b){/ see Jim Blinn’s book “Dirty原创 2021-07-16 11:38:36 · 298 阅读 · 0 评论 -
PDF-Font
#ifndef MUPDF_FITZ_FONT_H#define MUPDF_FITZ_FONT_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/buffer.h”/* forward declaration for circular dependency */struct fz_device;/* Variou原创 2021-07-16 11:09:47 · 960 阅读 · 0 评论 -
PDF-filter
#ifndef MUPDF_FITZ_FILTER_H#define MUPDF_FITZ_FILTER_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/buffer.h”#include “mupdf/fitz/store.h”#include “mupdf/fitz/stream.h”typedef struct fz_jbig2_globals fz_jbig2_glob原创 2021-07-16 09:38:13 · 431 阅读 · 0 评论 -
PDF-Document
#ifndef MUPDF_FITZ_DOCUMENT_H#define MUPDF_FITZ_DOCUMENT_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/device.h”#include “mupdf/fitz/transition.h”#include “mupdf/fitz/link.h”#incl原创 2021-07-15 21:01:11 · 1810 阅读 · 0 评论 -
mupdf-displaylist.h
#ifndef MUPDF_FITZ_DISPLAY_LIST_H#define MUPDF_FITZ_DISPLAY_LIST_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/device.h”/**Display list device – record and play back device command原创 2021-07-15 14:46:35 · 253 阅读 · 0 评论 -
PDF-Device
#ifndef MUPDF_FITZ_DEVICE_H#define MUPDF_FITZ_DEVICE_H#include “mupdf/fitz/system.h”#include “mupdf/fitz/context.h”#include “mupdf/fitz/geometry.h”#include “mupdf/fitz/image.h”#include “mupdf/fitz/shade.h”#include “mupdf/fitz/path.h”#include “mupdf原创 2021-07-15 14:15:08 · 371 阅读 · 0 评论 -
PDF-Context.h
#ifndef MUPDF_FITZ_CONTEXT_H#define MUPDF_FITZ_CONTEXT_H#include “mupdf/fitz/version.h”#include “mupdf/fitz/system.h”#include “mupdf/fitz/geometry.h”typedef struct fz_font_context fz_font_context;typedef struct fz_colorspace_context fz_colorspace_con原创 2021-07-15 13:45:19 · 372 阅读 · 0 评论 -
PDF-FIZ库学习2:Context上下文相关学习
struct fz_context{ void *user; fz_alloc_context alloc; fz_locks_context locks; fz_error_context error; fz_warn_context warn; /* unshared contexts */ fz_aa_context aa; uint16_t seed48[7];#if FZ_ENABLE_ICC int icc_enabled;#endif /* TODO: shoul原创 2021-07-15 10:15:10 · 272 阅读 · 0 评论 -
PDF-FIZ库学习1:Device相关解释
设备定义结构体struct fz_device{int refs;int hints;int flags;void (*close_device)(fz_context *, fz_device *);void (*drop_device)(fz_context *, fz_device *);void (*fill_path)(fz_context *, fz_device *, const fz_path *, int even_odd, fz_matrix, fz_colorspac原创 2021-07-15 10:05:57 · 293 阅读 · 0 评论