Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_web
check
Commits
98e614bd
Commit
98e614bd
authored
Apr 04, 2014
by
Masaru Abe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#11478 解像度改善対応
parent
7bb2118e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
338 additions
and
51 deletions
+338
-51
abvw/js/contentview.js
+90
-23
abvw/js/contentview_CreateObjects.js
+193
-22
abvw/js/contentview_General.js
+9
-0
abvw/js/contentview_GetData.js
+19
-1
abvw/js/contentview_Marking.js
+9
-3
abvw/js/contentview_Memo.js
+18
-2
No files found.
abvw/js/contentview.js
View file @
98e614bd
...
...
@@ -3143,25 +3143,40 @@ ContentPage.prototype.drawPage = function (context, opt) {
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
if
(
opt
==
null
||
opt
==
0
){
getPageSizeByPageNo
(
changePageIndex
(
getPageIndex
()));
widthEachPage
=
widthContentImage
;
heightEachPage
=
heightContentImage
;
//#11478
//widthEachPage = widthContentImage;
//heightEachPage = heightContentImage;
widthEachPageApi
=
widthContentImage
;
heightEachPageApi
=
heightContentImage
;
}
else
if
(
opt
==
1
){
getPageSizeByPageNo
(
changePageIndex
(
getPageIndex
()
+
1
));
widthEachNextPage
=
widthContentImage
;
heightEachNextPage
=
heightContentImage
;
getPageSizeByPageNo
(
changePageIndex
(
getPageIndex
()
+
1
));
widthEachNextPage
=
widthContentImage
;
heightEachNextPage
=
heightContentImage
;
//#11478
widthEachNextPageApi
=
widthContentImage
;
heightEachNextPageApi
=
heightContentImage
;
}
else
if
(
opt
==
2
){
getPageSizeByPageNo
(
changePageIndex
(
getPageIndex
()
-
1
));
widthEachPrevPage
=
widthContentImage
;
heightEachPrevPage
=
heightContentImage
;
//#11478
widthEachPrevPageApi
=
widthContentImage
;
heightEachPrevPageApi
=
heightContentImage
;
}
}
else
{
widthEachPage
=
widthContentImage
;
heightEachPage
=
heightContentImage
;
}
//#11478
widthEachPageApi
=
widthContentImage
;
heightEachPageApi
=
heightContentImage
;
widthEachNextPageApi
=
widthContentImage
;
heightEachNextPageApi
=
heightContentImage
;
widthEachPrevPageApi
=
widthContentImage
;
heightEachPrevPageApi
=
heightContentImage
;
}
/* set width canvas */
/*
...
...
@@ -3184,18 +3199,19 @@ ContentPage.prototype.drawPage = function (context, opt) {
}*/
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
if
(
opt
==
null
||
opt
==
0
){
$
(
"#offscreen"
).
attr
(
'height'
,
heightEachPage
);
$
(
"#offscreen"
).
attr
(
'width'
,
widthEachPage
);
}
else
if
(
opt
==
1
){
$
(
"#offscreenNext"
).
attr
(
'height'
,
heightEachNextPage
);
$
(
"#offscreenNext"
).
attr
(
'width'
,
widthEachNextPage
);
}
else
if
(
opt
==
2
){
$
(
"#offscreenPre"
).
attr
(
'height'
,
heightEachPrevPage
);
$
(
"#offscreenPre"
).
attr
(
'width'
,
widthEachPrevPage
);
}
//#11478
//if(opt == null || opt == 0){
// $("#offscreen").attr('height', heightEachPage);
// $("#offscreen").attr('width', widthEachPage);
//}
//else if(opt == 1){
// $("#offscreenNext").attr('height', heightEachNextPage);
// $("#offscreenNext").attr('width', widthEachNextPage);
//}
//else if(opt == 2){
// $("#offscreenPre").attr('height', heightEachPrevPage);
// $("#offscreenPre").attr('width', widthEachPrevPage);
//}
}
else
{
if
(
opt
==
null
||
opt
==
0
){
...
...
@@ -3220,12 +3236,30 @@ ContentPage.prototype.drawPage = function (context, opt) {
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
if
(
contentType
==
ContentTypeKeys
.
Type_PDF
){
if
(
opt
==
null
||
opt
==
0
){
//#11478
heightEachPage
=
img
.
naturalHeight
;
widthEachPage
=
img
.
naturalWidth
;
$
(
"#offscreen"
).
attr
(
'height'
,
heightEachPage
);
$
(
"#offscreen"
).
attr
(
'width'
,
widthEachPage
);
context
.
drawImage
(
img
,
0
,
0
,
widthEachPage
,
heightEachPage
);
}
else
if
(
opt
==
1
){
//#11478
heightEachNextPage
=
img
.
naturalHeight
;
widthEachNextPage
=
img
.
naturalWidth
;
$
(
"#offscreenNext"
).
attr
(
'height'
,
heightEachNextPage
);
$
(
"#offscreenNext"
).
attr
(
'width'
,
widthEachNextPage
);
context
.
drawImage
(
img
,
0
,
0
,
widthEachNextPage
,
heightEachNextPage
);
}
else
if
(
opt
==
2
){
//#11478
heightEachPrevPage
=
img
.
naturalHeight
;
widthEachPrevPage
=
img
.
naturalWidth
;
$
(
"#offscreenPre"
).
attr
(
'height'
,
heightEachPrevPage
);
$
(
"#offscreenPre"
).
attr
(
'width'
,
widthEachPrevPage
);
context
.
drawImage
(
img
,
0
,
0
,
widthEachPrevPage
,
heightEachPrevPage
);
}
}
...
...
@@ -4010,7 +4044,7 @@ function drawCanvas(opt) {
context
.
clearRect
(
0
,
0
,
canvas
.
width
,
canvas
.
height
);
draw
(
context
);
draw
(
context
,
0
);
}
//Draw on next offscreen
else
if
(
opt
==
1
){
...
...
@@ -4828,7 +4862,26 @@ function changeImageType4(objTarget, nIndex, nIndex1) {
imageObj
.
onload
=
function
()
{
var
canvasObject
=
document
.
getElementById
(
"offscreen"
);
var
contextObject
=
canvasObject
.
getContext
(
"2d"
);
contextObject
.
drawImage
(
imageObj
,
objTarget
[
nIndex
].
x
,
objTarget
[
nIndex
].
y
,
objTarget
[
nIndex
].
width
,
objTarget
[
nIndex
].
height
);
//#11478
var
canvasWidth
=
$
(
'#offscreen'
).
width
();
var
canvasHeight
=
$
(
'#offscreen'
).
height
();
var
tempRatioWidth
=
canvasWidth
/
widthEachPageApi
;
if
(
tempRatioWidth
<
1
){
tempRatioWidth
=
1
;
}
var
tempRatioHeight
=
canvasHeight
/
heightEachPageApi
;
if
(
tempRatioHeight
<
1
){
tempRatioHeight
=
1
;
}
var
tmpX
=
objTarget
[
nIndex
].
x
*
tempRatioWidth
;
var
tmpY
=
objTarget
[
nIndex
].
y
*
tempRatioHeight
;
var
tmpW
=
objTarget
[
nIndex
].
width
*
tempRatioWidth
;
var
tmpH
=
objTarget
[
nIndex
].
height
*
tempRatioHeight
;
contextObject
.
drawImage
(
imageObj
,
tmpX
,
tmpY
,
tmpW
,
tmpH
);
//contextObject.drawImage(imageObj, objTarget[nIndex].x, objTarget[nIndex].y, objTarget[nIndex].width, objTarget[nIndex].height);
flip
();
};
imageObj
.
src
=
objTarget
[
nIndex
].
dataObjects
[
nIndex1
].
fileName
;
...
...
@@ -4836,14 +4889,28 @@ function changeImageType4(objTarget, nIndex, nIndex1) {
function
imageToScreen
(
x
,
y
)
{
//#11478
var
canvasWidth
=
$
(
'#offscreen'
).
width
();
var
canvasHeight
=
$
(
'#offscreen'
).
height
();
var
tempRatioWidth
=
canvasWidth
/
widthEachPageApi
;
if
(
tempRatioWidth
<
1
){
tempRatioWidth
=
1
;
}
var
tempRatioHeight
=
canvasHeight
/
heightEachPageApi
;
if
(
tempRatioHeight
<
1
){
tempRatioHeight
=
1
;
}
var
tmpX
=
x
*
tempRatioWidth
;
var
tmpY
=
y
*
tempRatioHeight
;
var
pt
=
new
Point
(
0
,
0
);
// scale vertical and horizontal
var
sx
=
(
destRect
.
right
-
destRect
.
left
)
/
(
srcRect
.
right
-
srcRect
.
left
);
var
sy
=
(
destRect
.
bottom
-
destRect
.
top
)
/
(
srcRect
.
bottom
-
srcRect
.
top
);
pt
.
x
=
Math
.
round
(
sx
*
(
x
-
srcRect
.
left
))
+
destRect
.
left
+
marginX
;
pt
.
y
=
Math
.
round
(
sy
*
(
y
-
srcRect
.
top
))
+
destRect
.
top
+
marginY
;
pt
.
x
=
Math
.
round
(
sx
*
(
tmpX
-
srcRect
.
left
))
+
destRect
.
left
+
marginX
;
pt
.
y
=
Math
.
round
(
sy
*
(
tmpY
-
srcRect
.
top
))
+
destRect
.
top
+
marginY
;
return
pt
;
};
...
...
abvw/js/contentview_CreateObjects.js
View file @
98e614bd
This diff is collapsed.
Click to expand it.
abvw/js/contentview_General.js
View file @
98e614bd
...
...
@@ -101,6 +101,15 @@ var widthEachPrevPage = 0;
var
heightEachPrevPage
=
0
;
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
//#11478
var
widthEachPageApi
=
0
;
var
heightEachPageApi
=
0
;
var
widthEachNextPageApi
=
0
;
var
heightEachNextPageApi
=
0
;
var
widthEachPrevPageApi
=
0
;
var
heightEachPrevPageApi
=
0
;
//#11478
/* zoom video */
var
pxVideo
;
var
pyVideo
;
...
...
abvw/js/contentview_GetData.js
View file @
98e614bd
...
...
@@ -1388,6 +1388,9 @@ function getPrevPageObjectsByPageIndex(contentData, nIndexPage) {
function
switchCanvas
(
nav
){
// change div id
//console.log("bf widthEachPage:" + widthEachPage + " widthEachNextPage:" + widthEachNextPage + " widthEachPrevPage:" + widthEachPrevPage);
//console.log("bf widthEachPageApi:" + widthEachPageApi + " widthEachNextPageApi:" + widthEachNextPageApi + " widthEachPrevPageApi:" + widthEachPrevPageApi);
if
(
nav
==
1
){
$
(
'#mainPre'
).
attr
(
"id"
,
"mainPreBK"
);
$
(
'#main'
).
attr
(
"id"
,
"mainPre"
);
...
...
@@ -1402,9 +1405,15 @@ function switchCanvas(nav){
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
widthEachPrevPage
=
widthEachPage
;
widthEachPage
=
widthEachNextPage
;
//#11478
widthEachPrevPageApi
=
widthEachPageApi
;
widthEachPageApi
=
widthEachNextPageApi
;
heightEachPrevPage
=
heightEachPage
;
heightEachPage
=
heightEachNextPage
;
//#11478
heightEachPrevPageApi
=
heightEachPageApi
;
heightEachPageApi
=
heightEachNextPageApi
;
srcRectPrev
=
srcRect
;
srcRect
=
srcRectNext
;
...
...
@@ -1432,9 +1441,15 @@ function switchCanvas(nav){
//START TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
widthEachNextPage
=
widthEachPage
;
widthEachPage
=
widthEachPrevPage
;
//#11478
widthEachNextPageApi
=
widthEachPageApi
;
widthEachPageApi
=
widthEachPrevPageApi
;
heightEachNextPage
=
heightEachPage
;
heightEachPage
=
heightEachPrevPage
;
//#11478
heightEachNextPageApi
=
heightEachPageApi
;
heightEachPageApi
=
heightEachPrevPageApi
;
srcRectNext
=
srcRect
;
srcRect
=
srcRectPrev
;
...
...
@@ -1448,7 +1463,10 @@ function switchCanvas(nav){
flip
();
//END TRB00097 - Editor: Long - Date: 09/30/2013 - Summary : Get All Page size of content
}
//console.log("af widthEachPage:" + widthEachPage + " widthEachNextPage:" + widthEachNextPage + " widthEachPrevPage:" + widthEachPrevPage);
//console.log("af widthEachPageApi:" + widthEachPageApi + " widthEachNextPageApi:" + widthEachNextPageApi + " widthEachPrevPageApi:" + widthEachPrevPageApi);
};
//Assign content properties
...
...
abvw/js/contentview_Marking.js
View file @
98e614bd
...
...
@@ -53,8 +53,12 @@ function dlgMarking_dspSave_click() {
marking
.
pageNo
=
changePageIndex
(
getPageIndex
());
}
var
saveCanvas
=
document
.
createElement
(
'canvas'
);
saveCanvas
.
width
=
canvas_offscreen
.
width
;
saveCanvas
.
height
=
canvas_offscreen
.
height
;
//#11478
//saveCanvas.width = canvas_offscreen.width;
//saveCanvas.height = canvas_offscreen.height;
saveCanvas
.
width
=
widthEachPageApi
;
saveCanvas
.
height
=
heightEachPageApi
;
var
saveContext
=
saveCanvas
.
getContext
(
'2d'
);
saveContext
.
drawImage
(
saveImg
,
0
,
0
,
saveCanvas
.
width
,
saveCanvas
.
height
);
...
...
@@ -87,7 +91,9 @@ function dlgMarking_dspSave_click() {
/* case exist marking */
//=== Start Function : No.17 Editor : Long Date: 07/30/2013 Summary : Set UTC time when edit marking/maker.
var
editedMarkingEntity
=
arr
[
nIndexMarking
];
editedMarkingEntity
.
content
=
canvas_draw
.
toDataURL
(
"image/png"
);
//#11478
//editedMarkingEntity.content = canvas_draw.toDataURL("image/png");
editedMarkingEntity
.
content
=
marking
.
content
;
editedMarkingEntity
.
registerDate
=
new
Date
();
arr
[
nIndexMarking
]
=
editedMarkingEntity
;
...
...
abvw/js/contentview_Memo.js
View file @
98e614bd
...
...
@@ -47,8 +47,24 @@ function memoSaveFunction(){
memoObj
.
contentid
=
conid
;
memoObj
.
Text
=
$
(
'#txaMemoContent'
).
val
();
var
imagePt
=
screenToImage
(
targetX
,
targetY
);
memoObj
.
posX
=
imagePt
.
x
;
memoObj
.
posY
=
imagePt
.
y
;
//#11478 逆に縮める対応
var
canvasWidth
=
$
(
'#offscreen'
).
width
();
var
canvasHeight
=
$
(
'#offscreen'
).
height
();
//var tempRatioWidth = canvasWidth / widthEachPageApi;
var
tempRatioWidth
=
widthEachPageApi
/
canvasWidth
;
if
(
tempRatioWidth
>
1
){
tempRatioWidth
=
1
;
}
var
tempRatioHeight
=
heightEachPageApi
/
canvasHeight
;
if
(
tempRatioHeight
>
1
){
tempRatioHeight
=
1
;
}
memoObj
.
posX
=
Math
.
round
(
imagePt
.
x
*
tempRatioWidth
);
memoObj
.
posY
=
Math
.
round
(
imagePt
.
y
*
tempRatioHeight
);
//memoObj.posX = imagePt.x;
//memoObj.posY = imagePt.y;
//=== Start Function : No.17 Editor : Long Date: 07/30/2013 Summary : Set UTC time and UUID when create new memo.
memoObj
.
memoid
=
getUUID
();
memoObj
.
registerDate
=
new
Date
();
...
...
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