47 lines
1.7 KiB
C++
47 lines
1.7 KiB
C++
//
|
|
// JPEG Display helper class
|
|
//
|
|
// written by Larry Bank
|
|
// bitbank@pobox.com
|
|
//
|
|
// Copyright 2025 BitBank Software, Inc. All Rights Reserved.
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//===========================================================================
|
|
//
|
|
#ifndef __JPEGDISPLAY__
|
|
#define __JPEGDISPLAY__
|
|
#include <JPEGDEC.h>
|
|
#include <bb_spi_lcd.h>
|
|
#include <SD.h>
|
|
#include "FS.h"
|
|
#include <LittleFS.h>
|
|
|
|
// To center one or both coordinates for the drawing position
|
|
// use this constant value
|
|
#define JPEGDISPLAY_CENTER -2
|
|
|
|
class JPEGDisplay
|
|
{
|
|
public:
|
|
int loadJPEG(BB_SPI_LCD *pLCD, int x, int y, const void *pData, int iDataSize, int iOptions = 0);
|
|
int loadJPEG(BB_SPI_LCD *pLCD, int x, int y, const char *fname, int iOptions = 0);
|
|
int loadJPEG_LFS(BB_SPI_LCD *pLCD, int x, int y, const char *fname, int iOptions = 0);
|
|
int getJPEGInfo(int *width, int *height, int *bpp, const void *pData, int iDataSize);
|
|
int getJPEGInfo(int *width, int *height, int *bpp, const char *fname);
|
|
int getJPEGInfo_LFS(int *width, int *height, int *bpp, const char *fname);
|
|
int getLastError() {return _iLastError;}
|
|
|
|
private:
|
|
int _iLastError;
|
|
};
|
|
|
|
#endif // __JPEGDISPLAY__
|