Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
430355ef
Commit
430355ef
authored
Jul 02, 2012
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jul 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdiplus: Implement GdipGetPropertySize.
parent
eb564a31
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
6 deletions
+51
-6
image.c
dlls/gdiplus/image.c
+51
-6
No files found.
dlls/gdiplus/image.c
View file @
430355ef
...
...
@@ -2671,16 +2671,61 @@ GpStatus WINGDIPAPI GdipGetPropertyItem(GpImage *image, PROPID propid, UINT size
return
stat
;
}
GpStatus
WINGDIPAPI
GdipGetPropertySize
(
GpImage
*
image
,
UINT
*
size
,
UINT
*
num
)
GpStatus
WINGDIPAPI
GdipGetPropertySize
(
GpImage
*
image
,
UINT
*
size
,
UINT
*
count
)
{
static
int
calls
;
HRESULT
hr
;
IWICMetadataReader
*
reader
;
IWICEnumMetadataItem
*
enumerator
;
UINT
prop_count
,
prop_size
,
i
;
PROPVARIANT
id
,
value
;
TRACE
(
"(%p,%p,%p)
\n
"
,
image
,
size
,
num
);
TRACE
(
"(%p,%p,%p)
\n
"
,
image
,
size
,
count
);
if
(
!
(
calls
++
))
FIXME
(
"not implemented
\n
"
);
if
(
!
image
||
!
size
||
!
count
)
return
InvalidParameter
;
return
InvalidParameter
;
if
(
image
->
type
!=
ImageTypeBitmap
)
{
FIXME
(
"Not implemented for type %d
\n
"
,
image
->
type
);
return
NotImplemented
;
}
reader
=
((
GpBitmap
*
)
image
)
->
metadata_reader
;
if
(
!
reader
)
return
PropertyNotFound
;
hr
=
IWICMetadataReader_GetCount
(
reader
,
&
prop_count
);
if
(
FAILED
(
hr
))
return
hresult_to_status
(
hr
);
hr
=
IWICMetadataReader_GetEnumerator
(
reader
,
&
enumerator
);
if
(
FAILED
(
hr
))
return
hresult_to_status
(
hr
);
IWICEnumMetadataItem_Reset
(
enumerator
);
prop_size
=
0
;
PropVariantInit
(
&
id
);
PropVariantInit
(
&
value
);
for
(
i
=
0
;
i
<
prop_count
;
i
++
)
{
UINT
items_returned
,
item_size
;
hr
=
IWICEnumMetadataItem_Next
(
enumerator
,
1
,
NULL
,
&
id
,
&
value
,
&
items_returned
);
if
(
hr
!=
S_OK
)
break
;
item_size
=
propvariant_size
(
&
value
);
if
(
item_size
)
prop_size
+=
sizeof
(
PropertyItem
)
+
item_size
;
PropVariantClear
(
&
id
);
PropVariantClear
(
&
value
);
}
IWICEnumMetadataItem_Release
(
enumerator
);
if
(
hr
!=
S_OK
)
return
PropertyNotFound
;
*
count
=
prop_count
;
*
size
=
prop_size
;
return
Ok
;
}
struct
image_format_dimension
...
...
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