diff --git a/src/UglyToad.PdfPig/Graphics/Operations/General/SetColorRenderingIntent.cs b/src/UglyToad.PdfPig/Graphics/Operations/General/SetColorRenderingIntent.cs
index b8d14bdd..d5e1c5ab 100644
--- a/src/UglyToad.PdfPig/Graphics/Operations/General/SetColorRenderingIntent.cs
+++ b/src/UglyToad.PdfPig/Graphics/Operations/General/SetColorRenderingIntent.cs
@@ -3,6 +3,7 @@
using System;
using System.IO;
using Tokens;
+ using UglyToad.PdfPig.Graphics.Core;
///
///
@@ -35,7 +36,7 @@
///
public void Run(IOperationContext operationContext)
{
-
+ operationContext.GetCurrentState().RenderingIntent = RenderingIntentExtensions.ToRenderingIntent(RenderingIntent);
}
///