52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package integration
|
|
|
|
const (
|
|
EmojiMaxSize = 384 * 1024
|
|
StickerMaxSize = 512 * 1024
|
|
)
|
|
|
|
// Minimal valid PNG (1x1 transparent pixel)
|
|
var validPNGBytes = []byte{
|
|
0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A,
|
|
0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52,
|
|
0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01,
|
|
0x08, 0x06, 0x00, 0x00, 0x00, 0x1F, 0x15, 0xC4, 0x89,
|
|
0x00, 0x00, 0x00, 0x0A, 0x49, 0x44, 0x41, 0x54,
|
|
0x78, 0x9C, 0x63, 0x00, 0x01, 0x00, 0x00, 0x05, 0x00, 0x01,
|
|
0x0D, 0x0A, 0x2D, 0xB4,
|
|
0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44,
|
|
0xAE, 0x42, 0x60, 0x82,
|
|
}
|
|
|
|
// Minimal valid GIF (1x1 transparent pixel)
|
|
var validGIFBytes = []byte{
|
|
0x47, 0x49, 0x46, 0x38, 0x39, 0x61,
|
|
0x01, 0x00, 0x01, 0x00,
|
|
0x80, 0x00, 0x00,
|
|
0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF,
|
|
0x21, 0xF9, 0x04, 0x01, 0x00, 0x00, 0x00, 0x00,
|
|
0x2C, 0x00, 0x00, 0x00, 0x00,
|
|
0x01, 0x00, 0x01, 0x00, 0x00,
|
|
0x02, 0x02, 0x44, 0x01, 0x00,
|
|
0x3B,
|
|
}
|