Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
66067423
Commit
66067423
authored
Mar 06, 2008
by
Nathan Beckmann
Committed by
Alexandre Julliard
Mar 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Fix errors in image dimensions.
parent
7cbdb298
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
image.c
dlls/gdiplus/image.c
+2
-4
No files found.
dlls/gdiplus/image.c
View file @
66067423
...
...
@@ -45,8 +45,7 @@ static INT ipicture_pixel_height(IPicture *pic)
hdcref
=
GetDC
(
0
);
y
=
(
UINT
)(((
REAL
)
y
)
*
((
REAL
)
GetDeviceCaps
(
hdcref
,
LOGPIXELSY
))
/
((
REAL
)
INCH_HIMETRIC
));
y
=
MulDiv
(
y
,
GetDeviceCaps
(
hdcref
,
LOGPIXELSY
),
INCH_HIMETRIC
);
ReleaseDC
(
0
,
hdcref
);
return
y
;
...
...
@@ -61,8 +60,7 @@ static INT ipicture_pixel_width(IPicture *pic)
hdcref
=
GetDC
(
0
);
x
=
(
UINT
)(((
REAL
)
x
)
*
((
REAL
)
GetDeviceCaps
(
hdcref
,
LOGPIXELSX
))
/
((
REAL
)
INCH_HIMETRIC
));
x
=
MulDiv
(
x
,
GetDeviceCaps
(
hdcref
,
LOGPIXELSX
),
INCH_HIMETRIC
);
ReleaseDC
(
0
,
hdcref
);
...
...
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