Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
a91293fd
Commit
a91293fd
authored
Oct 24, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
8fd5fa92
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
9 additions
and
8 deletions
+9
-8
DjVuFile/DjVu.cpp
DjVuFile/DjVu.cpp
+1
-1
DjVuFile/DjVu.h
DjVuFile/DjVu.h
+1
-1
PdfReader/PdfReader.cpp
PdfReader/PdfReader.cpp
+1
-1
PdfReader/PdfReader.h
PdfReader/PdfReader.h
+1
-1
X2tConverter/build/Qt/X2tConverter.pro
X2tConverter/build/Qt/X2tConverter.pro
+1
-1
XlsxSerializerCom/Writer/BinaryReader.h
XlsxSerializerCom/Writer/BinaryReader.h
+2
-1
XpsFile/XpsFile.cpp
XpsFile/XpsFile.cpp
+1
-1
XpsFile/XpsFile.h
XpsFile/XpsFile.h
+1
-1
No files found.
DjVuFile/DjVu.cpp
View file @
a91293fd
...
...
@@ -83,7 +83,7 @@ void CDjVuFile::DrawPageOnRenderer(IRenderer* pRenderer, int nPageIndex, bool* p
if
(
m_pImplementation
)
m_pImplementation
->
DrawPageOnRenderer
(
pRenderer
,
nPageIndex
,
pBreak
);
}
void
CDjVuFile
::
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
wsDstPath
,
int
nImageType
,
const
int
&
nRasterW
,
const
int
&
nRasterH
)
void
CDjVuFile
::
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
wsDstPath
,
int
nImageType
,
const
int
nRasterW
,
const
int
nRasterH
)
{
if
(
m_pImplementation
)
m_pImplementation
->
ConvertToRaster
(
nPageIndex
,
wsDstPath
,
nImageType
,
nRasterW
,
nRasterH
);
...
...
DjVuFile/DjVu.h
View file @
a91293fd
...
...
@@ -64,7 +64,7 @@ public:
virtual
int
GetPagesCount
();
virtual
void
GetPageInfo
(
int
nPageIndex
,
double
*
pdWidth
,
double
*
pdHeight
,
double
*
pdDpiX
,
double
*
pdDpiY
);
virtual
void
DrawPageOnRenderer
(
IRenderer
*
pRenderer
,
int
nPageIndex
,
bool
*
pBreak
);
virtual
void
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
path
,
int
nImageType
,
const
int
&
nRasterW
=
-
1
,
const
int
&
nRasterH
=
-
1
);
virtual
void
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
path
,
int
nImageType
,
const
int
nRasterW
=
-
1
,
const
int
nRasterH
=
-
1
);
void
ConvertToPdf
(
const
std
::
wstring
&
path
);
};
PdfReader/PdfReader.cpp
View file @
a91293fd
...
...
@@ -260,7 +260,7 @@ namespace PdfReader
m_pInternal
->
m_pPDFDocument
->
DisplayPage
(
&
oRendererOut
,
nPageIndex
,
72.0
,
72.0
,
0
,
false
,
true
,
false
);
}
}
void
CPdfReader
::
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
wsDstPath
,
int
nImageType
,
const
int
&
nRasterW
,
const
int
&
nRasterH
)
void
CPdfReader
::
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
wsDstPath
,
int
nImageType
,
const
int
nRasterW
,
const
int
nRasterH
)
{
CFontManager
*
pFontManager
=
m_pInternal
->
m_pAppFonts
->
GenerateFontManager
();
CFontsCache
*
pFontCache
=
new
CFontsCache
();
...
...
PdfReader/PdfReader.h
View file @
a91293fd
...
...
@@ -63,7 +63,7 @@ namespace PdfReader
virtual
int
GetPagesCount
();
virtual
void
GetPageInfo
(
int
nPageIndex
,
double
*
pdWidth
,
double
*
pdHeight
,
double
*
pdDpiX
,
double
*
pdDpiY
);
virtual
void
DrawPageOnRenderer
(
IRenderer
*
pRenderer
,
int
nPageIndex
,
bool
*
pBreak
);
virtual
void
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
path
,
int
nImageType
,
const
int
&
nRasterW
=
-
1
,
const
int
&
nRasterH
=
-
1
);
virtual
void
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
path
,
int
nImageType
,
const
int
nRasterW
=
-
1
,
const
int
nRasterH
=
-
1
);
EError
GetError
();
double
GetVersion
();
...
...
X2tConverter/build/Qt/X2tConverter.pro
View file @
a91293fd
...
...
@@ -7,7 +7,7 @@
QT
-=
core
QT
-=
gui
VERSION
=
2.0
.
2.40
1
VERSION
=
2.0
.
2.40
2
DEFINES
+=
INTVER
=
$$
VERSION
TEMPLATE
=
app
...
...
XlsxSerializerCom/Writer/BinaryReader.h
View file @
a91293fd
...
...
@@ -2295,7 +2295,8 @@ namespace BinXlsxRW {
else
if
(
c_oSer_Pane
::
State
==
type
)
{
pPane
->
m_oState
.
Init
();
pPane
->
m_oState
->
FromString
(
m_oBufferedStream
.
GetString4
(
length
));
std
::
wstring
sVal
=
m_oBufferedStream
.
GetString4
(
length
);
pPane
->
m_oState
->
FromString
(
sVal
.
c_str
());
}
else
if
(
c_oSer_Pane
::
TopLeftCell
==
type
)
{
...
...
XpsFile/XpsFile.cpp
View file @
a91293fd
...
...
@@ -157,7 +157,7 @@ void CXpsFile::DrawPageOnRenderer(IRenderer* pRenderer, int nPageIndex, bool* pB
m_pInternal
->
m_pDocument
->
DrawPage
(
nPageIndex
,
pRenderer
,
pBreak
);
}
void
CXpsFile
::
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
wsDstPath
,
int
nImageType
,
const
int
&
nRasterW
,
const
int
&
nRasterH
)
void
CXpsFile
::
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
wsDstPath
,
int
nImageType
,
const
int
nRasterW
,
const
int
nRasterH
)
{
CFontManager
*
pFontManager
=
m_pInternal
->
m_pAppFonts
->
GenerateFontManager
();
CFontsCache
*
pFontCache
=
new
CFontsCache
();
...
...
XpsFile/XpsFile.h
View file @
a91293fd
...
...
@@ -59,7 +59,7 @@ public:
virtual
int
GetPagesCount
();
virtual
void
GetPageInfo
(
int
nPageIndex
,
double
*
pdWidth
,
double
*
pdHeight
,
double
*
pdDpiX
,
double
*
pdDpiY
);
virtual
void
DrawPageOnRenderer
(
IRenderer
*
pRenderer
,
int
nPageIndex
,
bool
*
pBreak
);
virtual
void
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
path
,
int
nImageType
,
const
int
&
nRasterW
=
-
1
,
const
int
&
nRasterH
=
-
1
);
virtual
void
ConvertToRaster
(
int
nPageIndex
,
const
std
::
wstring
&
path
,
int
nImageType
,
const
int
nRasterW
=
-
1
,
const
int
nRasterH
=
-
1
);
void
ConvertToPdf
(
const
std
::
wstring
&
wsDstPath
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment