Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
1a8aedb9
Kaydet (Commit)
1a8aedb9
authored
Ock 30, 2018
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ofz#3002 speed up cymk conversion a tad
Change-Id: Ie9e3c26b10301f4d2fa12d2cd6a221dd64001158
üst
7af7c18c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
jpegc.cxx
vcl/source/filter/jpeg/jpegc.cxx
+2
-1
No files found.
vcl/source/filter/jpeg/jpegc.cxx
Dosyayı görüntüle @
1a8aedb9
...
...
@@ -290,6 +290,7 @@ void ReadJPEG(JpegStuff& rContext, JPEGReader* pJPEGReader, void* pInputStream,
if
(
rContext
.
cinfo
.
out_color_space
==
JCS_CMYK
)
{
// convert CMYK to RGB
Scanline
pScanline
=
pAccess
->
GetScanline
(
yIndex
);
for
(
long
cmyk
=
0
,
x
=
0
;
cmyk
<
nWidth
*
4
;
cmyk
+=
4
,
++
x
)
{
int
color_C
=
255
-
rContext
.
pCYMKBuffer
[
cmyk
+
0
];
...
...
@@ -301,7 +302,7 @@ void ReadJPEG(JpegStuff& rContext, JPEGReader* pJPEGReader, void* pInputStream,
sal_uInt8
cGreen
=
aRangeLimit
[
255L
-
(
color_M
+
color_K
)];
sal_uInt8
cBlue
=
aRangeLimit
[
255L
-
(
color_Y
+
color_K
)];
pAccess
->
SetPixel
(
yIndex
,
x
,
BitmapColor
(
cRed
,
cGreen
,
cBlue
));
pAccess
->
SetPixel
OnData
(
pScanline
,
x
,
BitmapColor
(
cRed
,
cGreen
,
cBlue
));
}
}
else
...
...
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