Scroom  0.14
OperationsCMYK4 Class Reference

#include <layeroperations.hh>

Inheritance diagram for OperationsCMYK4:
Inheritance graph
Collaboration diagram for OperationsCMYK4:
Collaboration graph

Public Member Functions

 OperationsCMYK4 ()
 
int getBpp () override
 
Scroom::Utils::Stuff cache (const ConstTile::Ptr &tile) override
 
void reduce (Tile::Ptr target, ConstTile::Ptr source, int x, int y) override
 
- Public Member Functions inherited from PipetteCommonOperationsCMYK
 PipetteCommonOperationsCMYK (int bps_)
 
PipetteLayerOperations::PipetteColor sumPixelValues (Scroom::Utils::Rectangle< int > area, const ConstTile::Ptr &tile) override
 
- Public Member Functions inherited from Scroom::Utils::Base
 Base ()=default
 
 Base (const Base &)=delete
 
 Base (Base &&)=delete
 
Baseoperator= (const Base &)=delete
 
Baseoperator= (Base &&)=delete
 
virtual ~Base ()=default
 
template<typename R >
boost::shared_ptr< R > shared_from_this ()
 
template<typename R >
boost::shared_ptr< R const > shared_from_this () const
 
- Public Member Functions inherited from CommonOperations
void initializeCairo (cairo_t *cr) override
 
void drawState (cairo_t *cr, TileState s, Scroom::Utils::Rectangle< double > viewArea) override
 
Scroom::Utils::Stuff cacheZoom (const ConstTile::Ptr &tile, int zoom, Scroom::Utils::Stuff &cache) override
 
void draw (cairo_t *cr, const ConstTile::Ptr &tile, Scroom::Utils::Rectangle< double > tileArea, Scroom::Utils::Rectangle< double > viewArea, int zoom, Scroom::Utils::Stuff cache) override
 

Static Public Member Functions

static Ptr create ()
 
- Static Public Member Functions inherited from CommonOperations
static void drawPixelValue (cairo_t *cr, int x, int y, int size, int value)
 
static void drawPixelValue (cairo_t *cr, int x, int y, int size, int value, Color const &bgColor)
 

Additional Inherited Members

- Public Types inherited from PipetteCommonOperationsCMYK
using Ptr = boost::shared_ptr< PipetteCommonOperationsCMYK >
 
- Public Types inherited from PipetteLayerOperations
using Ptr = boost::shared_ptr< PipetteLayerOperations >
 
using PipetteColor = std::vector< std::pair< std::string, double > >
 
- Public Types inherited from LayerOperations
using Ptr = boost::shared_ptr< LayerOperations >
 
- Protected Attributes inherited from PipetteCommonOperationsCMYK
int bps
 

Constructor & Destructor Documentation

◆ OperationsCMYK4()

OperationsCMYK4::OperationsCMYK4 ( )
310 {
311 }

Referenced by create().

Here is the caller graph for this function:

Member Function Documentation

◆ cache()

Scroom::Utils::Stuff OperationsCMYK4::cache ( const ConstTile::Ptr tile)
overridevirtual

Cache the given tile

Reimplemented from LayerOperations.

323 {
324  // Allocate the space for the cache - stride is the height of one row
325  const int stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, tile->width);
326  boost::shared_ptr<uint8_t> const data = shared_malloc(static_cast<size_t>(stride * tile->height));
327 
328  // Row is a pointer to a row of pixels (destination)
329  auto* row = reinterpret_cast<uint32_t*>(data.get());
330  // Cur is a pointer to the start of the row in the tile (source)
331  const uint8_t* cur = tile->data.get();
332 
333  // assume stride = tile->width * 4
334  for(int i = 0; i < tile->height * tile->width; i++)
335  {
336  // Convert CMYK to ARGB, because cairo doesn't know how to render CMYK.
337  uint8_t C_i;
338 
339  uint8_t M_i;
340 
341  uint8_t Y_i;
342 
343  uint8_t K_i;
344  if((i & 1) == 0)
345  { // even pixels -> top half of byte
346  C_i = static_cast<uint8_t>(((cur[i / 2]) >> 7) - 1); // 0 -> 255 (= -1), 1 -> 0
347  M_i = static_cast<uint8_t>(((cur[i / 2] & 0x40) >> 6) - 1);
348  Y_i = static_cast<uint8_t>(((cur[i / 2] & 0x20) >> 5) - 1);
349  K_i = static_cast<uint8_t>(((cur[i / 2] & 0x10) >> 4) - 1);
350  }
351  else
352  { // odd pixels -> lower half of the byte
353  C_i = static_cast<uint8_t>(((cur[i / 2] & 0x08) >> 3) - 1); // 0 -> 255 (= -1), 1 -> 0
354  M_i = static_cast<uint8_t>(((cur[i / 2] & 0x04) >> 2) - 1);
355  Y_i = static_cast<uint8_t>(((cur[i / 2] & 0x02) >> 1) - 1);
356  K_i = static_cast<uint8_t>(((cur[i / 2] & 0x01)) - 1);
357  }
358 
359  uint32_t const R = static_cast<uint8_t>((C_i * K_i) / 255);
360  uint32_t const G = static_cast<uint8_t>((M_i * K_i) / 255);
361  uint32_t const B = static_cast<uint8_t>((Y_i * K_i) / 255);
362 
363  // Write 255 as alpha (fully opaque)
364  row[i] = 255u << 24 | R << 16 | G << 8 | B;
365  }
366 
367  return Scroom::Bitmap::BitmapSurface::create(tile->width, tile->height, CAIRO_FORMAT_ARGB32, stride, data);
368 }
Here is the call graph for this function:

◆ create()

PipetteCommonOperationsCMYK::Ptr OperationsCMYK4::create ( )
static

Referenced by Scroom::TiledBitmap::CMYKBitmap().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getBpp()

int OperationsCMYK4::getBpp ( )
overridevirtual

Return the number of bits per pixel that the layer will use.

This number will be used to compute the amount of memory required to store one tile

Implements LayerOperations.

314 {
315  // CMYK has 4 channels -> 4 samples per pixel.
316  return 4;
317 }

◆ reduce()

void OperationsCMYK4::reduce ( Tile::Ptr  target,
ConstTile::Ptr  source,
int  x,
int  y 
)
overridevirtual

Reduce the source tile by a factor of 8

The target tile will contain data for 8*8 source tiles. Offsets x and y indicate which of those 64 source tiles is currently being processed

Parameters
targetTile that will contain the reduced bitmap
sourceTile that is to be reduced
xx-offset (0..7) of the source tile in the target tile
yy-offset (0..7) of the source tile in the target tile
Note
The target tile belongs to a different layer, and hence possibly has a different bpp than the current one, depending on the LayerSpec given to createTiledBitmap()

Implements LayerOperations.

371 {
372  // Reducing by a factor 8
373  const int sourceStride = source->width / 2; // stride in bytes
374  const byte* sourceBase = source->data.get();
375 
376  const int targetStride = 8 * target->width / 2; // stride in bytes
377  byte* targetBase = target->data.get() + (target->height * top_left_y + top_left_x) * targetStride / 8;
378 
379  for(int y = 0; y < source->height / 8; y++)
380  {
381  for(int x = 0; x < source->width / 8; x++)
382  {
383  // We want to store the average colour of the 8*8 pixel image
384  // with (x, y) as its top-left corner into targetPtr.
385  const byte* base = sourceBase + 4 * x; // start of the row
386  const byte* end = base + 8 * sourceStride; // end of the row
387 
388  int sum_c = 0;
389  int sum_m = 0;
390  int sum_y = 0;
391  int sum_k = 0;
392  for(const byte* row = base; row < end; row += sourceStride)
393  {
394  for(size_t current = 0; current < 4; current++)
395  {
396  sum_c += ((row[current] >> 7) & 1) + ((row[current] >> 3) & 1);
397  sum_m += ((row[current] >> 6) & 1) + ((row[current] >> 2) & 1);
398  sum_y += ((row[current] >> 5) & 1) + ((row[current] >> 1) & 1);
399  sum_k += ((row[current] >> 4) & 1) + ((row[current] >> 0) & 1);
400  }
401  }
402 
403  targetBase[4 * x] = static_cast<uint8_t>(sum_c * 255 / 64);
404  targetBase[4 * x + 1] = static_cast<uint8_t>(sum_m * 255 / 64);
405  targetBase[4 * x + 2] = static_cast<uint8_t>(sum_y * 255 / 64);
406  targetBase[4 * x + 3] = static_cast<uint8_t>(sum_k * 255 / 64);
407  }
408 
409  targetBase += targetStride;
410  sourceBase += sourceStride * 8;
411  }
412 }

The documentation for this class was generated from the following files:
Scroom::Bitmap::BitmapSurface::create
static Ptr create(int width, int height, cairo_format_t format)
Definition: bitmap-helpers.cc:13
PipetteCommonOperationsCMYK::Ptr
boost::shared_ptr< PipetteCommonOperationsCMYK > Ptr
Definition: layeroperations.hh:41
PipetteCommonOperationsCMYK::PipetteCommonOperationsCMYK
PipetteCommonOperationsCMYK(int bps_)
Definition: layeroperations.hh:44
current
static unsigned int current
Definition: measure-framerate-callbacks.cc:17
anonymous_namespace{cmyklayeroperations.cc}::shared_malloc
boost::shared_ptr< unsigned char > shared_malloc(size_t size)
Definition: cmyklayeroperations.cc:24
OperationsCMYK4::OperationsCMYK4
OperationsCMYK4()
Definition: cmyklayeroperations.cc:308
B
Definition: threadpool-tests.cc:53