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
75a01058
Commit
75a01058
authored
Apr 05, 2011
by
Vincent Povirk
Committed by
Alexandre Julliard
Apr 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement TiffFrameDecode_WriteSource.
parent
518f4fd6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
2 deletions
+69
-2
tiffformat.c
dlls/windowscodecs/tiffformat.c
+69
-2
No files found.
dlls/windowscodecs/tiffformat.c
View file @
75a01058
...
...
@@ -1440,8 +1440,75 @@ static HRESULT WINAPI TiffFrameEncode_WritePixels(IWICBitmapFrameEncode *iface,
static
HRESULT
WINAPI
TiffFrameEncode_WriteSource
(
IWICBitmapFrameEncode
*
iface
,
IWICBitmapSource
*
pIBitmapSource
,
WICRect
*
prc
)
{
FIXME
(
"(%p,%p,%p): stub
\n
"
,
iface
,
pIBitmapSource
,
prc
);
return
E_NOTIMPL
;
TiffFrameEncode
*
This
=
impl_from_IWICBitmapFrameEncode
(
iface
);
HRESULT
hr
;
WICRect
rc
;
WICPixelFormatGUID
guid
;
UINT
stride
;
BYTE
*
pixeldata
;
TRACE
(
"(%p,%p,%p)
\n
"
,
iface
,
pIBitmapSource
,
prc
);
if
(
!
This
->
initialized
||
!
This
->
width
||
!
This
->
height
)
return
WINCODEC_ERR_WRONGSTATE
;
if
(
!
This
->
format
)
{
hr
=
IWICBitmapSource_GetPixelFormat
(
pIBitmapSource
,
&
guid
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
IWICBitmapFrameEncode_SetPixelFormat
(
iface
,
&
guid
);
if
(
FAILED
(
hr
))
return
hr
;
}
hr
=
IWICBitmapSource_GetPixelFormat
(
pIBitmapSource
,
&
guid
);
if
(
FAILED
(
hr
))
return
hr
;
if
(
memcmp
(
&
guid
,
This
->
format
->
guid
,
sizeof
(
GUID
))
!=
0
)
{
/* FIXME: should use WICConvertBitmapSource to convert */
ERR
(
"format %s unsupported
\n
"
,
debugstr_guid
(
&
guid
));
return
E_FAIL
;
}
if
(
This
->
xres
==
0
.
0
||
This
->
yres
==
0
.
0
)
{
double
xres
,
yres
;
hr
=
IWICBitmapSource_GetResolution
(
pIBitmapSource
,
&
xres
,
&
yres
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
IWICBitmapFrameEncode_SetResolution
(
iface
,
xres
,
yres
);
if
(
FAILED
(
hr
))
return
hr
;
}
if
(
!
prc
)
{
UINT
width
,
height
;
hr
=
IWICBitmapSource_GetSize
(
pIBitmapSource
,
&
width
,
&
height
);
if
(
FAILED
(
hr
))
return
hr
;
rc
.
X
=
0
;
rc
.
Y
=
0
;
rc
.
Width
=
width
;
rc
.
Height
=
height
;
prc
=
&
rc
;
}
if
(
prc
->
Width
!=
This
->
width
)
return
E_INVALIDARG
;
stride
=
(
This
->
format
->
bpp
*
This
->
width
+
7
)
/
8
;
pixeldata
=
HeapAlloc
(
GetProcessHeap
(),
0
,
stride
*
prc
->
Height
);
if
(
!
pixeldata
)
return
E_OUTOFMEMORY
;
hr
=
IWICBitmapSource_CopyPixels
(
pIBitmapSource
,
prc
,
stride
,
stride
*
prc
->
Height
,
pixeldata
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
IWICBitmapFrameEncode_WritePixels
(
iface
,
prc
->
Height
,
stride
,
stride
*
prc
->
Height
,
pixeldata
);
}
HeapFree
(
GetProcessHeap
(),
0
,
pixeldata
);
return
S_OK
;
}
static
HRESULT
WINAPI
TiffFrameEncode_Commit
(
IWICBitmapFrameEncode
*
iface
)
...
...
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