필터 지우기
필터 지우기

Is it possible to save a 32bit BMP image (with alpha)

조회 수: 13 (최근 30일)
Slimane
Slimane 2011년 5월 10일
댓글: DGM 2024년 7월 15일 5:12
Is it possible to save a 32bit BMP image. i.e. image size (imheight x imwidth x 4) where the 4.th channel consist of alpha values?

채택된 답변

Walter Roberson
Walter Roberson 2011년 5월 10일
imwrite does not support alpha in BMP. See http://www.mathworks.com/matlabcentral/answers/6335-writing-32-bit-images for information on what can be used.
  댓글 수: 8
Slimane
Slimane 2011년 5월 12일
이동: DGM 2024년 7월 15일 5:01
thanks a lot Walter, i guess i will just use c++ it is much easier :)
DGM
DGM 2024년 7월 15일 5:12
This problem is occurring because imwrite() interprets a 4-channel RGBA image as CMYK (regardless of any asserted colorspace parameter). So anything that decodes the file will likely wind up treating it as CMYK and converting it back into an opaque 24b RGB equivalent.
As far as I know, writing an RGBA TIFF this way isn't an option with imwrite(). It should be possible with the tiff class.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

John
John 2011년 5월 12일
Here's a demo I did a while back on how to create a TIFF with an alpha layer.
% This image is included with MATLAB
D = imread('street1.jpg');
image(D); title('RGB image without alpha layer.');
h = size(D,1);
w = size(D,2);
% Create a gradually increasing transparency mask
% from left-to-right across the image.
T = zeros(h,w,'uint8');
for j=1:w
T(:,j) = min(255,j) * ones(h,1);
end
% The dimensions of our image are h x w x 3 (remember, it's RGB). If
% we wish to add an alpha component, we need to give the image data a 4th
% component.
rgbaData = cat(3,D,T);
% Let's create our new image.
t = Tiff('alpha.tif','w');
% The photometric interpretation remains RGB, even though we will be
% adding an extra sample.
t.setTag('Photometric',Tiff.Photometric.RGB);
% These three tags define the dimensions of the image in the file.
t.setTag('ImageWidth',w);
t.setTag('ImageLength',h);
t.setTag('BitsPerSample',8);
t.setTag('SamplesPerPixel',4);
% We will make the image consist of 64x64 tiles.
t.setTag('TileWidth',64);
t.setTag('TileLength',64);
t.setTag('PlanarConfiguration',Tiff.PlanarConfiguration.Chunky);
% A photometric interpretation of RGB means that the TIFF file is expecting
% three components. We have to tell it that there will really be four
% components (the alpha layer is the 4th).
t.setTag('ExtraSamples',Tiff.ExtraSamples.UnassociatedAlpha);
t.write(rgbaData);
t.close();

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by