Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何らかの理由で、Google API はオブジェクト (Color など) ではなく long を想定しています。これはどのような形式で、どのように渡すことができますか?
これは、呼び出しで直接 16 進数で定義できます。各ペアは、アルファ (透明度)、赤、緑、青を表します。
例: 0xFF00FF00 は緑色に点灯します。
六角形の後に「L」を配置して、ロングを定義します。
Image i = imageService.composite(images, 100, 100, 0xff00ff00L);