전체 글 515

[ OpenCV ] sharp 플러그인 EXIF 정보 유실된 케이스

{ failOnError: false } 속성을 추가하면 됨 { failOnError: false } sharp(imageBuffer, { failOnError: false }) .rotate() .resize({ width: dimension, height: dimension, fit: sharp.fit.cover, position: sharp.strategy.entropy, }) .jpeg({ quality: 90, mozjpeg: true }) .toBuffer() https://github.com/lovell/sharp/issues/2780 VipsJpeg: Invalid SOS parameters for sequential JPEG / with sharp(imageBuffer, originalF..

Team/난감했던 이슈들 HEON.D 2023.09.08

[ AWS ] RDS parameter utf8mb4

character_set_client : utf8mb4 character_set_connection : utf8mb4 character_set_database : utf8mb4 character_set_results : utf8mb4 character_set_server : utf8mb4 collation_connection : utf8mb4_unicode_ci collation_server : utf8mb4_unicode_ci https://evst.tistory.com/22 AWS RDS(Mysql)에서 emoji 관련 설정하기 기본으로 설정된 utf8 charset에서는 4바이트로 표현 가능한 Emoji를 저장할 수 없다. 그래서 데이터베이스의 Charset을 utf8mb4로 변경해야 하는데, 1...

BE/AWS HEON.D 2023.09.06

[ AWS ] [Warning] Aborted connection xxx to db: '<database name>' user: '<user name>' host: '<host IP>' (Got an error reading communication packets)

[Warning] Aborted connection xxx to db: '' user: '' host: '' (Got an error reading communication packets) https://repost.aws/knowledge-center/rds-mysql-communication-packet-error Resolve the communication packets error in Amazon RDS for MySQL I received a "Got an error reading communication packets" error. I want to resolve this error in an Amazon Relational Database Service (Amazon RDS) for MyS..

Team/난감했던 이슈들 HEON.D 2023.08.30

[Flutter] package 이름 변경 android 편

위치 정리 1. AndroidManifest.xml 2. build.gradel defaultConfig { applicationId "your.package.name" minSdkVersion 16 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } 3.MainActivity.kt / java package your.package.name; import android.os.Bundle; import io.flutter.app.FlutterActivity; import io.flutter.plugins.GeneratedPlugi..

카테고리 없음 브레인야또 2023.08.29