image(7)
-
Sencha grid에 이미지 보여주기
Ext.create('Ext.grid.Panel', { title: 'Image Grid Example', renderTo: Ext.getBody(), width: 600, height: 400, store: { fields: ['name', 'imageUrl'], data: [ { name: 'Image 1', imageUrl: '/images/sample1.jpg' }, { name: 'Image 2', imageUrl: '/images/sample2.jpg' }, { name: 'Image 3', imageUrl: '/images/sample3.jpg' } ] }, ..
2024.12.27 -
Spring boot 이미지 stream 또는 base64로 넘기기
StreamSpring bootimport org.springframework.core.io.Resource;import org.springframework.core.io.UrlResource;import org.springframework.http.HttpHeaders;import org.springframework.http.MediaType;import org.springframework.http.ResponseEntity;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.a..
2024.12.05 -
Sencha panel에 html을 사용하여 이미지 나오게 하기
Ext.application({ name: 'ImageApp', launch: function () { Ext.create('Ext.container.Viewport', { layout: 'fit', items: [ { xtype: 'panel', title: 'Image Display', html: '' } ] }); }});
2024.12.05 -
FastAPI에서 이미지 가져오기
Binary를 직접 가져오기pom.xml org.apache.httpcomponents.client5 httpclient5 5.1Spring Boot Codeimport org.springframework.core.io.InputStreamResource;import org.springframework.http.HttpHeaders;import org.springframework.http.MediaType;import org.springframework.http.ResponseEntity;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RequestParam;impo..
2024.10.19 -
Sencha form에 image 추가
다른 field처럼 image를 넣으면 됨기본적으로 Label은 없음Ext.create('Ext.form.Panel', { title: 'Image Display and Upload Form', width: 400, bodyPadding: 10, renderTo: Ext.getBody(), items: [ { xtype: 'image', src: 'path/to/default-image.jpg', // Replace with default or dynamic image URL alt: 'No image available', width: 200, height: 200, ..
2024.10.19 -
Azure DevOps Pipeline 주요 내용
변수 적용 및 사용https://learn.microsoft.com/ko-kr/azure/devops/pipelines/process/variables?view=azure-devops&tabs=yaml%2Cbatch 변수 정의 - Azure Pipelines변수는 파이프라인에서 사용하기 위해 사용자가 정의한 이름-값 쌍입니다. 변수를 태스크 및 스크립트에 대한 입력으로 사용할 수 있습니다.learn.microsoft.com variables: - name: projectName value: contososteps: - bash: echo $(projectName)- powershell: echo $(projectName)- script: echo $(projectName)--kubeconfig 옵션 ..
2024.03.05