mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:48:14 +00:00
LibPDF: Handle SCN and scn operators
This commit is contained in:
parent
e1115cfe48
commit
34efc668d2
1 changed files with 20 additions and 2 deletions
|
@ -480,7 +480,16 @@ RENDERER_HANDLER(set_stroking_color)
|
|||
return {};
|
||||
}
|
||||
|
||||
RENDERER_TODO(set_stroking_color_extended)
|
||||
RENDERER_HANDLER(set_stroking_color_extended)
|
||||
{
|
||||
// FIXME: Handle Pattern color spaces
|
||||
auto last_arg = args.last();
|
||||
if (last_arg.has<NonnullRefPtr<Object>>() && last_arg.get<NonnullRefPtr<Object>>()->is<NameObject>())
|
||||
TODO();
|
||||
|
||||
state().stroke_color = state().stroke_color_space->color(args);
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_HANDLER(set_painting_color)
|
||||
{
|
||||
|
@ -488,7 +497,16 @@ RENDERER_HANDLER(set_painting_color)
|
|||
return {};
|
||||
}
|
||||
|
||||
RENDERER_TODO(set_painting_color_extended)
|
||||
RENDERER_HANDLER(set_painting_color_extended)
|
||||
{
|
||||
// FIXME: Handle Pattern color spaces
|
||||
auto last_arg = args.last();
|
||||
if (last_arg.has<NonnullRefPtr<Object>>() && last_arg.get<NonnullRefPtr<Object>>()->is<NameObject>())
|
||||
TODO();
|
||||
|
||||
state().paint_color = state().paint_color_space->color(args);
|
||||
return {};
|
||||
}
|
||||
|
||||
RENDERER_HANDLER(set_stroking_color_and_space_to_gray)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue