728x90 목록245 AI ~ 마이크로소프트 제공 AI 이미지 생성 사이트 - 사이트 이름 : Microsoft Designer- 사이트 소개 마이크로 소프트에서 제공하는 AI 이미지를 무료로 생성할 수 있는 사이트. 이미지 생성 및 다운로드가 가능하며, 일부 기능의 사용엔 유료 결제가 필요함.(공식 FAQ 일부 발췌)마이크로소프트 디자이너란 무엇인가? Designer는 소셜 미디어 게시물, 초대장, 디지털 엽서, 그래픽 등을 모두 순식간에 만드는 데 도움이 되는 AI 기반 클라우드 기반 그래픽 디자인 애플리케이션입니다. 자신만의 이미지나 아이디어로 시작하면 Designer가 귀하에게 고유한 디자인을 생성하고 맞춤형 추천을 제공합니다. Designer의 고급 AI 도구를 사용하면 디자인을 멋지게 보이게 쉽게 만들 수 있습니다. Microsoft Designer는 무엇을 할 수 .. 2024. 5. 27. Unity & C# ~ 시간을 나타내는 법(float to string) float timeValue = 90; // second try { string time1 = string.Format("{0:#0}:{1:00}", Mathf.Floor(timeValue / 60), Mathf.Floor(timeValue) % 60); Debug.Log($"Change time second : {time1}"); } catch(Exception e) { Debug.LogError($"timeValue error {e}"); } try { string time2 = string.Format("{0:00}:{1:00}", Mathf.Floor(timeValue / 60), Mathf.Floor(timeValue) % 60); Debug.Log($"Change time second2 : {.. 2023. 11. 3. 검은사막 ~ 아타니스의 원소 획득처 2023. 9. 23. Unity & C# ~ 한/영 전환 하는 클래스 using System; using System.Diagnostics; using System.Runtime.InteropServices; public class ImeChange { #region imm32.dll :: Get_IME_Mode IME가져오기 [DllImport("imm32.dll")] public static extern IntPtr ImmGetContext(IntPtr hWnd); [DllImport("imm32.dll")] public static extern bool ImmSetConversionStatus(IntPtr hIMC, int fdwConversion, int fdwSentence); [DllImport("imm32.dll")] private static extern I.. 2023. 6. 29. 라스트오리진) 5-8EX 1인 쫄작 공략 ** 본 배치도는 주관적 의견이기에 참고용도로 활용하시기 바랍니다. 5-8EX에서 풀스쿼드로 1인 쫄작을 하는 공략을 정리하였습니다. - 배치도 - 캐릭터 세팅 - 참고 영상 https://youtu.be/W6BwHvxMuKM 2023. 5. 1. Unity & C# ~ 이미지 파일을 로드하여 스프라이트로 만들기 (Image file Load to Sprite) - 저장된 이미지 경로를 가지고 이미지를 로드하여 스프라이트로 형 변환을 한 후, 유니티 image ui에 넣기 using System.IO; using UnityEngine; using UnityEngine.UI; public Image image;// unity ui image public string filePath;// image file path public Vector2 imageSize;// image size x : width, y : height public void LoadImage() { byte[] byteTexture = File.ReadAllBytes(filePath);// 파일 불러오기 Texture2D texture2d = new Texture2D((int)imageSize... 2023. 3. 14. 이전 1 2 3 4 5 ··· 41 다음 SMALL