Skip to content

Commit 93ac8bc

Browse files
committed
testing v1.14.14
1 parent a867efd commit 93ac8bc

File tree

4 files changed

+4
-14
lines changed

4 files changed

+4
-14
lines changed

fitz/fitz.i

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3094,20 +3094,15 @@ fannot._erase()
30943094
}
30953095
else // pixmap specified
30963096
{
3097-
JM_TRACE("inserting a pixmap");
30983097
if (pixmap->alpha == 0)
30993098
image = fz_new_image_from_pixmap(gctx, pixmap, NULL);
31003099
else
31013100
{ // pixmap has alpha: create an SMask
3102-
JM_TRACE("pixmap has alpha");
31033101
pm = fz_convert_pixmap(gctx, pixmap, NULL, NULL, NULL, NULL, 1);
31043102
pm->alpha = 0;
31053103
pm->colorspace = fz_keep_colorspace(gctx, fz_device_gray(gctx));
3106-
JM_TRACE("created pixmap with the alpha values");
31073104
mask = fz_new_image_from_pixmap(gctx, pm, NULL);
3108-
JM_TRACE("created SMask image");
31093105
image = fz_new_image_from_pixmap(gctx, pixmap, mask);
3110-
JM_TRACE("created final image");
31113106
}
31123107
}
31133108

fitz/fitz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ class _object:
107107

108108
VersionFitz = "1.14.0"
109109
VersionBind = "1.14.14"
110-
VersionDate = "2019-04-09 12:51:24"
111-
version = (VersionBind, VersionFitz, "20190409125124")
110+
VersionDate = "2019-04-09 13:07:58"
111+
version = (VersionBind, VersionFitz, "20190409130758")
112112

113113

114114
class Matrix():

fitz/fitz_wrap.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11786,20 +11786,15 @@ SWIGINTERN PyObject *fz_page_s__insertImage(struct fz_page_s *self,char const *f
1178611786
}
1178711787
else // pixmap specified
1178811788
{
11789-
JM_TRACE("inserting a pixmap");
1179011789
if (pixmap->alpha == 0)
1179111790
image = fz_new_image_from_pixmap(gctx, pixmap, NULL);
1179211791
else
1179311792
{ // pixmap has alpha: create an SMask
11794-
JM_TRACE("pixmap has alpha");
1179511793
pm = fz_convert_pixmap(gctx, pixmap, NULL, NULL, NULL, NULL, 1);
1179611794
pm->alpha = 0;
1179711795
pm->colorspace = fz_keep_colorspace(gctx, fz_device_gray(gctx));
11798-
JM_TRACE("created pixmap with the alpha values");
1179911796
mask = fz_new_image_from_pixmap(gctx, pm, NULL);
11800-
JM_TRACE("created SMask image");
1180111797
image = fz_new_image_from_pixmap(gctx, pixmap, mask);
11802-
JM_TRACE("created final image");
1180311798
}
1180411799
}
1180511800

fitz/version.i

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
%pythoncode %{
22
VersionFitz = "1.14.0"
33
VersionBind = "1.14.14"
4-
VersionDate = "2019-04-09 12:51:24"
5-
version = (VersionBind, VersionFitz, "20190409125124")
4+
VersionDate = "2019-04-09 13:07:58"
5+
version = (VersionBind, VersionFitz, "20190409130758")
66
%}

0 commit comments

Comments
 (0)