40 lines
1.0 KiB
Matlab
40 lines
1.0 KiB
Matlab
function output = gzipencode(input)
|
|
import jsonlab.*
|
|
%GZIPENCODE Compress input bytes with GZIP.
|
|
%
|
|
% output = gzipencode(input)
|
|
%
|
|
% The function takes a char, int8, or uint8 array INPUT and returns
|
|
% compressed bytes OUTPUT as a uint8 array. Note that the compression
|
|
% doesn't preserve input dimensions. JAVA must be enabled to use the
|
|
% function.
|
|
%
|
|
% See also gzipdecode typecast
|
|
%
|
|
% Copyright (c) 2012, Kota Yamaguchi
|
|
% URL: https://www.mathworks.com/matlabcentral/fileexchange/39526-byte-encoding-utilities
|
|
% License : BSD, see LICENSE_*.txt
|
|
%
|
|
|
|
if(nargin==0)
|
|
error('you must provide at least 1 input');
|
|
end
|
|
if(exist('zmat')==3)
|
|
output=zmat(uint8(input),1,'gzip');
|
|
return;
|
|
end
|
|
error(javachk('jvm'));
|
|
if ischar(input), input = uint8(input); end
|
|
if ~isa(input, 'int8') && ~isa(input, 'uint8')
|
|
error('Input must be either char, int8 or uint8.');
|
|
end
|
|
|
|
buffer = java.io.ByteArrayOutputStream();
|
|
gzip = java.util.zip.GZIPOutputStream(buffer);
|
|
gzip.write(input, 0, numel(input));
|
|
gzip.close();
|
|
output = typecast(buffer.toByteArray(), 'uint8')';
|
|
|
|
end
|
|
|