Class PositionedImage

PositionedImage

Paragraph에 고정된 고정 위치 이미지 InlineImage와 달리 PositionedImageElement이 아닙니다. 상위 또는 동위 요소 Element 대신 Paragraph 또는 ListItem에 고정되고 알 수 있습니다. PositionedImage에는 이를 참조하는 데 사용할 수 있는 ID가 있습니다.

var body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody();

// Append a new paragraph.
var paragraph = body.appendParagraph("New paragraph to anchor the image to.");

// Get an image in Drive from its ID.
var image = DriveApp.getFileById('ENTER_IMAGE_FILE_ID_HERE').getBlob();

// Add the PositionedImage with offsets (in points).
var posImage = paragraph.addPositionedImage(image)
    .setTopOffset(60)
    .setLeftOffset(40);

메서드

메서드반환 유형간략한 설명
getAs(contentType)Blob이 객체 내의 데이터를 지정된 콘텐츠 유형으로 변환된 blob으로 반환합니다.
getBlob()Blob이 객체 내의 데이터를 blob으로 반환합니다.
getHeight()Integer이미지의 높이를 픽셀 단위로 가져옵니다.
getId()String이미지의 ID를 가져옵니다.
getLayout()PositionedLayout이미지의 배치 방식을 나타내는 enum 값을 가져옵니다.
getLeftOffset()Number단락의 왼쪽에서부터 이미지의 오프셋(포인트)을 가져옵니다.
getParagraph()Paragraph이미지가 고정된 Paragraph를 가져옵니다.
getTopOffset()Number단락의 맨 위에서부터 이미지의 오프셋(포인트)을 가져옵니다.
getWidth()Integer이미지의 너비를 픽셀 단위로 검색합니다.
setHeight(height)PositionedImage이미지의 높이를 픽셀 단위로 설정합니다.
setLayout(layout)PositionedImage이미지가 배치되는 방식의 정의를 설정합니다.
setLeftOffset(offset)PositionedImage단락의 왼쪽에서부터 이미지의 오프셋을 포인트 단위로 설정합니다.
setTopOffset(offset)PositionedImage단락의 맨 위부터 포인트 단위로 이미지의 오프셋을 설정합니다.
setWidth(width)PositionedImage이미지의 너비를 픽셀 단위로 설정합니다.

자세한 문서

getAs(contentType)

이 객체 내의 데이터를 지정된 콘텐츠 유형으로 변환된 blob으로 반환합니다. 이 메서드는 파일 이름에 적절한 확장자를 추가합니다(예: 'myfile.pdf'). 하지만 파일 이름에서 마지막 마침표 뒤에 오는 부분 (있는 경우)이 기존 교체해야 합니다. 따라서 'ShoppingList.12.25.2014' 위 이름이 아래와 같이 변경됩니다. 'ShoppingList.12.25.pdf'

전환수의 일일 할당량을 보려면 Google '서비스'로 이동합니다. 새로 생성된 Google Workspace 도메인에는 일시적으로 더 엄격한 정책이 적용될 수 있습니다. 할당량도 제공합니다

매개변수

이름유형설명
contentTypeString변환할 MIME 유형입니다. 대부분의 blob에서 'application/pdf'는 다음과 같습니다. 유일하게 유효한 옵션입니다. BMP, GIF, JPEG, PNG 형식의 이미지인 경우 'image/bmp', 'image/gif', 'image/jpeg', 'image/png' 중 어느 것이든 해당됩니다. 유효한지 확인합니다. Google Docs 문서의 경우 'text/markdown'도 유효합니다.

리턴

Blob - blob 형식의 데이터입니다.


getBlob()

이 객체 내의 데이터를 blob으로 반환합니다.

리턴

Blob - blob 형식의 데이터입니다.


getHeight()

이미지의 높이를 픽셀 단위로 가져옵니다.

리턴

Integer: 이미지의 높이(픽셀)

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getId()

이미지의 ID를 가져옵니다.

리턴

String: 이미지 ID

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getLayout()

이미지의 배치 방식을 나타내는 enum 값을 가져옵니다.

리턴

PositionedLayout: 이미지 레이아웃

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getLeftOffset()

단락의 왼쪽에서부터 이미지의 오프셋(포인트)을 가져옵니다.

리턴

Number: 왼쪽 단락 왼쪽으로부터의 이미지 오프셋

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getParagraph()

이미지가 고정된 Paragraph를 가져옵니다.

리턴

Paragraph: 상위 단락

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getTopOffset()

단락의 맨 위에서부터 이미지의 오프셋(포인트)을 가져옵니다.

리턴

Number: 왼쪽 단락 상단으로부터의 이미지 오프셋

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

getWidth()

이미지의 너비를 픽셀 단위로 검색합니다.

리턴

Integer: 이미지의 너비(픽셀)

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

setHeight(height)

이미지의 높이를 픽셀 단위로 설정합니다.

매개변수

이름유형설명
heightInteger이미지 높이(픽셀)

리턴

PositionedImage - 현재 객체

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

setLayout(layout)

이미지가 배치되는 방식의 정의를 설정합니다.

매개변수

이름유형설명
layoutPositionedLayout레이아웃 모드를 나타내는 enum

리턴

PositionedImage: 체이닝을 위한 객체

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

setLeftOffset(offset)

단락의 왼쪽에서부터 이미지의 오프셋을 포인트 단위로 설정합니다.

매개변수

이름유형설명
offsetNumber단락 왼쪽으로부터의 오프셋

리턴

PositionedImage: 체이닝을 위한 객체

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

setTopOffset(offset)

단락의 맨 위부터 포인트 단위로 이미지의 오프셋을 설정합니다.

매개변수

이름유형설명
offsetNumber단락 상단으로부터의 오프셋

리턴

PositionedImage: 체이닝을 위한 객체

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents

setWidth(width)

이미지의 너비를 픽셀 단위로 설정합니다.

매개변수

이름유형설명
widthInteger이미지 너비(픽셀)

리턴

PositionedImage - 현재 객체

승인

이 메서드를 사용하는 스크립트에는 다음 범위 중 하나 이상으로 승인이 필요합니다.

  • https://www.googleapis.com/auth/documents.currentonly
  • https://www.googleapis.com/auth/documents