@@ -2640,6 +2640,20 @@ fz_device *mupdf_new_draw_device(fz_context *ctx, fz_pixmap *pixmap, fz_irect cl
2640
2640
return device ;
2641
2641
}
2642
2642
2643
+ fz_device * mupdf_new_device_of_size (fz_context * ctx , int size , mupdf_error_t * * errptr )
2644
+ {
2645
+ fz_device * device = NULL ;
2646
+ fz_try (ctx )
2647
+ {
2648
+ device = fz_new_device_of_size (ctx , size );
2649
+ }
2650
+ fz_catch (ctx )
2651
+ {
2652
+ mupdf_save_error (ctx , errptr );
2653
+ }
2654
+ return device ;
2655
+ }
2656
+
2643
2657
fz_device * mupdf_new_display_list_device (fz_context * ctx , fz_display_list * list , mupdf_error_t * * errptr )
2644
2658
{
2645
2659
fz_device * device = NULL ;
@@ -2863,6 +2877,54 @@ void mupdf_end_layer(fz_context *ctx, fz_device *device, mupdf_error_t **errptr)
2863
2877
}
2864
2878
}
2865
2879
2880
+ void mupdf_begin_structure (fz_context * ctx , fz_device * device , fz_structure standard , const char * raw , int idx , mupdf_error_t * * errptr )
2881
+ {
2882
+ fz_try (ctx )
2883
+ {
2884
+ fz_begin_structure (ctx , device , standard , raw , idx );
2885
+ }
2886
+ fz_catch (ctx )
2887
+ {
2888
+ mupdf_save_error (ctx , errptr );
2889
+ }
2890
+ }
2891
+
2892
+ void mupdf_end_structure (fz_context * ctx , fz_device * device , mupdf_error_t * * errptr )
2893
+ {
2894
+ fz_try (ctx )
2895
+ {
2896
+ fz_end_structure (ctx , device );
2897
+ }
2898
+ fz_catch (ctx )
2899
+ {
2900
+ mupdf_save_error (ctx , errptr );
2901
+ }
2902
+ }
2903
+
2904
+ void mupdf_begin_metatext (fz_context * ctx , fz_device * device , fz_metatext meta , const char * text , mupdf_error_t * * errptr )
2905
+ {
2906
+ fz_try (ctx )
2907
+ {
2908
+ fz_begin_metatext (ctx , device , meta , text );
2909
+ }
2910
+ fz_catch (ctx )
2911
+ {
2912
+ mupdf_save_error (ctx , errptr );
2913
+ }
2914
+ }
2915
+
2916
+ void mupdf_end_metatext (fz_context * ctx , fz_device * device , mupdf_error_t * * errptr )
2917
+ {
2918
+ fz_try (ctx )
2919
+ {
2920
+ fz_end_metatext (ctx , device );
2921
+ }
2922
+ fz_catch (ctx )
2923
+ {
2924
+ mupdf_save_error (ctx , errptr );
2925
+ }
2926
+ }
2927
+
2866
2928
void mupdf_begin_mask (fz_context * ctx , fz_device * device , fz_rect area , bool luminosity , fz_colorspace * cs , const float * color , fz_color_params cp , mupdf_error_t * * errptr )
2867
2929
{
2868
2930
fz_try (ctx )
@@ -2875,11 +2937,11 @@ void mupdf_begin_mask(fz_context *ctx, fz_device *device, fz_rect area, bool lum
2875
2937
}
2876
2938
}
2877
2939
2878
- void mupdf_end_mask (fz_context * ctx , fz_device * device , mupdf_error_t * * errptr )
2940
+ void mupdf_end_mask (fz_context * ctx , fz_device * device , fz_function * fn , mupdf_error_t * * errptr )
2879
2941
{
2880
2942
fz_try (ctx )
2881
2943
{
2882
- fz_end_mask (ctx , device );
2944
+ fz_end_mask_tr (ctx , device , fn );
2883
2945
}
2884
2946
fz_catch (ctx )
2885
2947
{
0 commit comments